Searched defs:DeclsInScope (Results 1 - 1 of 1) sorted by relevance

/external/clang/include/clang/Sema/
H A DScope.h176 /// DeclsInScope - This keeps track of all declarations in this scope. When
183 DeclSetTy DeclsInScope; member in class:clang::Scope
271 return decl_range(DeclsInScope.begin(), DeclsInScope.end());
273 bool decl_empty() const { return DeclsInScope.empty(); }
276 DeclsInScope.insert(D);
280 DeclsInScope.erase(D);
310 return DeclsInScope.count(D) != 0;

Completed in 110 milliseconds