Lines Matching refs:getComplexIntReal
1522 APSInt &getComplexIntReal() { return IntReal; } in getComplexIntReal() function
1539 IntReal = v.getComplexIntReal(); in setFrom()
2499 Result = Val.getComplexIntReal().getBoolValue() || in HandleConversionToBool()
3755 : O->getComplexIntReal(), ObjType); in findSubobject()
4508 return found(Subobj.getComplexIntReal(), in found()
12834 bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() && in EvaluateComparisonBinaryOperator()
13559 return Success(C.getComplexIntReal(), E); in VisitCastExpr()
13584 return Success(LV.getComplexIntReal(), E); in VisitUnaryReal()
14338 Result.getComplexIntReal() += RHS.getComplexIntReal(); in VisitBinaryOperator()
14354 Result.getComplexIntReal() -= RHS.getComplexIntReal(); in VisitBinaryOperator()
14431 Result.getComplexIntReal() = in VisitBinaryOperator()
14432 (LHS.getComplexIntReal() * RHS.getComplexIntReal() - in VisitBinaryOperator()
14435 (LHS.getComplexIntReal() * RHS.getComplexIntImag() + in VisitBinaryOperator()
14436 LHS.getComplexIntImag() * RHS.getComplexIntReal()); in VisitBinaryOperator()
14495 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0) in VisitBinaryOperator()
14499 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
14501 Result.getComplexIntReal() = in VisitBinaryOperator()
14502 (LHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
14505 (LHS.getComplexIntImag() * RHS.getComplexIntReal() - in VisitBinaryOperator()
14506 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den; in VisitBinaryOperator()
14533 Result.getComplexIntReal() = -Result.getComplexIntReal(); in VisitUnaryOperator()