Home | History | Annotate | Download | only in bits

Lines Matching refs:do_widen

279        *  ctype<char_type>::do_widen(c).
289 { return this->do_widen(__c); }
296 * ctype<char_type>::do_widen(c).
308 { return this->do_widen(__lo, __hi, __to); }
506 * do_widen() is a hook for a derived facet to change the behavior of
507 * widening. do_widen() must always return the same result for the
517 do_widen(char __c) const = 0;
525 * do_widen() is a hook for a derived facet to change the behavior of
526 * widening. do_widen() must always return the same result for the
538 do_widen(const char* __lo, const char* __hi, char_type* __to) const = 0;
650 do_widen(char __c) const;
653 do_widen(const char* __lo, const char* __hi, char_type* __dest) const;
857 * This function works as if it returns ctype<char>::do_widen(c).
858 * do_widen() must always return the same result for the same input.
872 return this->do_widen(__c);
882 * This function works as if it returns ctype<char>::do_widen(c).
883 * do_widen() must always return the same result for the same input.
903 return this->do_widen(__lo, __hi, __to);
1066 * do_widen() is a hook for a derived facet to change the behavior of
1067 * widening. do_widen() must always return the same result for the
1077 do_widen(char __c) const
1087 * do_widen() is a hook for a derived facet to change the behavior of
1088 * widening. do_widen() must always return the same result for the
1100 do_widen(const char* __lo, const char* __hi, char_type* __to) const
1376 * do_widen() is a hook for a derived facet to change the behavior of
1377 * widening. do_widen() must always return the same result for the
1387 do_widen(char __c) const;
1396 * do_widen() is a hook for a derived facet to change the behavior of
1397 * widening. do_widen() must always return the same result for the
1409 do_widen(const char* __lo, const char* __hi, char_type* __to) const;