Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DScope.h205 DeclSetTy DeclsInScope; variable
316 return decl_range(DeclsInScope.begin(), DeclsInScope.end()); in decls()
319 bool decl_empty() const { return DeclsInScope.empty(); } in decl_empty()
326 DeclsInScope.insert(D); in AddDecl()
329 void RemoveDecl(Decl *D) { DeclsInScope.erase(D); } in RemoveDecl()
357 bool isDeclScope(const Decl *D) const { return DeclsInScope.contains(D); } in isDeclScope()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DScope.cpp93 DeclsInScope.clear(); in Init()