OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isASCIIAlpha
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/testing/runner/
TestCommon.h
45
inline bool
isASCIIAlpha
(char ch) { return (ch | 0x20) >= 'a' && (ch | 0x20) <= 'z'; }
47
inline bool isNotASCIIAlpha(char ch) { return !
isASCIIAlpha
(ch); }
/external/chromium_org/third_party/WebKit/Source/wtf/
ASCIICType.h
51
template<typename CharType> inline bool
isASCIIAlpha
(CharType c)
63
return isASCIIDigit(c) ||
isASCIIAlpha
(c);
169
using WTF::
isASCIIAlpha
;
Completed in 923 milliseconds