Lines Matching refs:getComplexIntReal
1319 APSInt &getComplexIntReal() { return IntReal; } in getComplexIntReal() function
1336 IntReal = v.getComplexIntReal(); in setFrom()
2034 Result = Val.getComplexIntReal().getBoolValue() || in HandleConversionToBool()
2906 : O->getComplexIntReal(), ObjType); in findSubobject()
3560 return found(Subobj.getComplexIntReal(), in found()
9162 bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() && in EvaluateComparisonBinaryOperator()
9837 return Success(C.getComplexIntReal(), E); in VisitCastExpr()
9862 return Success(LV.getComplexIntReal(), E); in VisitUnaryReal()
10421 Result.getComplexIntReal() += RHS.getComplexIntReal(); in VisitBinaryOperator()
10437 Result.getComplexIntReal() -= RHS.getComplexIntReal(); in VisitBinaryOperator()
10514 Result.getComplexIntReal() = in VisitBinaryOperator()
10515 (LHS.getComplexIntReal() * RHS.getComplexIntReal() - in VisitBinaryOperator()
10518 (LHS.getComplexIntReal() * RHS.getComplexIntImag() + in VisitBinaryOperator()
10519 LHS.getComplexIntImag() * RHS.getComplexIntReal()); in VisitBinaryOperator()
10578 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0) in VisitBinaryOperator()
10582 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
10584 Result.getComplexIntReal() = in VisitBinaryOperator()
10585 (LHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
10588 (LHS.getComplexIntImag() * RHS.getComplexIntReal() - in VisitBinaryOperator()
10589 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den; in VisitBinaryOperator()
10616 Result.getComplexIntReal() = -Result.getComplexIntReal(); in VisitUnaryOperator()