Lines Matching refs:getComplexIntReal
1525 APSInt &getComplexIntReal() { return IntReal; } in getComplexIntReal() function
1542 IntReal = v.getComplexIntReal(); in setFrom()
2502 Result = Val.getComplexIntReal().getBoolValue() || in HandleConversionToBool()
3757 : O->getComplexIntReal(), ObjType); in findSubobject()
4510 return found(Subobj.getComplexIntReal(), in found()
12922 bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() && in EvaluateComparisonBinaryOperator()
13729 return Success(C.getComplexIntReal(), E); in VisitCastExpr()
13754 return Success(LV.getComplexIntReal(), E); in VisitUnaryReal()
14547 Result.getComplexIntReal() += RHS.getComplexIntReal(); in VisitBinaryOperator()
14563 Result.getComplexIntReal() -= RHS.getComplexIntReal(); in VisitBinaryOperator()
14640 Result.getComplexIntReal() = in VisitBinaryOperator()
14641 (LHS.getComplexIntReal() * RHS.getComplexIntReal() - in VisitBinaryOperator()
14644 (LHS.getComplexIntReal() * RHS.getComplexIntImag() + in VisitBinaryOperator()
14645 LHS.getComplexIntImag() * RHS.getComplexIntReal()); in VisitBinaryOperator()
14704 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0) in VisitBinaryOperator()
14708 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
14710 Result.getComplexIntReal() = in VisitBinaryOperator()
14711 (LHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
14714 (LHS.getComplexIntImag() * RHS.getComplexIntReal() - in VisitBinaryOperator()
14715 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den; in VisitBinaryOperator()
14742 Result.getComplexIntReal() = -Result.getComplexIntReal(); in VisitUnaryOperator()