Lines Matching refs:getComplexIntReal

1584     APSInt &getComplexIntReal() { return IntReal; }  in getComplexIntReal()  function
1601 IntReal = v.getComplexIntReal(); in setFrom()
2596 Result = Val.getComplexIntReal().getBoolValue() || in HandleConversionToBool()
3848 : O->getComplexIntReal(), ObjType); in findSubobject()
4613 return found(Subobj.getComplexIntReal(), in found()
13608 bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() && in EvaluateComparisonBinaryOperator()
14454 return Success(C.getComplexIntReal(), E); in VisitCastExpr()
14479 return Success(LV.getComplexIntReal(), E); in VisitUnaryReal()
15372 Result.getComplexIntReal() += RHS.getComplexIntReal(); in VisitBinaryOperator()
15388 Result.getComplexIntReal() -= RHS.getComplexIntReal(); in VisitBinaryOperator()
15427 Result.getComplexIntReal() = in VisitBinaryOperator()
15428 (LHS.getComplexIntReal() * RHS.getComplexIntReal() - in VisitBinaryOperator()
15431 (LHS.getComplexIntReal() * RHS.getComplexIntImag() + in VisitBinaryOperator()
15432 LHS.getComplexIntImag() * RHS.getComplexIntReal()); in VisitBinaryOperator()
15464 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0) in VisitBinaryOperator()
15468 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
15470 Result.getComplexIntReal() = in VisitBinaryOperator()
15471 (LHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
15474 (LHS.getComplexIntImag() * RHS.getComplexIntReal() - in VisitBinaryOperator()
15475 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den; in VisitBinaryOperator()
15502 Result.getComplexIntReal() = -Result.getComplexIntReal(); in VisitUnaryOperator()