HomeSort by relevance Sort by last modified time
    Searched refs:PathParts (Results 1 - 7 of 7) sorted by null

  /external/lzma/CPP/Common/
Wildcard.cpp 79 void SplitPathToParts(const UString &path, UStringVector &pathParts)
81 pathParts.Clear();
91 pathParts.Add(name);
95 pathParts.Add(name);
179 return ForFile && ForDir && WildcardMatching && PathParts.Size() == 1 && PathParts.Front() == L"*";
182 bool CItem::CheckPath(const UStringVector &pathParts, bool isFile) const
188 if (PathParts.IsEmpty())
190 // PathParts.IsEmpty() means all items (universal wildcard)
193 if (pathParts.Size() <= 1)
    [all...]
Wildcard.h 15 void SplitPathToParts(const UString &path, UStringVector &pathParts);
30 unsigned GetNumPrefixParts_if_DrivePath(UStringVector &pathParts);
35 UStringVector PathParts;
44 return PathParts.Size() == 1 && !ForFile && ForDir && IsDriveColonName(PathParts[0]);
51 bool CheckPath(const UStringVector &pathParts, bool isFile) const;
58 bool CheckPathCurrent(bool include, const UStringVector &pathParts, bool isFile) const;
61 bool CheckPathVect(const UStringVector &pathParts, bool isFile, bool &include) const;
85 bool CheckPathToRoot(bool include, UStringVector &pathParts, bool isFile) const;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
Ecc.py 293 PathParts = TmpPath.split(os.sep)
294 if len(PathParts) == 0:
296 if len(PathParts) == 1:
297 if PathParts[0].strip().endswith(':'):
298 return PathParts[0].upper()
302 if Dir.upper() == PathParts[0].upper():
305 if PathParts[0].strip().endswith(':'):
306 PathParts[0] = PathParts[0].upper()
307 ParentDir = PathParts[0]
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
EnumDirItems.cpp 506 if (item.Recursive || item.PathParts.Size() != 1)
508 const UString &name = item.PathParts.Front();
566 const UString &name = item.PathParts.Front();
632 UStringVector pathParts;
633 pathParts.Add(fs2us(fi.Name));
634 if (curNode.CheckPathToRoot(false, pathParts, !isDir))
667 UStringVector pathParts;
668 pathParts.Add(fs2us(fi.Name));
670 fullPath, pathParts,
766 if (item.PathParts.Size() < 1)
    [all...]
OpenArchive.h 228 UStringVector PathParts; // without altStream name, path from root or from _baseParentFolder, if _use_baseParentFolder_mode
OpenArchive.cpp 797 item.PathParts.Clear();
880 RINOK(GetItemPathToParent(mainIndex, item._baseParentFolder, item.PathParts));
883 if ((item.WriteToAltStreamIfColon || needFindAltStream) && !item.PathParts.IsEmpty())
887 UString &s = item.PathParts.Back();
898 item.PathParts.DeleteBack();
911 , item.PathParts);
    [all...]
ArchiveExtractCallback.cpp 504 if (node.CheckPathVect(item.PathParts, !item.MainIsDir, include))
522 UStringVector pathParts2 = item.PathParts;
782 UStringVector pathParts;
783 SplitPathToParts(linkPath, pathParts);
787 if (CompareFileNames(_removePathParts[i], pathParts[i]) != 0)
794 pathParts.DeleteFrontal(_removePathParts.Size());
795 linkPath = MakePathFromParts(pathParts);
812 UStringVector &pathParts = _item.PathParts;
823 if (!pathParts.IsEmpty())
    [all...]

Completed in 1583 milliseconds