Home
last modified time | relevance | path

Searched refs:getComplexIntImag (Results 1 – 10 of 10) sorted by relevance

/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DAPValue.h453 APSInt &getComplexIntImag() {
457 const APSInt &getComplexIntImag() const {
458 return const_cast<APValue*>(this)->getComplexIntImag();
H A DPropertiesBase.td301 let Read = [{ node.getComplexIntImag() }];
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DAPValue.cpp337 setComplexInt(RHS.getComplexIntReal(), RHS.getComplexIntImag()); in APValue()
453 assert(getComplexIntImag().needsCleanup() == in needsCleanup()
590 profileIntValue(ID, getComplexIntImag()); in Profile()
736 Out << getComplexIntReal() << "+" << getComplexIntImag() << "i"; in printPretty()
H A DExprConstant.cpp1526 APSInt &getComplexIntImag() { return IntImag; } in getComplexIntImag() function
1543 IntImag = v.getComplexIntImag(); in setFrom()
2503 Val.getComplexIntImag().getBoolValue(); in HandleConversionToBool()
3756 return handler.found(Index ? O->getComplexIntImag() in findSubobject()
12923 LHS.getComplexIntImag() == RHS.getComplexIntImag(); in EvaluateComparisonBinaryOperator()
13767 return Success(LV.getComplexIntImag(), E); in VisitUnaryImag()
14548 Result.getComplexIntImag() += RHS.getComplexIntImag(); in VisitBinaryOperator()
14564 Result.getComplexIntImag() -= RHS.getComplexIntImag(); in VisitBinaryOperator()
14642 LHS.getComplexIntImag() * RHS.getComplexIntImag()); in VisitBinaryOperator()
14643 Result.getComplexIntImag() = in VisitBinaryOperator()
[all …]
H A DItaniumMangle.cpp5550 return !V.getComplexIntReal() && !V.getComplexIntImag(); in isZeroInitialized()
5782 V.getComplexIntImag().getBoolValue()) in mangleValueInTemplateArg()
5784 if (V.getComplexIntImag().getBoolValue()) in mangleValueInTemplateArg()
5785 mangleIntegerLiteral(CT->getElementType(), V.getComplexIntImag()); in mangleValueInTemplateArg()
H A DTextNodeDumper.cpp525 OS << Value.getComplexIntReal() << " + " << Value.getComplexIntImag() in Visit()
H A DMicrosoftMangle.cpp1844 mangleNumber(V.getComplexIntImag()); in mangleTemplateArgValue()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGExprConstant.cpp2090 Value.getComplexIntImag()); in tryEmitPrivate()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaDeclCXX.cpp16685 V.getComplexIntImag().toString(Str); in ConvertAPValueToString()
H A DSemaChecking.cpp12478 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth); in GetValueRange()