Searched defs:Paths (Results 1 - 18 of 18) sorted by relevance

/external/lzma/CPP/7zip/UI/Common/
H A DTempFiles.h12 UStringVector Paths; member in class:CTempFiles
H A DZipRegistry.h18 UStringVector Paths; member in struct:NExtract::CInfo
/external/llvm/lib/ExecutionEngine/
H A DEventListenerCommon.h32 DenseMap<AssertingVH<MDNode>, std::string> Paths; member in class:llvm::jitprofiling::FilenameCache
45 std::string &P = Paths[Scope];
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dnew_github_file_system.py74 def Paths(self): member in class:_GithubZipFile
80 '''Returns all files within a directory at |path|. Not recursive. Paths
253 if path not in repo_zip.Paths():
276 if path not in repo_zip.Paths():
/external/clang/include/clang/AST/
H A DCXXInheritance.h121 /// Paths - The actual set of paths that can be taken from the
123 std::list<CXXBasePath> Paths; member in class:clang::CXXBasePaths
185 paths_iterator begin() { return Paths.begin(); }
186 paths_iterator end() { return Paths.end(); }
187 const_paths_iterator begin() const { return Paths.begin(); }
188 const_paths_iterator end() const { return Paths.end(); }
190 CXXBasePath& front() { return Paths.front(); }
191 const CXXBasePath& front() const { return Paths.front(); }
/external/clang/lib/Driver/
H A DToolChain.cpp356 ArrayRef<StringRef> Paths) {
357 for (ArrayRef<StringRef>::iterator I = Paths.begin(), E = Paths.end();
354 addSystemIncludes(const ArgList &DriverArgs, ArgStringList &CC1Args, ArrayRef<StringRef> Paths) argument
H A DWindowsToolChain.cpp325 const StringRef Paths[] = { local
332 addSystemIncludes(DriverArgs, CC1Args, Paths);
H A DToolChains.cpp3030 static void addPathIfExists(Twine Path, ToolChain::path_list &Paths) { argument
3031 if (llvm::sys::fs::exists(Path)) Paths.push_back(Path.str());
3133 path_list &Paths = getFilePaths(); local
3148 Paths);
3170 Paths);
3182 addPathIfExists(LibPath + "/" + MultiarchTriple, Paths);
3183 addPathIfExists(LibPath + "/../" + OSLibDir, Paths);
3193 addPathIfExists(D.Dir + "/../lib/" + MultiarchTriple, Paths);
3194 addPathIfExists(D.Dir + "/../" + OSLibDir, Paths);
3197 addPathIfExists(SysRoot + "/lib/" + MultiarchTriple, Paths);
[all...]
H A DTools.cpp4986 // Library Search Paths
6498 const ToolChain::path_list Paths = ToolChain.getFilePaths(); local
6499 for (const auto &Path : Paths)
7235 const ToolChain::path_list Paths = ToolChain.getFilePaths(); local
7237 for (const auto &Path : Paths)
/external/llvm/unittests/Support/
H A DPath.cpp221 SmallVector<StringRef, 4> Paths; local
222 Paths.push_back("/foo/");
223 Paths.push_back("/foo//");
224 Paths.push_back("//net//");
226 Paths.push_back("c:\\\\");
229 for (StringRef Path : Paths) {
/external/clang/include/clang/Sema/
H A DLookup.h133 Paths(nullptr),
155 Paths(nullptr),
175 Paths(nullptr),
190 if (Paths) deletePaths(Paths);
284 return Paths;
422 if (Paths) {
423 deletePaths(Paths);
424 Paths = nullptr;
435 } else if (Paths) {
655 CXXBasePaths *Paths; member in class:clang::LookupResult
[all...]
/external/clang/lib/Lex/
H A DModuleMap.cpp1601 /// \brief Append to \p Paths the set of paths needed to get to the
1606 SmallVector<StringRef, 2> Paths; local
1609 Paths.push_back(Mod->Name);
1612 if (Paths.empty())
1616 for (unsigned I = Paths.size() - 1; I != 0; --I)
1617 llvm::sys::path::append(Path, "Frameworks", Paths[I-1] + ".framework");
/external/clang/lib/Sema/
H A DSemaAccess.cpp930 CXXBasePaths &Paths) {
937 Paths);
948 for (CXXBasePaths::paths_iterator PI = Paths.begin(), PE = Paths.end();
1380 CXXBasePaths Paths; local
1381 CXXBasePath *Path = FindBestPath(S, EC, Entity, FinalAccess, Paths);
926 FindBestPath(Sema &S, const EffectiveContext &EC, AccessTarget &Target, AccessSpecifier FinalAccess, CXXBasePaths &Paths) argument
H A DSemaLookup.cpp327 assert((Paths != nullptr) == (ResultKind == Ambiguous &&
334 void LookupResult::deletePaths(CXXBasePaths *Paths) { argument
335 delete Paths;
484 Paths = new CXXBasePaths;
485 Paths->swap(P);
486 addDeclsFromBasePaths(*Paths);
492 Paths = new CXXBasePaths;
493 Paths->swap(P);
494 addDeclsFromBasePaths(*Paths);
502 if (Paths) Ou
1653 CXXBasePaths Paths; local
1844 CXXBasePaths *Paths = Result.getBasePaths(); local
1863 CXXBasePaths *Paths = Result.getBasePaths(); local
[all...]
H A DSemaDecl.cpp6185 CXXBasePaths Paths; local
6192 if (DC->lookupInBases(&FindOverriddenMethod, &Data, Paths)) {
6193 for (auto *I : Paths.found_decls()) {
H A DSemaDeclCXX.cpp1639 bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) { argument
1651 return DerivedRD->isDerivedFrom(BaseRD, Paths);
1654 void Sema::BuildBasePathArray(const CXXBasePaths &Paths, argument
1657 assert(Paths.isRecordingPaths() && "Must record paths!");
1659 const CXXBasePath &Path = Paths.front();
1708 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1710 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
1715 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
1718 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
1731 BuildBasePathArray(Paths, *BasePat
1786 getAmbiguousPathsDisplayString(CXXBasePaths &Paths) argument
[all...]
H A DSemaExpr.cpp10323 CXXBasePaths Paths; local
10324 if (IsDerivedFrom(CurrentType, Context.getTypeDeclType(Parent), Paths)) {
10325 if (Paths.getDetectedVirtual()) {
10332 CXXBasePath &Path = Paths.front();
/external/clang/lib/AST/
H A DVTableBuilder.cpp261 CXXBasePaths Paths(/*FindAmbiguities=*/false,
264 if (!DerivedRD->isDerivedFrom(BaseRD, Paths))
267 return ComputeBaseOffset(Context, DerivedRD, Paths.front());
1228 CXXBasePaths Paths(/*FindAmbiguities=*/true,
1231 if (!DerivedRD->isDerivedFrom(BaseRD, Paths))
1236 for (CXXBasePaths::const_paths_iterator I = Paths.begin(), E = Paths.end();
2657 CXXBasePaths Paths;
2659 Paths);
2670 for (CXXBasePaths::paths_iterator I = Paths
3166 computeVTablePaths(bool ForVBTables, const CXXRecordDecl *RD, VPtrInfoVector &Paths) argument
3256 rebucketPaths(VPtrInfoVector &Paths) argument
[all...]

Completed in 638 milliseconds