Lines Matching refs:Path
30 for (paths_iterator Path = begin(), PathEnd = end(); Path != PathEnd; ++Path) in ComputeDeclsFound() local
31 Decls.insert(Path->Decls.front()); in ComputeDeclsFound()
92 [this, BaseDecl](const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { in isDerivedFrom() argument
93 return FindBaseClass(Specifier, Path, BaseDecl); in isDerivedFrom()
113 [this, BaseDecl](const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { in isVirtuallyDerivedFrom() argument
114 return FindVirtualBaseClass(Specifier, Path, BaseDecl); in isVirtuallyDerivedFrom()
323 Paths.Paths.remove_if([&Paths](const CXXBasePath &Path) { in lookupInBases() argument
324 for (const CXXBasePathElement &PE : Path) { in lookupInBases()
357 CXXBasePath &Path, in FindBaseClass() argument
366 CXXBasePath &Path, in FindVirtualBaseClass() argument
376 CXXBasePath &Path, in FindTagMember() argument
381 for (Path.Decls = BaseRecord->lookup(Name); in FindTagMember()
382 !Path.Decls.empty(); in FindTagMember()
383 Path.Decls = Path.Decls.slice(1)) { in FindTagMember()
384 if (Path.Decls.front()->isInIdentifierNamespace(IDNS_Tag)) in FindTagMember()
392 CXXBasePath &Path, in FindOrdinaryMember() argument
398 for (Path.Decls = BaseRecord->lookup(Name); in FindOrdinaryMember()
399 !Path.Decls.empty(); in FindOrdinaryMember()
400 Path.Decls = Path.Decls.slice(1)) { in FindOrdinaryMember()
401 if (Path.Decls.front()->isInIdentifierNamespace(IDNS)) in FindOrdinaryMember()
409 CXXBasePath &Path, in FindOMPReductionMember() argument
414 for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty(); in FindOMPReductionMember()
415 Path.Decls = Path.Decls.slice(1)) { in FindOMPReductionMember()
416 if (Path.Decls.front()->isInIdentifierNamespace(IDNS_OMPReduction)) in FindOMPReductionMember()
425 CXXBasePath &Path, in FindNestedNameSpecifierMember() argument
430 for (Path.Decls = BaseRecord->lookup(Name); in FindNestedNameSpecifierMember()
431 !Path.Decls.empty(); in FindNestedNameSpecifierMember()
432 Path.Decls = Path.Decls.slice(1)) { in FindNestedNameSpecifierMember()
434 if (isa<TypedefNameDecl>(Path.Decls.front()) || in FindNestedNameSpecifierMember()
435 Path.Decls.front()->isInIdentifierNamespace(IDNS_Tag)) in FindNestedNameSpecifierMember()