Home | History | Annotate | Download | only in bits

Lines Matching refs:do_tolower

248        *  by returning ctype<char_type>::do_tolower(c).
255 { return this->do_tolower(__c); }
262 * by returning ctype<char_type>:: do_tolower(lo, hi).
270 { return this->do_tolower(__lo, __hi); }
471 * do_tolower() is a hook for a derived facet to change the behavior of
472 * lowercasing. do_tolower() must always return the same result for
479 do_tolower(char_type) const = 0;
487 * do_tolower() is a hook for a derived facet to change the behavior of
488 * lowercasing. do_tolower() must always return the same result for
496 do_tolower(char_type* __lo, const char_type* __hi) const = 0;
642 do_tolower(char_type __c) const;
645 do_tolower(char_type* __lo, const char_type* __hi) const;
821 * tolower() acts as if it returns ctype<char>::do_tolower(c).
822 * do_tolower() must always return the same result for the same input.
829 { return this->do_tolower(__c); }
837 * tolower() acts as if it returns ctype<char>:: do_tolower(lo, hi).
838 * do_tolower() must always return the same result for the same input.
846 { return this->do_tolower(__lo, __hi); }
1030 * do_tolower() is a hook for a derived facet to change the behavior of
1031 * lowercasing. do_tolower() must always return the same result for
1038 do_tolower(char_type) const;
1046 * do_tolower() is a hook for a derived facet to change the behavior of
1047 * lowercasing. do_tolower() must always return the same result for
1055 do_tolower(char_type* __lo, const char_type* __hi) const;
1340 * do_tolower() is a hook for a derived facet to change the behavior of
1341 * lowercasing. do_tolower() must always return the same result for
1348 do_tolower(char_type) const;
1356 * do_tolower() is a hook for a derived facet to change the behavior of
1357 * lowercasing. do_tolower() must always return the same result for
1365 do_tolower(char_type* __lo, const char_type* __hi) const;