Home
last modified time | relevance | path

Searched refs:getComplexIntReal (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/AST/
DAPValue.cpp144 setComplexInt(RHS.getComplexIntReal(), RHS.getComplexIntImag()); in APValue()
237 getComplexIntReal().needsCleanup() && in needsCleanup()
240 return getComplexIntReal().needsCleanup(); in needsCleanup()
291 OS << "ComplexInt: " << getComplexIntReal() << ", " << getComplexIntImag(); in dump()
370 Out << getComplexIntReal() << "+" << getComplexIntImag() << "i"; in printPretty()
DExprConstant.cpp893 APSInt &getComplexIntReal() { return IntReal; } in getComplexIntReal() function
910 IntReal = v.getComplexIntReal(); in setFrom()
1445 Result = Val.getComplexIntReal().getBoolValue() || in HandleConversionToBool()
2202 : O->getComplexIntReal(), ObjType); in findSubobject()
2831 return found(Subobj.getComplexIntReal(), in found()
6635 return Success((LHS.getComplexIntReal() == RHS.getComplexIntReal() && in VisitBinaryOperator()
6640 return Success((LHS.getComplexIntReal() != RHS.getComplexIntReal() || in VisitBinaryOperator()
7243 return Success(C.getComplexIntReal(), E); in VisitCastExpr()
7268 return Success(LV.getComplexIntReal(), E); in VisitUnaryReal()
7749 Result.getComplexIntReal() += RHS.getComplexIntReal(); in VisitBinaryOperator()
[all …]
/external/clang/include/clang/AST/
DAPValue.h216 APSInt &getComplexIntReal() { in getComplexIntReal() function
220 const APSInt &getComplexIntReal() const { in getComplexIntReal() function
221 return const_cast<APValue*>(this)->getComplexIntReal(); in getComplexIntReal()
/external/clang/lib/CodeGen/
DCGExprConstant.cpp1103 Value.getComplexIntReal()); in EmitConstantValue()
/external/clang/lib/Sema/
DSemaChecking.cpp5001 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth); in GetValueRange()