Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/Analysis/
H A DCFG.h342 class CFGScopeEnd : public CFGElement {
344 CFGScopeEnd() {} in CFGScopeEnd() function
345 CFGScopeEnd(const VarDecl *VD, const Stmt *S) : CFGElement(ScopeEnd, VD, S) {} in CFGScopeEnd() function
1132 Elements.push_back(CFGScopeEnd(VD, S), C); in appendScopeEnd()
1136 Elements.insert(Elements.rbegin(), 1, CFGScopeEnd(VD, S), C); in prependScopeEnd()
1198 Elements.insert(I.base(), Cnt, CFGScopeEnd(nullptr, nullptr), C)); in beginScopeEndInsert()
1201 *I = CFGScopeEnd(VD, S); in insertScopeEnd()
/llvm-project-15.0.7/clang/lib/Analysis/
H A DCFG.cpp5784 if (const VarDecl *VD = E.castAs<CFGScopeEnd>().getVarDecl()) in print_elem()