Home
last modified time | relevance | path

Searched refs:__np (Results 1 – 5 of 5) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_num_put.c121 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__f.getloc()); in __do_put_float() local
123 __np.decimal_point(), __np.thousands_sep(), in __do_put_float()
124 __group_pos, __np.grouping()); in __do_put_float()
206 const numpunct<wchar_t>& __np = use_facet<numpunct<wchar_t> >(__loc); in __put_integer() local
207 const string& __grouping = __np.grouping(); in __put_integer()
220 __len = __insert_grouping(__wbuf, __eend, __grouping, __np.thousands_sep(), in __put_integer()
237 const numpunct<char>& __np = use_facet<numpunct<char> >(__f.getloc()); in __put_integer() local
238 const string& __grouping = __np.grouping(); in __put_integer()
256 __len = __insert_grouping(__buf, __iend, __grouping, __np.thousands_sep(), in __put_integer()
387 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__f.getloc()); in __do_put_bool() local
[all …]
D_num_get.c273 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc); in __do_get_integer() local
279 …et_integer(__in_ite, __end, __base, __val, __got, __negative, __np.thousands_sep(), __np.grouping… in __do_get_integer()
281 …et_integer(__in_ite, __end, __base, __val, __got, __negative, __np.thousands_sep(), __np.grouping… in __do_get_integer()
283 …et_integer(__in_ite, __end, __base, __val, __got, __negative, __np.thousands_sep(), __np.grouping… in __do_get_integer()
451 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__str.getloc()); in __do_get_alphabool() local
452 const basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > __truename = __np.truename(); in __do_get_alphabool()
453 …const basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > __falsename = __np.falsename(); in __do_get_alphabool()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
D__hash_table1160 void __deallocate(__node_pointer __np) _NOEXCEPT;
1325 __hash_table<_Tp, _Hash, _Equal, _Alloc>::__deallocate(__node_pointer __np)
1329 while (__np != nullptr)
1331 __node_pointer __next = __np->__next_;
1338 if (__i->__node_ == __np)
1347 __node_traits::destroy(__na, _VSTD::addressof(__np->__value_));
1348 __node_traits::deallocate(__na, __np, 1);
1349 __np = __next;
1730 __node_pointer __np = __p.__node_;
1731 __cp->__hash_ = __np->__hash_;
[all …]
Dlocale571 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc);
572 __thousands_sep = __np.thousands_sep();
573 return __np.grouping();
583 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc);
584 __decimal_point = __np.decimal_point();
585 __thousands_sep = __np.thousands_sep();
586 return __np.grouping();
981 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__iob.getloc());
983 const string_type __names[2] = {__np.truename(), __np.falsename()};
1214 static void __widen_and_group_int(char* __nb, char* __np, char* __ne,
[all …]
D__tree1976 __node_pointer __np = __p.__ptr_;
1977 iterator __r(__np);
1979 if (__begin_node() == __np)
1984 static_cast<__node_base_pointer>(__np));
1986 __node_traits::deallocate(__na, __np, 1);
2283 __node_pointer __np = __p.__ptr_;
2284 if (__begin_node() == __np)
2286 if (__np->__right_ != nullptr)
2287 __begin_node() = static_cast<__node_pointer>(__np->__right_);
2289 __begin_node() = static_cast<__node_pointer>(__np->__parent_);
[all …]