Lines Matching refs:Contexts
1012 DeclContext::collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts){ in collectAllContexts() argument
1013 Contexts.clear(); in collectAllContexts()
1016 Contexts.push_back(this); in collectAllContexts()
1023 Contexts.push_back(N); in collectAllContexts()
1025 std::reverse(Contexts.begin(), Contexts.end()); in collectAllContexts()
1307 SmallVector<DeclContext *, 2> Contexts; in buildLookup() local
1308 collectAllContexts(Contexts); in buildLookup()
1312 for (auto *DC : Contexts) { in buildLookup()
1322 for (auto *DC : Contexts) in buildLookup()
1437 SmallVector<DeclContext *, 2> Contexts; in noload_lookup() local
1438 collectAllContexts(Contexts); in noload_lookup()
1439 for (unsigned I = 0, N = Contexts.size(); I != N; ++I) in noload_lookup()
1440 buildLookupImpl(Contexts[I], hasExternalVisibleStorage()); in noload_lookup()