Searched refs:CFGScopeEnd (Results 1 – 2 of 2) sorted by relevance
| /openbsd-src/gnu/llvm/clang/include/clang/Analysis/ |
| H A D | CFG.h | 341 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 D | CFG.cpp | 5854 if (const VarDecl *VD = E.castAs<CFGScopeEnd>().getVarDecl()) in print_elem()
|