/external/lzma/CPP/7zip/UI/Common/ |
TempFiles.cpp | 15 while(!Paths.IsEmpty())
17 NDirectory::DeleteFileAlways((LPCWSTR)Paths.Back());
18 Paths.DeleteBack();
|
TempFiles.h | 12 UStringVector Paths;
|
ZipRegistry.h | 18 UStringVector Paths;
|
Update.cpp | 128 TempFiles->Paths.Add(name);
428 tempFiles.Paths.Add(realPath);
836 tempFiles.Paths.Clear();
|
/external/clang/lib/CodeGen/ |
MicrosoftVBTables.cpp | 46 VBTablePathVector Paths; 48 CharUnits::Zero()), Paths); 49 for (VBTablePathVector::iterator I = Paths.begin(), E = Paths.end(); 64 VBTablePathVector &Paths) { 65 size_t PathsStart = Paths.size(); 70 // paths, so we don't use CXXBasePath. 75 Paths.push_back(Info); 103 size_t NumPaths = Paths.size(); 105 Paths); [all...] |
MicrosoftVBTables.h | 73 /// Visiting each class node yields a list of inheritance paths to vbptrs. Each 76 /// To combine paths from child nodes, the paths are compared to check for 77 /// ambiguity. Paths are "ambiguous" if multiple paths have the same set of 78 /// components in the same order. Each group of ambiguous paths is extended by 81 /// After extending paths, MSVC again checks for ambiguity, and extends any 83 /// unambiguous set of paths, MSVC doesn't need to extend any path more than once 84 /// to produce an unambiguous set of paths. 87 /// bucketing paths together by sorting them [all...] |
/external/llvm/lib/ExecutionEngine/ |
EventListenerCommon.h | 32 DenseMap<AssertingVH<MDNode>, std::string> Paths; 45 std::string &P = Paths[Scope];
|
/external/clang/include/clang/Sema/ |
Lookup.h | 133 Paths(0), 154 Paths(0), 173 Paths(0), 187 if (Paths) deletePaths(Paths); 278 /// \brief Return the base paths structure that's associated with 281 return Paths; 411 if (Paths) { 412 deletePaths(Paths); 413 Paths = 0 [all...] |
/external/clang/include/clang/AST/ |
CXXInheritance.h | 74 /// calculated when recording paths. AS_none is a special value 88 /// BasePaths - Represents the set of paths from a derived class to 99 /// There are two potential BasePaths to represent paths from D to a 101 /// and another is (D,0)->(C,0)->(A,1). These two paths actually 121 /// Paths - The actual set of paths that can be taken from the 123 std::list<CXXBasePath> Paths; 134 /// ambiguous paths while it is looking for a path from a derived 138 /// RecordPaths - Whether Sema::IsDerivedFrom should record paths 139 /// while it is determining whether there are paths from a derive [all...] |
/external/clang/lib/AST/ |
CXXInheritance.cpp | 24 /// paths. 50 /// isAmbiguous - Determines whether the set of paths provided is 51 /// ambiguous, i.e., there are two or more paths that refer to 62 Paths.clear(); 72 Paths.swap(Other.Paths); 81 CXXBasePaths Paths(/*FindAmbiguities=*/false, /*RecordPaths=*/false, 83 return isDerivedFrom(Base, Paths); 87 CXXBasePaths &Paths) const { 91 Paths.setOrigin(const_cast<CXXRecordDecl*>(this)) [all...] |
VTableBuilder.cpp | 254 CXXBasePaths Paths(/*FindAmbiguities=*/false, 257 if (!DerivedRD->isDerivedFrom(BaseRD, Paths)) 260 return ComputeBaseOffset(Context, DerivedRD, Paths.front()); [all...] |
/external/clang/lib/Sema/ |
SemaCast.cpp | [all...] |
SemaLookup.cpp | 329 assert((Paths != NULL) == (ResultKind == Ambiguous && 335 void LookupResult::deletePaths(CXXBasePaths *Paths) { 336 delete Paths; 470 Paths = new CXXBasePaths; 471 Paths->swap(P); 472 addDeclsFromBasePaths(*Paths); 478 Paths = new CXXBasePaths; 479 Paths->swap(P); 480 addDeclsFromBasePaths(*Paths); 488 if (Paths) Out << ", base paths present" [all...] |
SemaExceptionSpec.cpp | 622 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 653 Paths.clear(); 654 if (!IsDerivedFrom(CanonicalSubT, CanonicalSuperT, Paths)) 657 if (Paths.isAmbiguous(Context.getCanonicalType(CanonicalSuperT))) 663 Paths.front(), [all...] |
SemaAccess.cpp | 1198 CXXBasePaths paths; local [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
new_github_file_system.py | 39 'zipball' prefix that all paths have. The zip files that come straight from 40 GitHub have paths like ['zipball/foo.txt', 'zipball/bar.txt'] but we only 57 paths = [] 65 paths.append(path) 66 return cls(zipball, name_prefix, paths) 68 def __init__(self, zipball, name_prefix, paths): 71 self._paths = paths 73 def Paths(self): 74 '''Return all file paths in this zip file. 79 '''Returns all files within a directory at |path|. Not recursive. Paths [all...] |
/external/clang/lib/Driver/ |
ToolChain.cpp | 355 ArrayRef<StringRef> Paths) { 356 for (ArrayRef<StringRef>::iterator I = Paths.begin(), E = Paths.end(); 365 // Header search paths should be handled by each of the subclasses. 372 // header search paths with it. Once all systems are overriding this
|
WindowsToolChain.cpp | 295 // Honor %INCLUDE%. It should know essential search paths with vcvarsall.bat. 315 // the correct include paths first. 327 // As a fallback, select default install paths. 328 const StringRef Paths[] = { 335 addSystemIncludes(DriverArgs, CC1Args, Paths);
|
ToolChains.cpp | [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
Store.cpp | 334 CXXBasePaths Paths(/*FindAmbiguities=*/false, /*RecordPaths=*/true, 336 if (MRClass->isDerivedFrom(TargetClass, Paths)) 337 return evalDerivedToBase(loc::MemRegionVal(MR), Paths.front()); 350 // Strange use of reinterpret_cast can give us paths we don't reason
|
ExprEngineCallAndReturn.cpp | 145 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 147 if (ActualClass->isDerivedFrom(ExpectedClass, Paths) && 148 !Paths.isAmbiguous(ActualTy->getCanonicalTypeUnqualified())) { 149 return StoreMgr.evalDerivedToBase(V, Paths.front()); 401 // the exact type of the receiver is not known, we want to explore both paths - 690 CXXBasePaths Paths(false, false, false); 693 Paths)) [all...] |
/external/clang/include/clang/Driver/ |
ToolChain.h | 97 ArrayRef<StringRef> Paths); 269 /// \brief Add the clang cc1 arguments for system include paths. 291 /// the include paths to use for the given C++ standard library type.
|
/external/qemu/distrib/sdl-1.2.15/acinclude/ |
alsa.m4 | 2 dnl Configure Paths for Alsa
|
/external/chromium_org/native_client_sdk/src/tools/ |
nacl_llvm.mk | 11 # Paths to Tools 159 # objdump. Pass in the (-L) paths to the default library toolchains so that we
|
/external/clang/lib/Lex/ |
ModuleMap.cpp | [all...] |