Home
last modified time | relevance | path

Searched refs:__l (Results 1 – 25 of 37) sorted by relevance

12

/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/
Dxlocale.c29 size_t __mb_cur_max(locale_t __l) { in __mb_cur_max() argument
30 FIX_LOCALE(__l); in __mb_cur_max()
31 return (__l->lc_ctype->cmapp->cm_mb_cur_max); in __mb_cur_max()
34 wint_t btowc_l(int __c, locale_t __l) { in btowc_l() argument
35 FIX_LOCALE(__l); in btowc_l()
36 return __l->lc_ctype->cmapp->core.user_api->btowc(__l->lc_ctype->cmapp, __c); in btowc_l()
39 int wctob_l(wint_t __c, locale_t __l) { in wctob_l() argument
40 FIX_LOCALE(__l); in wctob_l()
41 return __l->lc_ctype->cmapp->core.user_api->wctob(__l->lc_ctype->cmapp, __c); in wctob_l()
44 size_t wcrtomb_l(char *__s, wchar_t __wc, mbstate_t *__ps, locale_t __l) { in wcrtomb_l() argument
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/
Dxlocale.h41 wint_t btowc_l(int __c, locale_t __l);
43 int wctob_l(wint_t __c, locale_t __l);
45 size_t wcrtomb_l(char *__s, wchar_t __wc, mbstate_t *__ps, locale_t __l);
48 mbstate_t *__ps, locale_t __l);
50 int mbtowc_l(wchar_t *__pwc, const char *__pmb, size_t __max, locale_t __l);
52 size_t mbrlen_l(const char *__s, size_t __n, mbstate_t *__ps, locale_t __l);
54 struct lconv *localeconv_l(locale_t __l);
57 mbstate_t *__ps, locale_t __l);
59 int sprintf_l(char *__s, locale_t __l, const char *__format, ...);
61 int snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...);
[all …]
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_hash_map.h105 hash_map(_InputIterator __f, _InputIterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
107 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
109 hash_map(_InputIterator __f, _InputIterator __l, size_type __n) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
111 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
113 hash_map(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
116 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
119 hash_map(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
122 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
125 hash_map(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
129 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
[all …]
D_hash_set.h107 hash_set(_InputIterator __f, _InputIterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
109 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
111 hash_set(_InputIterator __f, _InputIterator __l, size_type __n) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
113 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
115 hash_set(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
118 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
120 hash_set(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
124 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
127 hash_set(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
130 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
[all …]
D_string_workaround.h82 basic_string(_InputIterator __f, _InputIterator __l, in basic_string() argument
86 _M_initialize_dispatch(__f, __l, _Integral()); in basic_string()
90 basic_string(_InputIterator __f, _InputIterator __l) in basic_string() argument
93 _M_initialize_dispatch(__f, __l, _Integral()); in basic_string()
114 void _M_range_initialize(_InputIter __f, _InputIter __l, in _M_range_initialize() argument
118 _M_appendT(__f, __l, __tag); in _M_range_initialize()
122 void _M_range_initialize(_ForwardIter __f, _ForwardIter __l, in _M_range_initialize() argument
124 difference_type __n = _STLP_STD::distance(__f, __l); in _M_range_initialize()
126 this->_M_finish = uninitialized_copy(__f, __l, this->_M_Start()); in _M_range_initialize()
131 void _M_range_initializeT(_InputIter __f, _InputIter __l) { in _M_range_initializeT() argument
[all …]
D_unordered_set.h89 unordered_set(_InputIterator __f, _InputIterator __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
94 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
96 unordered_set(const value_type* __f, const value_type* __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
101 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
103 unordered_set(const_iterator __f, const_iterator __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
108 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
133 void insert(_InputIterator __f, _InputIterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
135 void insert(const_iterator __f, const_iterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
136 {_M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
137 void insert(const value_type* __f, const value_type* __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
[all …]
D_unordered_map.h95 unordered_map(_InputIterator __f, _InputIterator __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
100 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
102 unordered_map(const value_type* __f, const value_type* __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
107 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
109 unordered_map(const_iterator __f, const_iterator __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS()
114 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
139 void insert(_InputIterator __f, _InputIterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
141 void insert(const value_type* __f, const value_type* __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
142 { _M_ht.insert_unique(__f,__l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
143 void insert(const_iterator __f, const_iterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
[all …]
D_string.h261 basic_string(_InputIterator __f, _InputIterator __l, in basic_string() argument
265 _M_initialize_dispatch(__f, __l, _Integral()); in basic_string()
269 basic_string(_InputIterator __f, _InputIterator __l) in basic_string() argument
272 _M_initialize_dispatch(__f, __l, _Integral()); in basic_string()
277 basic_string(const _CharT* __f, const _CharT* __l, in basic_string() argument
280 _STLP_FIX_LITERAL_BUG(__f) _STLP_FIX_LITERAL_BUG(__l) in basic_string()
281 _M_range_initialize(__f, __l); in basic_string()
284 basic_string(const _CharT* __f, const _CharT* __l) in basic_string() argument
286 _STLP_FIX_LITERAL_BUG(__f) _STLP_FIX_LITERAL_BUG(__l) in basic_string()
287 _M_range_initialize(__f, __l); in basic_string()
[all …]
D_hashtable.h425 void insert_unique(_InputIterator __f, _InputIterator __l)
426 { insert_unique(__f, __l, _STLP_ITERATOR_CATEGORY(__f, _InputIterator)); }
429 void insert_equal(_InputIterator __f, _InputIterator __l)
430 { insert_equal(__f, __l, _STLP_ITERATOR_CATEGORY(__f, _InputIterator)); }
433 void insert_unique(_InputIterator __f, _InputIterator __l,
435 for ( ; __f != __l; ++__f)
440 void insert_equal(_InputIterator __f, _InputIterator __l,
442 for ( ; __f != __l; ++__f)
447 void insert_unique(_ForwardIterator __f, _ForwardIterator __l,
449 size_type __n = _STLP_STD::distance(__f, __l);
[all …]
D_rope.c321 _RopeLeaf* __l = __STATIC_CAST(_RopeLeaf*, this); in _M_free_tree() local
322 _STLP_STD::_Destroy(__l); // ->_Rope_RopeLeaf<_CharT,_Alloc>::~_Rope_RopeLeaf(); in _M_free_tree()
324 _RopeLeaf).deallocate(__l, 1); in _M_free_tree()
663 _RopeLeaf* __l = __STATIC_CAST(_RopeLeaf*, __base); in _S_substring() local
669 const _CharT* __section = __l->_M_data + __start; in _S_substring()
818 _RopeLeaf* __l = __STATIC_CAST(_RopeLeaf*, __r); in _S_apply_to_pieces() local
819 return __c(__l->_M_data + __begin, __end - __begin); in _S_apply_to_pieces()
931 _RopeLeaf* __l = __STATIC_CAST(_RopeLeaf*, __r); in _S_flatten() local
932 return _STLP_PRIV __ucopy_n(__l->_M_data, __l->_M_size._M_data, __buffer).second; in _S_flatten()
1147 _RopeLeaf* __l = (_RopeLeaf*)__r; in _S_fetch() local
[all …]
D_string.c64 _Not_within_traits(const _CharT* __f, const _CharT* __l) in _Not_within_traits()
65 : _M_first(__f), _M_last(__l) {} in _Not_within_traits()
242 basic_string<_CharT,_Traits,_Alloc>::_M_assign(const _CharT* __f, const _CharT* __l) { in _M_assign() argument
243 ptrdiff_t __n = __l - __f; in _M_assign()
250 _M_append(__f + size(), __l); in _M_assign()
390 const _CharT* __f, const _CharT* __l, in _M_replace() argument
392 const ptrdiff_t __n = __l - __f; in _M_replace()
395 if (!__self_ref || __l < __first || __f >= __last) in _M_replace()
396 _M_copy(__f, __l, __first); in _M_replace()
398 _M_move(__f, __l, __first); in _M_replace()
[all …]
D_threads.h66 # define __add_and_fetch(__l,__v) add_then_test((unsigned long*)__l,__v) argument
67 # define __test_and_set(__l,__v) test_and_set(__l,__v) argument
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
D_debug.c408 __stl_debug_engine<_Dummy>::_IndexedError(int __error_ind, const char* __f, int __l) { in _IndexedError() argument
410 __f, __l, _Message_table[__error_ind]); in _IndexedError()
415 …bug_engine<_Dummy>::_VerboseAssert(const char* __expr, int __error_ind, const char* __f, int __l) { in _VerboseAssert() argument
417 __f, __l, _Message_table[__error_ind], __f, __l, __expr); in _VerboseAssert()
423 __stl_debug_engine<_Dummy>::_Assert(const char* __expr, const char* __f, int __l) { in _Assert() argument
424 __stl_debug_message(_Message_table[_StlFormat_ASSERTION_FAILURE],__f, __l, __expr); in _Assert()
451 __stl_debug_engine<_Dummy>::_Invalidate_all(__owned_list* __l) { in _Invalidate_all() argument
452 _STLP_ACQUIRE_LOCK(__l->_M_lock); in _Invalidate_all()
453 _Stamp_all(__l, 0); in _Invalidate_all()
454 __l->_M_node._M_next =0; in _Invalidate_all()
[all …]
D_string.h82 void _Invalidate_iterators(const iterator& __f, const iterator& __l) in _Invalidate_iterators() argument
83 { _STLP_PRIV __invalidate_range(&_M_iter_list, __f, __l); } in _Invalidate_iterators()
133 basic_string(const _CharT* __f, const _CharT* __l,
135 : _ConstructCheck(__f, __l), in _ConstructCheck() argument
136 _M_non_dbg_impl(__f, __l, __a), _M_iter_list(&_M_non_dbg_impl) { in _ConstructCheck()
138 basic_string(const_iterator __f, const_iterator __l,
140 : _ConstructCheck(__f, __l), in _ConstructCheck() argument
141 _M_non_dbg_impl(__f._M_iterator, __l._M_iterator, __a), _M_iter_list(&_M_non_dbg_impl) { in _ConstructCheck()
145 basic_string(_InputIterator __f, _InputIterator __l, in basic_string() argument
147 : _ConstructCheck(__f, __l), in basic_string()
[all …]
D_hashtable.h227 void insert_unique(_InputIterator __f, _InputIterator __l) { in insert_unique() argument
228 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__f, __l)) in insert_unique()
229 _M_non_dbg_impl.insert_unique(_STLP_PRIV _Non_Dbg_iter(__f), _STLP_PRIV _Non_Dbg_iter(__l)); in insert_unique()
233 void insert_equal(_InputIterator __f, _InputIterator __l){ in insert_equal() argument
234 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__f, __l)) in insert_equal()
235 _M_non_dbg_impl.insert_equal(_STLP_PRIV _Non_Dbg_iter(__f), _STLP_PRIV _Non_Dbg_iter(__l)); in insert_equal()
239 void insert_unique(const value_type* __f, const value_type* __l) { in insert_unique() argument
240 _STLP_DEBUG_CHECK(_STLP_PRIV __check_ptr_range(__f, __l)) in insert_unique()
241 _M_non_dbg_impl.insert_unique(__f, __l); in insert_unique()
244 void insert_equal(const value_type* __f, const value_type* __l) { in insert_equal() argument
[all …]
D_iterator.h388 __construct_checker(const _InputIter& __f, const _InputIter& __l) { in __construct_checker() argument
390 _M_check_dispatch(__f, __l, _Integral()); in __construct_checker()
397 …void _M_check_dispatch(const _InputIter& __f, const _InputIter& __l, const __false_type& /*IsInteg… in _M_check_dispatch() argument
398 _STLP_DEBUG_CHECK(__check_range(__f,__l)) in _M_check_dispatch()
403 __construct_checker(const value_type* __f, const value_type* __l) { in __construct_checker() argument
404 _STLP_DEBUG_CHECK(__check_ptr_range(__f,__l)) in __construct_checker()
408 __construct_checker(const _IteType& __f, const _IteType& __l) { in __construct_checker() argument
409 _STLP_DEBUG_CHECK(__check_range(__f,__l)) in __construct_checker()
D_debug.h99 static void _STLP_CALL _IndexedError(int __ind, const char* __f, int __l);
104 static void _STLP_CALL _Assert(const char* __expr, const char* __f, int __l);
107 …tic void _STLP_CALL _VerboseAssert(const char* __expr, int __error_ind, const char* __f, int __l);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
Dlocale_win32.h56 decltype(MB_CUR_MAX) MB_CUR_MAX_L( locale_t __l ) in decltype()
58 __locale_raii __current( uselocale(__l), uselocale ); in decltype()
103 #define sscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ ) argument
104 #define vsscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ ) argument
105 #define sprintf_l( __s, __l, __f, ... ) _sprintf_l( __s, __f, __l, __VA_ARGS__ ) argument
106 #define vsprintf_l( __s, __l, __f, ... ) _vsprintf_l( __s, __f, __l, __VA_ARGS__ ) argument
107 #define vsnprintf_l( __s, __n, __l, __f, ... ) _vsnprintf_l( __s, __n, __f, __l, __VA_ARGS__ ) argument
/ndk/sources/cxx-stl/llvm-libc++/patches.android/
D0003-Fallback-to-locale-C.patch31 if (__l == 0)
37 + __l = __new_cloc();
46 if (__l == 0)
52 + __l = __new_cloc();
61 if (__l == 0)
67 + __l = __new_cloc();
76 if (__l == 0)
82 + __l = __new_cloc();
91 if (__l == 0)
97 + __l = __new_cloc();
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Ddeque180 _RAIter __l,
188 __deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __l,
195 __deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __l,
202 _RAIter __l,
210 __deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __l,
217 __deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __l,
224 _RAIter __l,
232 __deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __l,
239 __deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __l,
246 _RAIter __l,
[all …]
Dlist557 static void __unlink_nodes(__node_pointer __f, __node_pointer __l) _NOEXCEPT;
669 // Unlink nodes [__f, __l]
673 __list_imp<_Tp, _Alloc>::__unlink_nodes(__node_pointer __f, __node_pointer __l)
676 __f->__prev_->__next_ = __l->__next_;
677 __l->__next_->__prev_ = __f->__prev_;
712 __node_pointer __l = static_cast<__node_pointer>(
714 __unlink_nodes(__f, __l->__prev_);
716 while (__f != __l)
729 if (__i->__ptr_ != __l)
859 list(_InpIter __f, _InpIter __l,
[all …]
Dforward_list586 forward_list(_InputIterator __f, _InputIterator __l,
591 forward_list(_InputIterator __f, _InputIterator __l,
629 assign(_InputIterator __f, _InputIterator __l);
707 insert_after(const_iterator __p, _InputIterator __f, _InputIterator __l);
714 iterator erase_after(const_iterator __f, const_iterator __l);
734 const_iterator __f, const_iterator __l);
739 const_iterator __f, const_iterator __l);
844 forward_list<_Tp, _Alloc>::forward_list(_InputIterator __f, _InputIterator __l,
849 insert_after(cbefore_begin(), __f, __l);
854 forward_list<_Tp, _Alloc>::forward_list(_InputIterator __f, _InputIterator __l,
[all …]
Dset447 set(_InputIterator __f, _InputIterator __l,
451 insert(__f, __l);
456 set(_InputIterator __f, _InputIterator __l, const value_compare& __comp,
460 insert(__f, __l);
466 set(_InputIterator __f, _InputIterator __l, const allocator_type& __a)
467 : set(__f, __l, key_compare(), __a) {}
613 void insert(_InputIterator __f, _InputIterator __l)
615 for (const_iterator __e = cend(); __f != __l; ++__f)
631 iterator erase(const_iterator __f, const_iterator __l)
632 {return __tree_.erase(__f, __l);}
[all …]
Dqueue438 priority_queue(_InputIter __f, _InputIter __l,
441 priority_queue(_InputIter __f, _InputIter __l,
445 priority_queue(_InputIter __f, _InputIter __l,
525 priority_queue<_Tp, _Container, _Compare>::priority_queue(_InputIter __f, _InputIter __l,
527 : c(__f, __l),
536 priority_queue<_Tp, _Container, _Compare>::priority_queue(_InputIter __f, _InputIter __l,
542 c.insert(c.end(), __f, __l);
551 priority_queue<_Tp, _Container, _Compare>::priority_queue(_InputIter __f, _InputIter __l,
557 c.insert(c.end(), __f, __l);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dlocale.cpp660 __l(newlocale(LC_ALL_MASK, n, 0)) in collate_byname()
663 if (__l == 0) in collate_byname()
669 __l = __new_cloc(); in collate_byname()
677 __l(newlocale(LC_ALL_MASK, name.c_str(), 0)) in collate_byname()
680 if (__l == 0) in collate_byname()
686 __l = __new_cloc(); in collate_byname()
694 freelocale(__l); in ~collate_byname()
703 int r = strcoll_l(lhs.c_str(), rhs.c_str(), __l); in do_compare()
715 string_type out(strxfrm_l(0, in.c_str(), 0, __l), char()); in do_transform()
716 strxfrm_l(const_cast<char*>(out.c_str()), in.c_str(), out.size()+1, __l); in do_transform()
[all …]

12