OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IS_LETTER_CHAR
(Results
1 - 2
of
2
) sorted by null
/external/lzma/CPP/Windows/
FileName.cpp
42
#define
IS_LETTER_CHAR
(c) ((c) >= 'a' && (c) <= 'z' || (c) >= 'A' && (c) <= 'Z')
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] == '\\'; }
/external/lzma/CPP/7zip/UI/Common/
ArchiveExtractCallback.cpp
287
#define
IS_LETTER_CHAR
(c) ((c) >= 'a' && (c) <= 'z' || (c) >= 'A' && (c) <= 'Z')
291
return s.Len() == 2 && s[1] == ':' &&
IS_LETTER_CHAR
(s[0]);
Completed in 98 milliseconds