Home
last modified time | relevance | path

Searched refs:StaticValue (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp5456 if (!StaticValue) { in getOrCreateStaticValue()
5457 StaticValue = new (Ctx) APValue; in getOrCreateStaticValue()
5458 Ctx.addDestruction(StaticValue); in getOrCreateStaticValue()
5460 return *StaticValue; in getOrCreateStaticValue()
5464 assert(StaticValue); in getStaticValue()
5465 return *StaticValue; in getStaticValue()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h3539 mutable APValue *StaticValue = nullptr; variable