Home
last modified time | relevance | path

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

/external/webkit/JavaScriptCore/wtf/
DASCIICType.h89 inline bool isASCIILower(char c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function
90 inline bool isASCIILower(unsigned short c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function
92 inline bool isASCIILower(wchar_t c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function
94 inline bool isASCIILower(int c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function