Lines Matching refs:low
131 ctype_byname<wchar_t>::do_is(const wchar_t* low, const wchar_t* high,
143 for ( ; low < high; ++low, ++m)
144 *m = ctype_base::mask (_WLocale_ctype(_M_ctype, *low, all_bits));
150 ::do_scan_is(ctype_base::mask m, const wchar_t* low, const wchar_t* high) const
151 { return find_if(low, high, _STLP_PRIV _Ctype_byname_w_is_mask(m, _M_ctype)); }
155 ::do_scan_not(ctype_base::mask m, const wchar_t* low, const wchar_t* high) const
156 { return find_if(low, high, not1(_STLP_PRIV _Ctype_byname_w_is_mask(m, _M_ctype))); }
162 ctype_byname<wchar_t>::do_toupper(wchar_t* low, const wchar_t* high) const {
163 for ( ; low < high; ++low)
164 *low = _WLocale_toupper(_M_ctype, *low);
172 ctype_byname<wchar_t>::do_tolower(wchar_t* low, const wchar_t* high) const {
173 for ( ; low < high; ++low)
174 *low = _WLocale_tolower(_M_ctype, *low);
209 collate_byname<char>::do_transform(const char* low, const char* high) const {
210 if (low == high)
213 size_t n = _Locale_strxfrm(_M_collate, NULL, 0, low, high - low);
219 _Locale_strxfrm(_M_collate, &(*buf.begin()), n + 1, low, high - low);
256 collate_byname<wchar_t>::do_transform(const wchar_t* low,
258 if (low == high)
261 size_t n = _WLocale_strxfrm(_M_collate, NULL, 0, low, high - low);
267 _WLocale_strxfrm(_M_collate, &(*buf.begin()), n + 1, low, high - low);