Home | History | Annotate | Download | only in bits

Lines Matching refs:do_toupper

219        *  so by returning ctype<char_type>::do_toupper().
226 { return this->do_toupper(__c); }
233 * by returning ctype<char_type>:: do_toupper(lo, hi).
241 { return this->do_toupper(__lo, __hi); }
438 * do_toupper() is a hook for a derived facet to change the behavior of
439 * uppercasing. do_toupper() must always return the same result for
446 do_toupper(char_type __c) const = 0;
454 * do_toupper() is a hook for a derived facet to change the behavior of
455 * uppercasing. do_toupper() must always return the same result for
463 do_toupper
636 do_toupper(char_type __c) const;
639 do_toupper(char_type* __lo, const char_type* __hi) const;
788 * toupper() acts as if it returns ctype<char>::do_toupper(c).
789 * do_toupper() must always return the same result for the same input.
796 { return this->do_toupper(__c); }
804 * toupper() acts as if it returns ctype<char>:: do_toupper(__lo, __hi).
805 * do_toupper() must always return the same result for the same input.
813 { return this->do_toupper(__lo, __hi); }
997 * do_toupper() is a hook for a derived facet to change the behavior of
998 * uppercasing. do_toupper() must always return the same result for
1005 do_toupper(char_type __c) const;
1013 * do_toupper() is a hook for a derived facet to change the behavior of
1014 * uppercasing. do_toupper() must always return the same result for
1022 do_toupper(char_type* __lo, const char_type* __hi) const;
1307 * do_toupper() is a hook for a derived facet to change the behavior of
1308 * uppercasing. do_toupper() must always return the same result for
1315 do_toupper(char_type __c) const;
1323 * do_toupper() is a hook for a derived facet to change the behavior of
1324 * uppercasing. do_toupper() must always return the same result for
1332 do_toupper(char_type* __lo, const char_type* __hi) const;