Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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.td300 let Read = [{ node.getComplexIntImag() }];
/llvm-project-15.0.7/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.cpp1540 IntImag = v.getComplexIntImag(); in setFrom()
12835 LHS.getComplexIntImag() == RHS.getComplexIntImag(); in EvaluateComparisonBinaryOperator()
14339 Result.getComplexIntImag() += RHS.getComplexIntImag(); in VisitBinaryOperator()
14355 Result.getComplexIntImag() -= RHS.getComplexIntImag(); in VisitBinaryOperator()
14433 LHS.getComplexIntImag() * RHS.getComplexIntImag()); in VisitBinaryOperator()
14434 Result.getComplexIntImag() = in VisitBinaryOperator()
14500 RHS.getComplexIntImag() * RHS.getComplexIntImag(); in VisitBinaryOperator()
14503 LHS.getComplexIntImag() * RHS.getComplexIntImag()) / Den; in VisitBinaryOperator()
14504 Result.getComplexIntImag() = in VisitBinaryOperator()
14534 Result.getComplexIntImag() = -Result.getComplexIntImag(); in VisitUnaryOperator()
[all …]
H A DItaniumMangle.cpp5549 return !V.getComplexIntReal() && !V.getComplexIntImag(); in isZeroInitialized()
5781 V.getComplexIntImag().getBoolValue()) in mangleValueInTemplateArg()
5783 if (V.getComplexIntImag().getBoolValue()) in mangleValueInTemplateArg()
5784 mangleIntegerLiteral(CT->getElementType(), V.getComplexIntImag()); in mangleValueInTemplateArg()
H A DTextNodeDumper.cpp525 OS << Value.getComplexIntReal() << " + " << Value.getComplexIntImag() in Visit()
H A DMicrosoftMangle.cpp1840 mangleNumber(V.getComplexIntImag()); in mangleTemplateArgValue()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGExprConstant.cpp2091 Value.getComplexIntImag()); in tryEmitPrivate()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaChecking.cpp12155 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth); in GetValueRange()