Searched defs:pathParts (Results 1 - 5 of 5) sorted by relevance
/external/lzma/CPP/7zip/UI/Common/ |
H A D | ExtractingFilePath.cpp | 86 void MakeCorrectPath(UStringVector &pathParts)
argument 88 for (int i = 0; i < pathParts.Size();)
90 UString &s = pathParts[i];
93 pathParts.Delete(i);
|
H A D | ArchiveExtractCallback.cpp | 220 UStringVector pathParts;
local 221 SplitPathToParts(fullPath, pathParts);
223 if (pathParts.IsEmpty())
233 if (pathParts.Size() <= numRemovePathParts)
236 if (_removePathParts[i].CompareNoCase(pathParts[i]) != 0)
242 numRemovePathParts = pathParts.Size() - 1;
246 pathParts.Delete(0, numRemovePathParts);
247 MakeCorrectPath(pathParts);
248 UString processedPath = MakePathNameFromParts(pathParts);
253 if (!pathParts [all...] |
H A D | EnumDirItems.cpp | 229 UStringVector pathParts;
local 230 pathParts.Add(fi.Name);
231 if (curNode.CheckPathToRoot(false, pathParts, !isDir))
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/ |
H A D | TestUtil.java | 35 public static File file(String... pathParts) { argument 36 return file(new File("."), pathParts); 39 public static File file(File f, String... pathParts) { argument 40 for (String pathPart : pathParts) { 72 public static File resourceFile(String... pathParts) { argument 73 return file(resourcesBaseDir(), pathParts);
|
/external/lzma/CPP/Common/ |
H A D | Wildcard.cpp | 87 void SplitPathToParts(const UString &path, UStringVector &pathParts)
argument 89 pathParts.Clear();
99 pathParts.Add(name);
105 pathParts.Add(name);
170 bool CItem::CheckPath(const UStringVector &pathParts, bool isFile) const
argument 174 int delta = (int)pathParts.Size() - (int)PathParts.Size();
198 if (!CompareWildCardWithName(PathParts[i], pathParts[i + d]))
273 bool CCensorNode::CheckPathCurrent(bool include, const UStringVector &pathParts, bool isFile) const
argument 277 if (items[i].CheckPath(pathParts, isFile))
282 bool CCensorNode::CheckPath(UStringVector &pathParts, boo argument 306 UStringVector pathParts; local 319 CheckPathToRoot(bool include, UStringVector &pathParts, bool isFile) const argument 376 UStringVector pathParts; local [all...] |
Completed in 4026 milliseconds