Home
last modified time | relevance | path

Searched refs:needsCleanup (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DAPValue.cpp257 bool APValue::needsCleanup() const { in needsCleanup() function in APValue
268 return getInt().needsCleanup(); in needsCleanup()
270 return getFloat().needsCleanup(); in needsCleanup()
272 assert(getComplexFloatImag().needsCleanup() == in needsCleanup()
273 getComplexFloatReal().needsCleanup() && in needsCleanup()
276 return getComplexFloatReal().needsCleanup(); in needsCleanup()
278 assert(getComplexIntImag().needsCleanup() == in needsCleanup()
279 getComplexIntReal().needsCleanup() && in needsCleanup()
282 return getComplexIntReal().needsCleanup(); in needsCleanup()
H A DDecl.cpp2293 else if (Eval->Evaluated.needsCleanup()) in evaluateValue()
/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DAPFloat.h244 bool needsCleanup() const { return partCount() > 1; } in needsCleanup() function
604 bool needsCleanup() const { return Floats != nullptr; } in needsCleanup() function
850 bool needsCleanup() const { APFLOAT_DISPATCH_ON_SEMANTICS(needsCleanup()); } in needsCleanup() function
H A DAPInt.h337 if (needsCleanup()) in ~APInt()
349 bool needsCleanup() const { return !isSingleWord(); } in needsCleanup() function
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DAPValue.h227 bool needsCleanup() const;
/freebsd-12.1/contrib/llvm/lib/Support/
H A DAPFloat.cpp664 if (needsCleanup()) in freeSignificand()