Home
last modified time | relevance | path

Searched refs:IS_LETTER_CHAR (Results 1 – 2 of 2) sorted by relevance

/external/lzma/CPP/Windows/
DFileName.cpp42 #define IS_LETTER_CHAR(c) ((c) >= 'a' && (c) <= 'z' || (c) >= 'A' && (c) <= 'Z') macro
85 bool IsDrivePath(const wchar_t *s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && s[2] == … in IsDrivePath()
91 bool IsDrivePath(CFSTR s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && s[2] == '\\'; } in IsDrivePath()
/external/lzma/CPP/7zip/UI/Common/
DArchiveExtractCallback.cpp287 #define IS_LETTER_CHAR(c) ((c) >= 'a' && (c) <= 'z' || (c) >= 'A' && (c) <= 'Z') macro
291 return s.Len() == 2 && s[1] == ':' && IS_LETTER_CHAR(s[0]); in IsDriveName()