Home
last modified time | relevance | path

Searched refs:__ne (Results 1 – 3 of 3) sorted by relevance

/external/libcxx/include/
Dlocale1059 static char* __identify_padding(char* __nb, char* __ne,
1067 static void __widen_and_group_int(char* __nb, char* __np, char* __ne,
1070 static void __widen_and_group_float(char* __nb, char* __np, char* __ne,
1077 __num_put<_CharT>::__widen_and_group_int(char* __nb, char* __np, char* __ne,
1086 __ct.widen(__nb, __ne, __ob);
1087 __oe = __ob + (__ne - __nb);
1095 if (__ne - __nf >= 2 && __nf[0] == '0' && (__nf[1] == 'x' ||
1101 reverse(__nf, __ne);
1105 for (char* __p = __nf; __p < __ne; ++__p)
1120 if (__np == __ne)
[all …]
D__locale1286 operator()(_OutputIterator __s, const char* __nb, const char* __ne) const;
1295 operator()(_OutputIterator __s, const char* __nb, const char* __ne) const
1297 for (; __nb < __ne; ++__nb, ++__s)
1315 operator()(_OutputIterator __s, const char* __nb, const char* __ne) const
1319 while (__nb < __ne && __r != error)
1325 __r = do_in(__mb, __nb, __ne - __nb > __sz ? __nb+__sz : __ne, __nn,
1349 operator()(_OutputIterator __s, const char* __nb, const char* __ne) const
1353 while (__nb < __ne && __r != error)
1359 __r = do_in(__mb, __nb, __ne - __nb > __sz ? __nb+__sz : __ne, __nn,
/external/libcxx/src/
Dlocale.cpp4484 __num_put_base::__identify_padding(char* __nb, char* __ne, in __identify_padding() argument
4492 if (__ne - __nb >= 2 && __nb[0] == '0' in __identify_padding()
4497 return __ne; in __identify_padding()
5428 __time_put::__do_put(char* __nb, char*& __ne, const tm* __tm, in __do_put() argument
5434 size_t n = strftime_l(__nb, countof(__nb, __ne), fmt, __tm, __loc_); in __do_put()
5435 __ne = __nb + n; in __do_put()
5443 char* __ne = __nar + 100; in __do_put() local
5444 __do_put(__nar, __ne, __tm, __fmt, __mod); in __do_put()