Searched defs:ToUpper (Results 1 – 3 of 3) sorted by relevance
54 struct ToUpper struct56 const locale& loc;57 ToUpper (void) : loc(locale::classic()) {} in ToUpper() argument58 char operator() (char c) { return std::toupper(c, loc); } in operator ()()
37 EAS_INLINE EAS_I8 ToUpper (EAS_I8 c) { if ((c >= 'a') && (c <= 'z')) return c & ~0x20; else return … in ToUpper() function
190 inline string ToUpper(const string& s) { in ToUpper() function