Lines Matching refs:Decls

43   llvm::SmallSetVector<NamedDecl *, 8> Decls;  in ComputeDeclsFound()  local
45 Decls.insert(Path->Decls.front()); in ComputeDeclsFound()
47 NumDeclsFound = Decls.size(); in ComputeDeclsFound()
49 std::copy(Decls.begin(), Decls.end(), DeclsFound.get()); in ComputeDeclsFound()
422 for (Path.Decls = BaseRecord->lookup(Name); in FindTagMember()
423 !Path.Decls.empty(); in FindTagMember()
424 Path.Decls = Path.Decls.slice(1)) { in FindTagMember()
425 if (Path.Decls.front()->isInIdentifierNamespace(IDNS_Tag)) in FindTagMember()
436 for (Path.Decls = BaseRecord->lookup(Name); in findOrdinaryMember()
437 !Path.Decls.empty(); in findOrdinaryMember()
438 Path.Decls = Path.Decls.slice(1)) { in findOrdinaryMember()
439 if (Path.Decls.front()->isInIdentifierNamespace(IDNS)) in findOrdinaryMember()
481 for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty(); in FindOMPReductionMember()
482 Path.Decls = Path.Decls.slice(1)) { in FindOMPReductionMember()
483 if (Path.Decls.front()->isInIdentifierNamespace(IDNS_OMPReduction)) in FindOMPReductionMember()
497 for (Path.Decls = BaseRecord->lookup(Name); in FindNestedNameSpecifierMember()
498 !Path.Decls.empty(); in FindNestedNameSpecifierMember()
499 Path.Decls = Path.Decls.slice(1)) { in FindNestedNameSpecifierMember()
501 if (isa<TypedefNameDecl>(Path.Decls.front()) || in FindNestedNameSpecifierMember()
502 Path.Decls.front()->isInIdentifierNamespace(IDNS_Tag)) in FindNestedNameSpecifierMember()
532 for (const NamedDecl *ND : Paths.front().Decls) { in lookupDependentName()