Home
last modified time | relevance | path

Searched refs:HasCleanup (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dexceptions-seh.cpp11 struct HasCleanup { struct
12 HasCleanup();
13 ~HasCleanup();
18 HasCleanup x; in use_cxx() argument
107 HasCleanup x; in use_seh_in_lambda()
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Ddefault-arg-closures.cpp34 struct HasCleanup { struct
35 ~HasCleanup();
39 Default(const Default &o, int d = (HasCleanup(), 42));
/llvm-project-15.0.7/clang/lib/AST/
H A DExpr.cpp300 ConstantExprBits.HasCleanup = false; in ConstantExpr()
360 if (!ConstantExprBits.HasCleanup && Value.needsCleanup()) { in MoveIntoResult()
361 ConstantExprBits.HasCleanup = true; in MoveIntoResult()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp544 E->ConstantExprBits.HasCleanup = false; // Not serialized, see below. in VisitConstantExpr()
558 E->ConstantExprBits.HasCleanup = true; in VisitConstantExpr()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmt.h345 unsigned HasCleanup : 1; in alignas() local