Home
last modified time | relevance | path

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

/external/webkit/Source/JavaScriptCore/wtf/
DASCIICType.h94 inline bool isASCIILower(char c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function
95 inline bool isASCIILower(unsigned short c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function
97 inline bool isASCIILower(wchar_t c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function
99 inline bool isASCIILower(int c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function
100 inline bool isASCIILower(unsigned c) { return c >= 'a' && c <= 'z'; } in isASCIILower() function