Lines Matching refs:getComplexIntReal
969 APSInt &getComplexIntReal() { return IntReal; } in getComplexIntReal() function
986 IntReal = v.getComplexIntReal(); in setFrom()
1541 Result = Val.getComplexIntReal().getBoolValue() || in HandleConversionToBool()
2373 : O->getComplexIntReal(), ObjType); in findSubobject()
3002 return found(Subobj.getComplexIntReal(), in found()
7246 return Success((LHS.getComplexIntReal() == RHS.getComplexIntReal() && in VisitBinaryOperator()
7251 return Success((LHS.getComplexIntReal() != RHS.getComplexIntReal() || in VisitBinaryOperator()
7841 return Success(C.getComplexIntReal(), E); in VisitCastExpr()
7866 return Success(LV.getComplexIntReal(), E); in VisitUnaryReal()
8385 Result.getComplexIntReal() += RHS.getComplexIntReal(); in VisitBinaryOperator()
8401 Result.getComplexIntReal() -= RHS.getComplexIntReal(); in VisitBinaryOperator()
8478 Result.getComplexIntReal() = in VisitBinaryOperator()
8479 (LHS.getComplexIntReal() * RHS.getComplexIntReal() - in VisitBinaryOperator()
8482 (LHS.getComplexIntReal() * RHS.getComplexIntImag() + in VisitBinaryOperator()
8483 LHS.getComplexIntImag() * RHS.getComplexIntReal()); in VisitBinaryOperator()
8540 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0) in VisitBinaryOperator()
8544 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
8546 Result.getComplexIntReal() = in VisitBinaryOperator()
8547 (LHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
8550 (LHS.getComplexIntImag() * RHS.getComplexIntReal() - in VisitBinaryOperator()
8551 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den; in VisitBinaryOperator()
8578 Result.getComplexIntReal() = -Result.getComplexIntReal(); in VisitUnaryOperator()