Searched defs:isASCIIUpper (Results 1 - 1 of 1) sorted by relevance

/external/webkit/JavaScriptCore/wtf/
H A DASCIICType.h96 inline bool isASCIIUpper(char c) { return c >= 'A' && c <= 'Z'; } function in namespace:WTF
97 inline bool isASCIIUpper(unsigned short c) { return c >= 'A' && c <= 'Z'; } function in namespace:WTF
99 inline bool isASCIIUpper(wchar_t c) { return c >= 'A' && c <= 'Z'; } function in namespace:WTF
101 inline bool isASCIIUpper(int c) { return c >= 'A' && c <= 'Z'; } function in namespace:WTF
161 using WTF::isASCIIUpper;

Completed in 24 milliseconds