Home
last modified time | relevance | path

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

/external/webkit/Source/JavaScriptCore/wtf/
DASCIICType.h102 inline bool isASCIIUpper(char c) { return c >= 'A' && c <= 'Z'; } in isASCIIUpper() function
103 inline bool isASCIIUpper(unsigned short c) { return c >= 'A' && c <= 'Z'; } in isASCIIUpper() function
105 inline bool isASCIIUpper(wchar_t c) { return c >= 'A' && c <= 'Z'; } in isASCIIUpper() function
107 inline bool isASCIIUpper(int c) { return c >= 'A' && c <= 'Z'; } in isASCIIUpper() function
108 inline bool isASCIIUpper(unsigned c) { return c >= 'A' && c <= 'Z'; } in isASCIIUpper() function