Searched defs:ToUpper (Results 1 – 6 of 6) 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 ()()
117 char ToUpper(char ch) { return IsLower(ch) ? (ch - 'a' + 'A') : ch; } in ToUpper() function
288 char ToUpper(char c) { in ToUpper() function292 std::string ToUpper(const std::string& in) { in ToUpper() function
191 inline void ToUpper(string* s) { UpperString(s); } in ToUpper() function193 inline string ToUpper(const string& s) { in ToUpper() function
242 void ToUpper(std::string *str) in ToUpper() function
244 char ToUpper(char ch) { in ToUpper() function