Searched refs:IS_LETTER_CHAR (Results 1 – 2 of 2) sorted by relevance
42 #define IS_LETTER_CHAR(c) ((c) >= 'a' && (c) <= 'z' || (c) >= 'A' && (c) <= 'Z') macro85 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()
287 #define IS_LETTER_CHAR(c) ((c) >= 'a' && (c) <= 'z' || (c) >= 'A' && (c) <= 'Z') macro291 return s.Len() == 2 && s[1] == ':' && IS_LETTER_CHAR(s[0]); in IsDriveName()