Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DScope.h226 DeclSetTy DeclsInScope; variable
340 return decl_range(DeclsInScope.begin(), DeclsInScope.end()); in decls()
343 bool decl_empty() const { return DeclsInScope.empty(); } in decl_empty()
350 DeclsInScope.insert(D); in AddDecl()
353 void RemoveDecl(Decl *D) { DeclsInScope.erase(D); } in RemoveDecl()
381 bool isDeclScope(const Decl *D) const { return DeclsInScope.contains(D); } in isDeclScope()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DScope.cpp98 DeclsInScope.clear(); in Init()