OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pathParts
(Results
1 - 3
of
3
) sorted by null
/external/lzma/CPP/7zip/UI/Common/
ArchiveExtractCallback.cpp
220
UStringVector
pathParts
;
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
.IsEmpty())
[
all
...]
EnumDirItems.cpp
198
if (item.Recursive || item.
PathParts
.Size() != 1)
200
const UString &name = item.
PathParts
.Front();
212
const UString &name = item.
PathParts
.Front();
229
UStringVector
pathParts
;
230
pathParts
.Add(fi.Name);
231
if (curNode.CheckPathToRoot(false,
pathParts
, !isDir))
/external/lzma/CPP/Common/
Wildcard.cpp
87
void SplitPathToParts(const UString &path, UStringVector &
pathParts
)
89
pathParts
.Clear();
99
pathParts
.Add(name);
105
pathParts
.Add(name);
170
bool CItem::CheckPath(const UStringVector &
pathParts
, bool isFile) const
174
int delta = (int)
pathParts
.Size() - (int)
PathParts
.Size();
197
for (i = 0; i <
PathParts
.Size(); i++)
198
if (!CompareWildCardWithName(
PathParts
[i],
pathParts
[i + d]))
[
all
...]
Completed in 27 milliseconds