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()
3738 : O->getComplexIntReal(), ObjType); in findSubobject()
4457 return found(Subobj.getComplexIntReal(), in found()
12571 bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() && in EvaluateComparisonBinaryOperator()
13296 return Success(C.getComplexIntReal(), E); in VisitCastExpr()
13321 return Success(LV.getComplexIntReal(), E); in VisitUnaryReal()
14068 Result.getComplexIntReal() += RHS.getComplexIntReal(); in VisitBinaryOperator()
14084 Result.getComplexIntReal() -= RHS.getComplexIntReal(); in VisitBinaryOperator()
14161 Result.getComplexIntReal() = in VisitBinaryOperator()
14162 (LHS.getComplexIntReal() * RHS.getComplexIntReal() - in VisitBinaryOperator()
14165 (LHS.getComplexIntReal() * RHS.getComplexIntImag() + in VisitBinaryOperator()
14166 LHS.getComplexIntImag() * RHS.getComplexIntReal()); in VisitBinaryOperator()
14225 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0) in VisitBinaryOperator()
14229 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
14231 Result.getComplexIntReal() = in VisitBinaryOperator()
14232 (LHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
14235 (LHS.getComplexIntImag() * RHS.getComplexIntReal() - in VisitBinaryOperator()
14236 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den; in VisitBinaryOperator()
14263 Result.getComplexIntReal() = -Result.getComplexIntReal(); in VisitUnaryOperator()