Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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.td297 let Read = [{ node.getComplexIntImag() }];
/netbsd-src/external/apache2/llvm/dist/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()
673 Out << getComplexIntReal() << "+" << getComplexIntImag() << "i"; in printPretty()
H A DExprConstant.cpp1527 APSInt &getComplexIntImag() { return IntImag; } in getComplexIntImag() function
1544 IntImag = v.getComplexIntImag(); in setFrom()
2483 Val.getComplexIntImag().getBoolValue(); in HandleConversionToBool()
3737 return handler.found(Index ? O->getComplexIntImag() in findSubobject()
12572 LHS.getComplexIntImag() == RHS.getComplexIntImag(); in EvaluateComparisonBinaryOperator()
13334 return Success(LV.getComplexIntImag(), E); in VisitUnaryImag()
14069 Result.getComplexIntImag() += RHS.getComplexIntImag(); in VisitBinaryOperator()
14085 Result.getComplexIntImag() -= RHS.getComplexIntImag(); in VisitBinaryOperator()
14163 LHS.getComplexIntImag() * RHS.getComplexIntImag()); in VisitBinaryOperator()
14164 Result.getComplexIntImag() = in VisitBinaryOperator()
[all …]
H A DItaniumMangle.cpp5449 return !V.getComplexIntReal() && !V.getComplexIntImag(); in isZeroInitialized()
5638 V.getComplexIntImag().getBoolValue()) in mangleValueInTemplateArg()
5640 if (V.getComplexIntImag().getBoolValue()) in mangleValueInTemplateArg()
5641 mangleIntegerLiteral(CT->getElementType(), V.getComplexIntImag()); in mangleValueInTemplateArg()
H A DTextNodeDumper.cpp482 OS << Value.getComplexIntReal() << " + " << Value.getComplexIntImag() in Visit()
H A DMicrosoftMangle.cpp1809 mangleNumber(V.getComplexIntImag()); in mangleTemplateArgValue()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExprConstant.cpp2054 Value.getComplexIntImag()); in tryEmitPrivate()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaChecking.cpp10843 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth); in GetValueRange()