Lines Matching refs:CompilerDeclContext
191 static Expected<CompilerDeclContext> getDeclContext(SymbolFile &Symfile);
401 Expected<CompilerDeclContext>
404 return CompilerDeclContext(); in getDeclContext()
406 Symfile.FindGlobalVariables(ConstString(Context), CompilerDeclContext(), in getDeclContext()
455 Expected<CompilerDeclContext> ContextOr = getDeclContext(Symfile); in findFunctions()
458 const CompilerDeclContext &ContextPtr = in findFunctions()
459 ContextOr->IsValid() ? *ContextOr : CompilerDeclContext(); in findFunctions()
511 Expected<CompilerDeclContext> ContextOr = getDeclContext(Symfile); in findNamespaces()
514 const CompilerDeclContext &ContextPtr = in findNamespaces()
515 ContextOr->IsValid() ? *ContextOr : CompilerDeclContext(); in findNamespaces()
517 CompilerDeclContext Result = in findNamespaces()
529 Expected<CompilerDeclContext> ContextOr = getDeclContext(Symfile); in findTypes()
532 const CompilerDeclContext &ContextPtr = in findTypes()
533 ContextOr->IsValid() ? *ContextOr : CompilerDeclContext(); in findTypes()
584 Expected<CompilerDeclContext> ContextOr = getDeclContext(Symfile); in findVariables()
587 const CompilerDeclContext &ContextPtr = in findVariables()
588 ContextOr->IsValid() ? *ContextOr : CompilerDeclContext(); in findVariables()