Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/AST/
H A DDecl.h857 bool HasConstantDestruction : 1; member
869 HasConstantInitialization(false), HasConstantDestruction(false), in EvaluatedStmt()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderDecl.cpp1553 Eval->HasConstantDestruction = (Val & 4) != 0; in VisitVarDeclImpl()
4251 Eval->HasConstantDestruction = (Val & 4) != 0; in UpdateDecl()
H A DASTWriter.cpp5810 Val |= (ES->HasConstantDestruction ? 4 : 0); in AddVarDeclInit()
/llvm-project-15.0.7/clang/lib/AST/
H A DDecl.cpp2720 if (Eval->HasConstantDestruction) in needsDestruction()
H A DASTImporter.cpp2146 ToEval->HasConstantDestruction = FromEval->HasConstantDestruction; in ImportInitializer()
H A DExprConstant.cpp15211 ensureEvaluatedStmt()->HasConstantDestruction = true; in evaluateDestruction()