Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Analysis/
H A DCFG.h336 class CFGScopeEnd : public CFGElement {
338 CFGScopeEnd() {} in CFGScopeEnd() function
339 CFGScopeEnd(const VarDecl *VD, const Stmt *S) : CFGElement(ScopeEnd, VD, S) {} in CFGScopeEnd() function
909 Elements.push_back(CFGScopeEnd(VD, S), C); in appendScopeEnd()
913 Elements.insert(Elements.rbegin(), 1, CFGScopeEnd(VD, S), C); in prependScopeEnd()
975 Elements.insert(I.base(), Cnt, CFGScopeEnd(nullptr, nullptr), C)); in beginScopeEndInsert()
978 *I = CFGScopeEnd(VD, S); in insertScopeEnd()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DCFG.cpp5197 } else if (Optional<CFGScopeEnd> SE = E.getAs<CFGScopeEnd>()) { in print_elem()