Searched refs:Paths (Results 1 - 25 of 37) sorted by relevance

12

/external/lzma/CPP/7zip/UI/Common/
H A DTempFiles.cpp15 while(!Paths.IsEmpty())
17 NDirectory::DeleteFileAlways((LPCWSTR)Paths.Back());
18 Paths.DeleteBack();
H A DTempFiles.h12 UStringVector Paths; member in class:CTempFiles
H A DZipRegistry.h18 UStringVector Paths; member in struct:NExtract::CInfo
H A DUpdate.cpp128 TempFiles->Paths.Add(name);
428 tempFiles.Paths.Add(realPath);
836 tempFiles.Paths.Clear();
/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/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(); }
H A DVTableBuilder.h508 VPtrInfoVector &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/AST/
H A DCXXInheritance.cpp58 Paths.clear();
68 Paths.swap(Other.Paths);
77 CXXBasePaths Paths(/*FindAmbiguities=*/false, /*RecordPaths=*/false,
79 return isDerivedFrom(Base, Paths);
83 CXXBasePaths &Paths) const {
87 Paths.setOrigin(const_cast<CXXRecordDecl*>(this));
90 Paths);
97 CXXBasePaths Paths(/*FindAmbiguities=*/false, /*RecordPaths=*/false,
103 Paths
[all...]
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...]
/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
251 if path not in repo_zip.Paths():
274 if path not in repo_zip.Paths():
/external/clang/lib/Sema/
H A DSemaCast.cpp1124 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1126 if (!Self.IsDerivedFrom(SrcExpr->getType(), R->getPointeeType(), Paths))
1129 Self.BuildBasePathArray(Paths, BasePath);
1224 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1226 if (!Self.IsDerivedFrom(DestType, SrcType, Paths)) {
1254 if (Paths.isAmbiguous(SrcType.getUnqualifiedType())) {
1259 if (!Paths.isRecordingPaths()) {
1260 Paths.clear();
1261 Paths.setRecordingPaths(true);
1262 Self.IsDerivedFrom(DestType, SrcType, Paths);
[all...]
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 DSemaExceptionSpec.cpp640 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
669 Paths.clear();
670 if (!IsDerivedFrom(CanonicalSubT, CanonicalSuperT, Paths))
673 if (Paths.isAmbiguous(Context.getCanonicalType(CanonicalSuperT)))
679 Paths.front(),
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
/external/clang/lib/Driver/
H A DWindowsToolChain.cpp325 const StringRef Paths[] = { local
332 addSystemIncludes(DriverArgs, CC1Args, Paths);
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 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...]
/external/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp334 CXXBasePaths Paths(/*FindAmbiguities=*/false, /*RecordPaths=*/true,
336 if (MRClass->isDerivedFrom(TargetClass, Paths))
337 return evalDerivedToBase(loc::MemRegionVal(MR), Paths.front());
H A DExprEngineCallAndReturn.cpp145 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
147 if (ActualClass->isDerivedFrom(ExpectedClass, Paths) &&
148 !Paths.isAmbiguous(ActualTy->getCanonicalTypeUnqualified())) {
149 return StoreMgr.evalDerivedToBase(V, Paths.front());
692 CXXBasePaths Paths(false, false, false);
695 Paths))
/external/qemu/distrib/sdl-1.2.15/acinclude/
H A Dalsa.m42 dnl Configure Paths for Alsa
/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/Driver/
H A DToolChain.h103 ArrayRef<StringRef> Paths);
/external/chromium_org/native_client_sdk/src/tools/
H A Dnacl_llvm.mk11 # Paths to Tools
H A Dcommon.mk337 # Default Paths
452 # Paths to Debug and Release versions of the Host Pepper plugins

Completed in 1460 milliseconds

12