Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DScope.h200 DeclSetTy DeclsInScope; variable
301 return decl_range(DeclsInScope.begin(), DeclsInScope.end()); in decls()
304 bool decl_empty() const { return DeclsInScope.empty(); } in decl_empty()
307 DeclsInScope.insert(D); in AddDecl()
311 DeclsInScope.erase(D); in RemoveDecl()
340 bool isDeclScope(const Decl *D) const { return DeclsInScope.count(D) != 0; } in isDeclScope()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DScope.cpp90 DeclsInScope.clear(); in Init()