Lines Matching refs:CompilerDeclContext
189 static Expected<CompilerDeclContext> getDeclContext(SymbolFile &Symfile);
396 Expected<CompilerDeclContext>
399 return CompilerDeclContext(); in getDeclContext()
401 Symfile.FindGlobalVariables(ConstString(Context), CompilerDeclContext(), in getDeclContext()
450 Expected<CompilerDeclContext> ContextOr = getDeclContext(Symfile); in findFunctions()
453 const CompilerDeclContext &ContextPtr = in findFunctions()
454 ContextOr->IsValid() ? *ContextOr : CompilerDeclContext(); in findFunctions()
506 Expected<CompilerDeclContext> ContextOr = getDeclContext(Symfile); in findNamespaces()
509 const CompilerDeclContext &ContextPtr = in findNamespaces()
510 ContextOr->IsValid() ? *ContextOr : CompilerDeclContext(); in findNamespaces()
512 CompilerDeclContext Result = in findNamespaces()
524 Expected<CompilerDeclContext> ContextOr = getDeclContext(Symfile); in findTypes()
527 const CompilerDeclContext &ContextPtr = in findTypes()
528 ContextOr->IsValid() ? *ContextOr : CompilerDeclContext(); in findTypes()
579 Expected<CompilerDeclContext> ContextOr = getDeclContext(Symfile); in findVariables()
582 const CompilerDeclContext &ContextPtr = in findVariables()
583 ContextOr->IsValid() ? *ContextOr : CompilerDeclContext(); in findVariables()