Searched defs:ToUpper (Results 1 – 13 of 13) sorted by relevance
54 struct ToUpper struct56 const locale& loc;57 ToUpper (void) : loc(locale::classic()) {} in ToUpper() function58 char operator() (char c) { return std::toupper(c, loc); } in operator ()()
12 TEST(ToUpper, DefaultLocale) { in TEST() argument
37 EAS_INLINE EAS_I8 ToUpper (EAS_I8 c) { if ((c >= 'a') && (c <= 'z')) return c & ~0x20; else return … in ToUpper() function
81 string16 ToUpper(StringPiece16 string) { in ToUpper() function
117 char ToUpper(char ch) { return IsLower(ch) ? (ch - 'a' + 'A') : ch; } in ToUpper() function
121 char ToUpper(char ch) { return IsLower(ch) ? (ch - 'a' + 'A') : ch; } in ToUpper() function
242 void ToUpper(std::string *str) in ToUpper() function
163 std::string ToUpper(const std::string& str) { in ToUpper() function
72 char32 UniLibBase::ToUpper(char32 codepoint) const { in ToUpper() function in libtextclassifier3::UniLibBase
681 char32 ToUpper(char32 codepoint) { in ToUpper() function
193 inline string ToUpper(const string& s) { in ToUpper() function
30 inline char ToUpper(char c) { in ToUpper() function
246 char ToUpper(char ch) { in ToUpper() function