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

  /external/lzma/CPP/Windows/
FileName.h 48 bool IsDrivePath2(const wchar_t *s) throw(); // first 2 chars are drive chars like "a:"
54 bool IsDrivePath2(CFSTR s) throw(); // first 2 chars are drive chars like "a:"
FileName.cpp 81 if (len == 2 && IsDrivePath2(s))
180 bool IsDrivePath2(const wchar_t *s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':'; }
187 bool IsDrivePath2(CFSTR s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':'; }
212 return IS_SEPAR(s[0]) || IsDrivePath2(s);
218 if (IsDrivePath2(path))
607 if (IsDrivePath2(s))
FileFind.cpp 428 if (NName::IsDrivePath2(path + 4) && path[6] == 0)
469 if (IsDrivePath2(filePath) &&
  /external/lzma/CPP/7zip/UI/Common/
ExtractingFilePath.cpp 160 if (parts.Size() > 3 && NWindows::NFile::NName::IsDrivePath2(parts[3]))
170 else if (NWindows::NFile::NName::IsDrivePath2(parts[0]))
ArchiveExtractCallback.cpp 336 if (NName::IsDrivePath2(s))
355 if (i == 0 && s.Len() == 2 && NName::IsDrivePath2(s))
    [all...]

Completed in 101 milliseconds