Home
last modified time | relevance | path

Searched refs:IsDrivePath (Results 1 – 10 of 10) sorted by relevance

/external/lzma/CPP/Windows/
DFileName.cpp95 bool IsDrivePath(const wchar_t *s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && IS_SEPAR… in IsDrivePath() function
254 bool IsDrivePath(CFSTR s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && IS_SEPAR(s[2]); } in IsDrivePath() function
263 return IsDrivePath(s); in IsDrivePath_SuperAllowed()
270 return IsDrivePath(s) && s[kDrivePrefixSize] == 0; in IsDriveRootPath_SuperAllowed()
318 if (IsDrivePath(s)) in GetRootPrefixSize_Of_SimplePath()
367 if (IsDrivePath(s)) in GetRootPrefixSize_Of_SimplePath()
674 if (IsDrivePath(s)) in GetSuperPathBase()
703 if (IsDrivePath(curDir)) in GetSuperPathBase()
DFileName.h24 bool IsDrivePath(const wchar_t *s) throw(); // first 3 chars are drive chars like "a:\\"
64 bool IsDrivePath(CFSTR s) throw();
DFileLink.cpp160 if (!IsDrivePath(path)) in FillLinkData()
399 if (!IsDrivePath(SubsName.Ptr(k_LinkPrefix_Size))) in IsOkNamePair()
431 if (IsDrivePath(s.Ptr(k_LinkPrefix_Size))) in GetPath()
DFileFind.cpp687 if (NName::IsDrivePath(path + rootSize) && path[rootSize + 3] == 0) in Find()
/external/lzma/CPP/7zip/UI/Common/
DWorkDir.cpp23 if (NName::IsDrivePath(prefix)) in GetWorkDir()
DUpdateCallback.cpp328 if (NName::IsDrivePath(to) || in GetRelativePath()
329 NName::IsDrivePath(from)) in GetRelativePath()
DEnumDirItems.cpp1294 if (!IsDrivePath(link)) in FillFixedReparse()
/external/lzma/CPP/7zip/UI/FileManager/
DBrowseDialog.cpp252 if (IsDrivePath(FilePath)) in OnInit()
256 if (IsDrivePath(FilePath.Ptr(kSuperPathPrefixSize))) in OnInit()
DBrowseDialog2.cpp431 if (IsDrivePath(TempFolderPath)) in OnInit()
435 if (IsDrivePath(TempFolderPath.Ptr(kSuperPathPrefixSize))) in OnInit()
/external/lzma/CPP/7zip/Archive/Nsis/
DNsisIn.cpp2865 static bool IsDrivePath(const wchar_t *s) { return IS_LETTER_CHAR(s[0]) && s[1] == ':' /* && s[2] =… in IsDrivePath() function
2866 static bool IsDrivePath(const char *s) { return IS_LETTER_CHAR(s[0]) && s[1] == ':' /* && s[2] =… in IsDrivePath() function
2870 return (s[0] == WCHAR_PATH_SEPARATOR && s[1] == WCHAR_PATH_SEPARATOR) || IsDrivePath(s); in IsAbsolutePath()
2875 return (s[0] == CHAR_PATH_SEPARATOR && s[1] == CHAR_PATH_SEPARATOR) || IsDrivePath(s); in IsAbsolutePath()