Lines Matching refs:getComplexIntReal

866     APSInt &getComplexIntReal() { return IntReal; }  in getComplexIntReal()  function
883 IntReal = v.getComplexIntReal(); in setFrom()
1401 Result = Val.getComplexIntReal().getBoolValue() || in HandleConversionToBool()
2159 : O->getComplexIntReal(), ObjType); in findSubobject()
2788 return found(Subobj.getComplexIntReal(), in found()
6585 return Success((LHS.getComplexIntReal() == RHS.getComplexIntReal() && in VisitBinaryOperator()
6590 return Success((LHS.getComplexIntReal() != RHS.getComplexIntReal() || in VisitBinaryOperator()
7191 return Success(C.getComplexIntReal(), E); in VisitCastExpr()
7216 return Success(LV.getComplexIntReal(), E); in VisitUnaryReal()
7696 Result.getComplexIntReal() += RHS.getComplexIntReal(); in VisitBinaryOperator()
7707 Result.getComplexIntReal() -= RHS.getComplexIntReal(); in VisitBinaryOperator()
7734 Result.getComplexIntReal() = in VisitBinaryOperator()
7735 (LHS.getComplexIntReal() * RHS.getComplexIntReal() - in VisitBinaryOperator()
7738 (LHS.getComplexIntReal() * RHS.getComplexIntImag() + in VisitBinaryOperator()
7739 LHS.getComplexIntImag() * RHS.getComplexIntReal()); in VisitBinaryOperator()
7772 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0) in VisitBinaryOperator()
7776 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
7778 Result.getComplexIntReal() = in VisitBinaryOperator()
7779 (LHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
7782 (LHS.getComplexIntImag() * RHS.getComplexIntReal() - in VisitBinaryOperator()
7783 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den; in VisitBinaryOperator()
7810 Result.getComplexIntReal() = -Result.getComplexIntReal(); in VisitUnaryOperator()