Home
last modified time | relevance | path

Searched refs:__hi (Results 1 – 8 of 8) sorted by relevance

/trueos/contrib/libstdc++/config/locale/generic/
Dctype_members.cc104 ctype<wchar_t>::do_toupper(wchar_t* __lo, const wchar_t* __hi) const in do_toupper()
106 while (__lo < __hi) in do_toupper()
111 return __hi; in do_toupper()
119 ctype<wchar_t>::do_tolower(wchar_t* __lo, const wchar_t* __hi) const in do_tolower()
121 while (__lo < __hi) in do_tolower()
126 return __hi; in do_tolower()
149 do_is(const wchar_t* __lo, const wchar_t* __hi, mask* __vec) const in do_is() argument
151 for (;__lo < __hi; ++__vec, ++__lo) in do_is()
162 return __hi; in do_is()
167 do_scan_is(mask __m, const wchar_t* __lo, const wchar_t* __hi) const in do_scan_is()
[all …]
/trueos/contrib/libstdc++/config/locale/gnu/
Dctype_members.cc108 ctype<wchar_t>::do_toupper(wchar_t* __lo, const wchar_t* __hi) const in do_toupper()
110 while (__lo < __hi) in do_toupper()
115 return __hi; in do_toupper()
123 ctype<wchar_t>::do_tolower(wchar_t* __lo, const wchar_t* __hi) const in do_tolower()
125 while (__lo < __hi) in do_tolower()
130 return __hi; in do_tolower()
167 do_is(const wchar_t* __lo, const wchar_t* __hi, mask* __vec) const in do_is() argument
169 for (; __lo < __hi; ++__vec, ++__lo) in do_is()
180 return __hi; in do_is()
185 do_scan_is(mask __m, const wchar_t* __lo, const wchar_t* __hi) const in do_scan_is()
[all …]
/trueos/contrib/libstdc++/config/locale/darwin/
Dctype_members.cc68 ctype<wchar_t>::do_toupper(wchar_t* __lo, const wchar_t* __hi) const in do_toupper()
70 while (__lo < __hi) in do_toupper()
75 return __hi; in do_toupper()
83 ctype<wchar_t>::do_tolower(wchar_t* __lo, const wchar_t* __hi) const in do_tolower()
85 while (__lo < __hi) in do_tolower()
90 return __hi; in do_tolower()
100 do_widen(const char* __lo, const char* __hi, wchar_t* __dest) const in do_widen() argument
102 while (__lo < __hi) in do_widen()
108 return __hi; in do_widen()
123 do_narrow(const wchar_t* __lo, const wchar_t* __hi, char __dfault, in do_narrow() argument
[all …]
/trueos/contrib/libstdc++/include/bits/
Dlocale_facets.h181 is(const char_type *__lo, const char_type *__hi, mask *__vec) const in is() argument
182 { return this->do_is(__lo, __hi, __vec); } in is()
197 scan_is(mask __m, const char_type* __lo, const char_type* __hi) const in scan_is() argument
198 { return this->do_scan_is(__m, __lo, __hi); } in scan_is()
213 scan_not(mask __m, const char_type* __lo, const char_type* __hi) const in scan_not() argument
214 { return this->do_scan_not(__m, __lo, __hi); } in scan_not()
242 toupper(char_type *__lo, const char_type* __hi) const in toupper() argument
243 { return this->do_toupper(__lo, __hi); } in toupper()
271 tolower(char_type* __lo, const char_type* __hi) const in tolower() argument
272 { return this->do_tolower(__lo, __hi); } in tolower()
[all …]
Dlocale_facets.tcc2441 do_transform(const _CharT* __lo, const _CharT* __hi) const in do_transform()
2446 const string_type __str(__lo, __hi); in do_transform()
2451 size_t __len = (__hi - __lo) * 2; in do_transform()
2497 do_hash(const _CharT* __lo, const _CharT* __hi) const in do_hash()
2500 for (; __lo < __hi; ++__lo) in do_hash()
/trueos/contrib/libstdc++/config/os/bsd/freebsd/
Dctype_inline.h125 do_is(const wchar_t* __lo, const wchar_t* __hi, mask* __vec) const in do_is() argument
127 for (; __lo < __hi; ++__vec, ++__lo) in do_is()
130 return __hi; in do_is()
135 do_scan_is(mask __m, const wchar_t* __lo, const wchar_t* __hi) const in do_scan_is() argument
137 while (__lo < __hi && ! __istype (*__lo, __m)) in do_scan_is()
144 do_scan_not(mask __m, const char_type* __lo, const char_type* __hi) const in do_scan_not() argument
146 while (__lo < __hi && __istype (*__lo, __m)) in do_scan_not()
/trueos/contrib/libstdc++/config/os/bsd/darwin/
Dctype_inline.h125 do_is(const wchar_t* __lo, const wchar_t* __hi, mask* __vec) const in do_is() argument
127 for (; __lo < __hi; ++__vec, ++__lo) in do_is()
130 return __hi; in do_is()
135 do_scan_is(mask __m, const wchar_t* __lo, const wchar_t* __hi) const in do_scan_is() argument
137 while (__lo < __hi && ! __istype (*__lo, __m)) in do_scan_is()
144 do_scan_not(mask __m, const char_type* __lo, const char_type* __hi) const in do_scan_not() argument
146 while (__lo < __hi && __istype (*__lo, __m)) in do_scan_not()
/trueos/contrib/libc++/include/
D__locale210 string_type transform(const char_type* __lo, const char_type* __hi) const
212 return do_transform(__lo, __hi);
216 long hash(const char_type* __lo, const char_type* __hi) const
218 return do_hash(__lo, __hi);
227 virtual string_type do_transform(const char_type* __lo, const char_type* __hi) const
228 {return string_type(__lo, __hi);}
229 virtual long do_hash(const char_type* __lo, const char_type* __hi) const;
256 collate<_CharT>::do_hash(const char_type* __lo, const char_type* __hi) const
261 for(const char_type* __p = __lo; __p != __hi; ++__p)
293 virtual string_type do_transform(const char_type* __lo, const char_type* __hi) const;
[all …]