Lines Matching refs:getComplexIntReal

1526     APSInt &getComplexIntReal() { return IntReal; }  in getComplexIntReal()  function
1543 IntReal = v.getComplexIntReal(); in setFrom()
2482 Result = Val.getComplexIntReal().getBoolValue() || in HandleConversionToBool()
3741 : O->getComplexIntReal(), ObjType); in findSubobject()
4460 return found(Subobj.getComplexIntReal(), in found()
12606 bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() && in EvaluateComparisonBinaryOperator()
13331 return Success(C.getComplexIntReal(), E); in VisitCastExpr()
13356 return Success(LV.getComplexIntReal(), E); in VisitUnaryReal()
14106 Result.getComplexIntReal() += RHS.getComplexIntReal(); in VisitBinaryOperator()
14122 Result.getComplexIntReal() -= RHS.getComplexIntReal(); in VisitBinaryOperator()
14199 Result.getComplexIntReal() = in VisitBinaryOperator()
14200 (LHS.getComplexIntReal() * RHS.getComplexIntReal() - in VisitBinaryOperator()
14203 (LHS.getComplexIntReal() * RHS.getComplexIntImag() + in VisitBinaryOperator()
14204 LHS.getComplexIntImag() * RHS.getComplexIntReal()); in VisitBinaryOperator()
14263 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0) in VisitBinaryOperator()
14267 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
14269 Result.getComplexIntReal() = in VisitBinaryOperator()
14270 (LHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
14273 (LHS.getComplexIntImag() * RHS.getComplexIntReal() - in VisitBinaryOperator()
14274 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den; in VisitBinaryOperator()
14301 Result.getComplexIntReal() = -Result.getComplexIntReal(); in VisitUnaryOperator()