OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsDrivePath
(Results
1 - 7
of
7
) sorted by null
/external/lzma/CPP/Windows/
FileName.h
25
bool
IsDrivePath
(const wchar_t *s) throw();
30
bool
IsDrivePath
(CFSTR s) throw();
FileName.cpp
85
bool
IsDrivePath
(const wchar_t *s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && s[2] == '\\'; }
91
bool
IsDrivePath
(CFSTR s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && s[2] == '\\'; }
98
return s[0] == WCHAR_PATH_SEPARATOR ||
IsDrivePath
(s);
119
if (
IsDrivePath
(s))
166
if (
IsDrivePath
(s))
454
if (
IsDrivePath
(s))
485
if (
IsDrivePath
(curDir))
619
if (
IsDrivePath
(s))
646
if (
IsDrivePath
(curDir))
FileLink.cpp
116
if (!
IsDrivePath
(path))
306
if (!
IsDrivePath
(SubsName.Ptr(k_LinkPrefix_Size)))
329
if (
IsDrivePath
(s.Ptr(k_LinkPrefix_Size)))
/external/lzma/CPP/7zip/UI/Common/
ExtractingFilePath.cpp
113
if (i == 0 && isPathFromRoot && NWindows::NFile::NName::
IsDrivePath
(s))
UpdateCallback.cpp
278
if (NName::
IsDrivePath
(to) ||
279
NName::
IsDrivePath
(from))
EnumDirItems.cpp
717
if (!
IsDrivePath
(link))
/external/lzma/CPP/7zip/UI/FileManager/
BrowseDialog.cpp
260
if (NName::
IsDrivePath
(FilePath))
264
if (NName::
IsDrivePath
(&FilePath[kSuperPathPrefixSize]))
Completed in 380 milliseconds