Home
last modified time | relevance | path

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

/external/libcxx/include/
Dlocale1113 static char* __identify_padding(char* __nb, char* __ne,
1121 static void __widen_and_group_int(char* __nb, char* __np, char* __ne,
1124 static void __widen_and_group_float(char* __nb, char* __np, char* __ne,
1131 __num_put<_CharT>::__widen_and_group_int(char* __nb, char* __np, char* __ne,
1140 __ct.widen(__nb, __ne, __ob);
1141 __oe = __ob + (__ne - __nb);
1149 if (__ne - __nf >= 2 && __nf[0] == '0' && (__nf[1] == 'x' ||
1155 reverse(__nf, __ne);
1159 for (char* __p = __nf; __p < __ne; ++__p)
1174 if (__np == __ne)
[all …]
D__locale1330 operator()(_OutputIterator __s, const char* __nb, const char* __ne) const;
1339 operator()(_OutputIterator __s, const char* __nb, const char* __ne) const
1341 for (; __nb < __ne; ++__nb, ++__s)
1359 operator()(_OutputIterator __s, const char* __nb, const char* __ne) const
1363 while (__nb < __ne && __r != error)
1369 __r = do_in(__mb, __nb, __ne - __nb > __sz ? __nb+__sz : __ne, __nn,
1393 operator()(_OutputIterator __s, const char* __nb, const char* __ne) const
1397 while (__nb < __ne && __r != error)
1403 __r = do_in(__mb, __nb, __ne - __nb > __sz ? __nb+__sz : __ne, __nn,
/external/libcxx/src/
Dlocale.cpp4496 __num_put_base::__identify_padding(char* __nb, char* __ne, in __identify_padding() argument
4504 if (__ne - __nb >= 2 && __nb[0] == '0' in __identify_padding()
4509 return __ne; in __identify_padding()
5440 __time_put::__do_put(char* __nb, char*& __ne, const tm* __tm, in __do_put() argument
5446 size_t n = strftime_l(__nb, countof(__nb, __ne), fmt, __tm, __loc_); in __do_put()
5447 __ne = __nb + n; in __do_put()
5455 char* __ne = __nar + 100; in __do_put() local
5456 __do_put(__nar, __ne, __tm, __fmt, __mod); in __do_put()