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

/external/webkit/Source/JavaScriptCore/wtf/
H A DASCIICType.h140 inline char toASCIIUpper(char c) { return static_cast<char>(c & ~((c >= 'a' && c <= 'z') << 5)); } function in namespace:WTF
141 inline unsigned short toASCIIUpper(unsigned short c) { return static_cast<unsigned short>(c & ~((c >= 'a' && c <= 'z') << 5)); } function in namespace:WTF
143 inline wchar_t toASCIIUpper(wchar_t c) { return static_cast<wchar_t>(c & ~((c >= 'a' && c <= 'z') << 5)); } function in namespace:WTF
145 inline int toASCIIUpper(int c) { return static_cast<int>(c & ~((c >= 'a' && c <= 'z') << 5)); } function in namespace:WTF
146 inline unsigned toASCIIUpper(unsigned c) { return static_cast<unsigned>(c & ~((c >= 'a' && c <= 'z') << 5)); } function in namespace:WTF
177 using WTF::toASCIIUpper;

Completed in 97 milliseconds