Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/Analysis/
H A DCFG.h341 class CFGScopeEnd : public CFGElement {
343 CFGScopeEnd() {} in CFGScopeEnd() function
344 CFGScopeEnd(const VarDecl *VD, const Stmt *S) : CFGElement(ScopeEnd, VD, S) {} in CFGScopeEnd() function
1131 Elements.push_back(CFGScopeEnd(VD, S), C); in appendScopeEnd()
1135 Elements.insert(Elements.rbegin(), 1, CFGScopeEnd(VD, S), C); in prependScopeEnd()
1197 Elements.insert(I.base(), Cnt, CFGScopeEnd(nullptr, nullptr), C)); in beginScopeEndInsert()
1200 *I = CFGScopeEnd(VD, S); in insertScopeEnd()
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DCFG.cpp5854 if (const VarDecl *VD = E.castAs<CFGScopeEnd>().getVarDecl()) in print_elem()