| /freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/ToolChains/ |
| H A D | Hurd.cpp | 69 path_list &Paths = getFilePaths(); in Hurd() local 79 addPathIfExists(D, D.Dir + "/../lib/" + MultiarchTriple, Paths); in Hurd() 80 addPathIfExists(D, D.Dir + "/../" + OSLibDir, Paths); in Hurd() 83 addPathIfExists(D, SysRoot + "/lib/" + MultiarchTriple, Paths); in Hurd() 84 addPathIfExists(D, SysRoot + "/lib/../" + OSLibDir, Paths); in Hurd() 86 addPathIfExists(D, SysRoot + "/usr/lib/" + MultiarchTriple, Paths); in Hurd() 87 addPathIfExists(D, SysRoot + "/usr/lib/../" + OSLibDir, Paths); in Hurd() 94 addPathIfExists(D, D.Dir + "/../lib", Paths); in Hurd() 96 addPathIfExists(D, SysRoot + "/lib", Paths); in Hurd() 97 addPathIfExists(D, SysRoot + "/usr/lib", Paths); in Hurd()
|
| H A D | Linux.cpp | 318 path_list &Paths = getFilePaths(); in Linux() local 335 Paths); in Linux() 357 Paths); in Linux() 398 Paths); in Linux() 422 Paths); in Linux() 429 Paths); in Linux() 439 Paths); in Linux() 444 addPathIfExists(D, LibPath, Paths); in Linux() 453 addPathIfExists(D, D.Dir + "/../lib", Paths); in Linux() 455 addPathIfExists(D, SysRoot + "/lib", Paths); in Linux() [all …]
|
| H A D | Solaris.cpp | 178 path_list &Paths = getFilePaths(); in Solaris() local 185 Paths); in Solaris() 186 addPathIfExists(D, GCCInstallation.getParentLibPath() + LibSuffix, Paths); in Solaris() 192 addPathIfExists(D, D.Dir + "/../lib", Paths); in Solaris() 194 addPathIfExists(D, D.SysRoot + "/usr/lib" + LibSuffix, Paths); in Solaris()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | Lookup.h | 186 Paths(std::move(Other.Paths)), in LookupResult() 198 Other.Paths = nullptr; in LookupResult() 206 Paths = std::move(Other.Paths); 220 Other.Paths = nullptr; 227 if (Paths) deletePaths(Paths); in ~LookupResult() 333 return Paths; in getBasePaths() 468 if (Paths) { in resolveKindAfterFilter() 470 Paths = nullptr; in resolveKindAfterFilter() 490 Paths = nullptr; in resolveKindAfterFilter() 546 if (Paths) deletePaths(Paths); in clear() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | CXXInheritance.cpp | 72 Paths.clear(); in clear() 83 Paths.swap(Other.Paths); in swap() 95 return isDerivedFrom(Base, Paths); in isDerivedFrom() 110 Paths); in isDerivedFrom() 130 Paths); in isVirtuallyDerivedFrom() 274 Paths.push_back(ScratchPath); in lookupInBases() 351 if (!Paths.isRecordingPaths() || !Paths.isFindingAmbiguities()) in lookupInBases() 364 Paths.Paths.remove_if([&Paths](const CXXBasePath &Path) { in lookupInBases() 523 CXXBasePaths Paths; in lookupDependentName() local 524 Paths.setOrigin(this); in lookupDependentName() [all …]
|
| H A D | VTableBuilder.cpp | 261 CXXBasePaths Paths(/*FindAmbiguities=*/false, in ComputeBaseOffset() local 1213 for (const CXXBasePath &Path : Paths) { in ComputeThisAdjustmentBaseOffset() 2647 CXXBasePaths Paths; in ComputeThisOffset() local 2652 Paths); in ComputeThisOffset() 2663 for (const CXXBasePath &Path : Paths) { in ComputeThisOffset() 3252 assert(Paths.empty()); in computeVTablePaths() 3307 Paths.push_back(std::move(P)); in computeVTablePaths() 3323 Changed = rebucketPaths(Paths); in computeVTablePaths() 3343 PathsSorted.reserve(Paths.size()); in rebucketPaths() 3344 for (auto& P : Paths) in rebucketPaths() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | CXXInheritance.h | 127 std::list<CXXBasePath> Paths; variable 192 paths_iterator begin() { return Paths.begin(); } in begin() 193 paths_iterator end() { return Paths.end(); } in end() 194 const_paths_iterator begin() const { return Paths.begin(); } in begin() 195 const_paths_iterator end() const { return Paths.end(); } in end() 197 CXXBasePath& front() { return Paths.front(); } in front() 198 const CXXBasePath& front() const { return Paths.front(); } in front()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/ |
| H A D | SanitizerSpecialCaseList.cpp | 19 SanitizerSpecialCaseList::create(const std::vector<std::string> &Paths, in create() argument 23 if (SSCL->createInternal(Paths, Error)) { in create() 31 SanitizerSpecialCaseList::createOrDie(const std::vector<std::string> &Paths) { in createOrDie() argument 33 if (auto SSCL = create(Paths, Error)) in createOrDie()
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | SpecialCaseList.cpp | 74 SpecialCaseList::create(const std::vector<std::string> &Paths, in create() argument 77 if (SCL->createInternal(Paths, Error)) in create() 91 SpecialCaseList::createOrDie(const std::vector<std::string> &Paths) { in createOrDie() argument 93 if (auto SCL = create(Paths, Error)) in createOrDie() 98 bool SpecialCaseList::createInternal(const std::vector<std::string> &Paths, in createInternal() argument 101 for (const auto &Path : Paths) { in createInternal()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-cov/ |
| H A D | CoverageReport.cpp | 123 unsigned getNumRedundantPathComponents(ArrayRef<std::string> Paths) { in getNumRedundantPathComponents() argument 126 SmallVector<StringRef, 8> FirstPathComponents{sys::path::begin(Paths[0]), in getNumRedundantPathComponents() 127 sys::path::end(Paths[0])}; in getNumRedundantPathComponents() 130 for (unsigned I = 1, E = Paths.size(); NumRedundant > 0 && I < E; ++I) { in getNumRedundantPathComponents() 131 StringRef Path = Paths[I]; in getNumRedundantPathComponents() 153 unsigned getRedundantPrefixLen(ArrayRef<std::string> Paths) { in getRedundantPrefixLen() argument 155 if (Paths.size() <= 1) in getRedundantPrefixLen() 159 unsigned NumRedundant = getNumRedundantPathComponents(Paths); in getRedundantPrefixLen() 160 auto Component = sys::path::begin(Paths[0]); in getRedundantPrefixLen()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/ |
| H A D | InterpolatingCompilationDatabase.cpp | 325 Paths.reserve(OriginalPaths.size()); in FileIndex() 331 Paths.emplace_back(Path, I); in FileIndex() 339 llvm::sort(Paths); in FileIndex() 344 bool empty() const { return Paths.empty(); } in empty() 410 Award(1, indexLookup</*Prefix=*/true>(Prefix, Paths)); in scoreCandidates() 439 S.PrefixLength = matchingPrefix(Filename, Paths[S.Index].first); in pickWinner() 450 S.PrefixLength = matchingPrefix(Filename, Paths[S.Index].first); in pickWinner() 456 return {longestMatch(Filename, Paths).second, 0}; in pickWinner() 494 std::vector<SubstringAndIndex> Paths; // Full path. member in clang::tooling::__anonad4080680111::FileIndex
|
| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | SpecialCaseList.h | 72 create(const std::vector<std::string> &Paths, std::string &Error); 80 createOrDie(const std::vector<std::string> &Paths); 106 bool createInternal(const std::vector<std::string> &Paths,
|
| H A D | Program.h | 70 findProgramByName(StringRef Name, ArrayRef<StringRef> Paths = {});
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | SanitizerSpecialCaseList.h | 28 create(const std::vector<std::string> &Paths, std::string &Error); 31 createOrDie(const std::vector<std::string> &Paths);
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaCast.cpp | 1304 Self.BuildBasePathArray(Paths, BasePath); in TryLValueToRValueCast() 1434 if (!Paths.isRecordingPaths()) { in TryStaticDowncast() 1435 Paths.clear(); in TryStaticDowncast() 1436 Paths.setRecordingPaths(true); in TryStaticDowncast() 1441 for (clang::CXXBasePath &Path : Paths) { in TryStaticDowncast() 1460 if (Paths.getDetectedVirtual() != nullptr) { in TryStaticDowncast() 1471 Paths.front(), in TryStaticDowncast() 1484 Self.BuildBasePathArray(Paths, BasePath); in TryStaticDowncast() 1547 Paths.clear(); in TryStaticMemberPointerUpcast() 1548 Paths.setRecordingPaths(true); in TryStaticMemberPointerUpcast() [all …]
|
| H A D | SemaLookup.cpp | 339 delete Paths; in deletePaths() 637 Paths = new CXXBasePaths; in setAmbiguousBaseSubobjects() 638 Paths->swap(P); in setAmbiguousBaseSubobjects() 639 addDeclsFromBasePaths(*Paths); in setAmbiguousBaseSubobjects() 645 Paths = new CXXBasePaths; in setAmbiguousBaseSubobjectTypes() 646 Paths->swap(P); in setAmbiguousBaseSubobjectTypes() 647 addDeclsFromBasePaths(*Paths); in setAmbiguousBaseSubobjectTypes() 2080 CXXBasePaths Paths; in LookupQualifiedName() local 2081 Paths.setOrigin(LookupRec); in LookupQualifiedName() 2127 Paths)) in LookupQualifiedName() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | MemorySSA.cpp | 506 SmallVector<DefPath, 32> Paths; member in __anonb08d52880511::ClobberWalker 568 PausedSearches.push_back(Paths.size()); in addSearches() 600 DefPath &Node = Paths[PathIndex]; in getBlockingAccess() 712 assert(!Paths.empty() && NP >= &Paths.front() && NP <= &Paths.back() && in defPathIndex() 714 return NP - &Paths.front(); in defPathIndex() 735 Paths.emplace_back(Loc, Start, Phi, None); in tryOptimizePhi() 738 auto PriorPathsSize = Paths.size(); in tryOptimizePhi() 750 auto Dom = Paths.begin(); in tryOptimizePhi() 754 auto Last = Paths.end() - 1; in tryOptimizePhi() 868 PriorPathsSize = Paths.size(); in tryOptimizePhi() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/ToolDrivers/llvm-lib/ |
| H A D | LibDriver.cpp | 90 static std::string findInputFile(StringRef File, ArrayRef<StringRef> Paths) { in findInputFile() argument 91 for (StringRef Dir : Paths) { in findInputFile()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| H A D | ExprEngineCallAndReturn.cpp | 147 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, in adjustReturnValue() local 149 if (ActualClass->isDerivedFrom(ExpectedClass, Paths) && in adjustReturnValue() 150 !Paths.isAmbiguous(ActualTy->getCanonicalTypeUnqualified())) { in adjustReturnValue() 151 return StoreMgr.evalDerivedToBase(V, Paths.front()); in adjustReturnValue() 783 CXXBasePaths Paths(false, false, false); in hasMember() local 788 Paths)) in hasMember()
|
| H A D | Store.cpp | 343 CXXBasePaths Paths(/*FindAmbiguities=*/false, /*RecordPaths=*/true, in attemptDownCast() local 345 if (MRClass->isDerivedFrom(TargetClass, Paths)) in attemptDownCast() 346 return evalDerivedToBase(loc::MemRegionVal(MR), Paths.front()); in attemptDownCast()
|
| /freebsd-12.1/contrib/llvm/lib/Support/Windows/ |
| H A D | Program.inc | 38 ArrayRef<StringRef> Paths) { 46 if (!Paths.empty()) { 47 PathStorage.reserve(Paths.size() * MAX_PATH); 48 for (unsigned i = 0; i < Paths.size(); ++i) { 51 StringRef P = Paths[i];
|
| /freebsd-12.1/contrib/apr-util/dbm/ |
| H A D | NWGNUmakefile | 172 # Paths must all use the '/' character 220 # Paths must all use the '/' character
|
| /freebsd-12.1/usr.bin/calendar/calendars/ |
| H A D | calendar.lotr | 18 02/26 Aragorn takes the Paths of the Dead
|
| /freebsd-12.1/contrib/apr-util/dbd/ |
| H A D | NWGNUdbdsqli2 | 192 # Paths must all use the '/' character 265 # Paths must all use the '/' character
|
| H A D | NWGNUmakefile | 183 # Paths must all use the '/' character 231 # Paths must all use the '/' character
|