Home
last modified time | relevance | path

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

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