HomeSort by relevance Sort by last modified time
    Searched refs:__comp (Results 176 - 200 of 360) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_multimap.h 157 * @param __comp A comparison object.
161 multimap(const _Compare& __comp,
163 : _M_t(__comp, _Pair_alloc_type(__a)) { }
190 * @param __comp A comparison functor.
198 const _Compare& __comp = _Compare(),
200 : _M_t(__comp, _Pair_alloc_type(__a))
222 * @param __comp A comparison functor.
231 const _Compare& __comp,
233 : _M_t(__comp, _Pair_alloc_type(__a))
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/debug/
multiset.h 76 explicit multiset(const _Compare& __comp = _Compare(),
78 : _Base(__comp, __a) { }
82 const _Compare& __comp = _Compare(),
87 __comp, __a) { }
102 const _Compare& __comp = _Compare(),
104 : _Base(__l, __comp, __a) { }
set.h 76 explicit set(const _Compare& __comp = _Compare(),
78 : _Base(__comp, __a) { }
82 const _Compare& __comp = _Compare(),
87 __comp, __a) { }
102 const _Compare& __comp = _Compare(),
104 : _Base(__l, __comp, __a) { }
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
stl_multimap.h 162 * @param __comp A comparison object.
166 multimap(const _Compare& __comp,
168 : _M_t(__comp, _Pair_alloc_type(__a)) { }
195 * @param __comp A comparison functor.
203 const _Compare& __comp = _Compare(),
205 : _M_t(__comp, _Pair_alloc_type(__a))
227 * @param __comp A comparison functor.
236 const _Compare& __comp,
238 : _M_t(__comp, _Pair_alloc_type(__a))
    [all...]
stl_set.h 144 * @param __comp Comparator to use.
148 set(const _Compare& __comp,
150 : _M_t(__comp, _Key_alloc_type(__a)) { }
171 * @param __comp A comparison functor.
181 const _Compare& __comp,
183 : _M_t(__comp, _Key_alloc_type(__a))
211 * @param __comp A comparison functor.
219 const _Compare& __comp = _Compare(),
221 : _M_t(__comp, _Key_alloc_type(__a))
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/debug/
multiset.h 75 explicit multiset(const _Compare& __comp = _Compare(),
77 : _Base(__comp, __a) { }
81 const _Compare& __comp = _Compare(),
86 __comp, __a) { }
101 const _Compare& __comp = _Compare(),
103 : _Base(__l, __comp, __a) { }
set.h 75 explicit set(const _Compare& __comp = _Compare(),
77 : _Base(__comp, __a) { }
81 const _Compare& __comp = _Compare(),
86 __comp, __a) { }
101 const _Compare& __comp = _Compare(),
103 : _Base(__l, __comp, __a) { }
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/profile/
multiset.h 67 explicit multiset(const _Compare& __comp = _Compare(),
69 : _Base(__comp, __a) { }
78 const _Compare& __comp = _Compare(),
80 : _Base(__first, __last, __comp, __a) { }
95 const _Compare& __comp = _Compare(),
97 : _Base(__l, __comp, __a) { }
set.h 67 explicit set(const _Compare& __comp = _Compare(),
69 : _Base(__comp, __a) { }
78 const _Compare& __comp = _Compare(),
80 : _Base(__first, __last, __comp, __a) { }
95 const _Compare& __comp = _Compare(),
97 : _Base(__l, __comp, __a) { }
  /external/openssh/openbsd-compat/
sys-tree.h 165 int __comp; \
167 __comp = (cmp)(elm, (head)->sph_root); \
168 if(__comp < 0) { \
172 } else if (__comp > 0) { \
208 int __comp; \
213 while ((__comp = (cmp)(elm, (head)->sph_root))) { \
214 if (__comp < 0) { \
224 } else if (__comp > 0) { \
242 void name##_SPLAY_MINMAX(struct name *head, int __comp) \
250 if (__comp < 0) {
    [all...]
  /external/qemu/
sys-tree.h 174 int __comp; \
176 __comp = (cmp)(elm, (head)->sph_root); \
177 if(__comp < 0) { \
181 } else if (__comp > 0) { \
217 int __comp; \
222 while ((__comp = (cmp)(elm, (head)->sph_root)) != 0) { \
223 if (__comp < 0) { \
233 } else if (__comp > 0) { \
251 void name##_SPLAY_MINMAX(SYS_TREE_STRUCT name *head, int __comp) \
259 if (__comp < 0) {
    [all...]
  /external/stlport/stlport/stl/
_algobase.h 152 inline const _Tp& (min)(const _Tp& __a, const _Tp& __b, _Compare __comp) {
153 return __comp(__b, __a) ? __b : __a;
157 inline const _Tp& (max)(const _Tp& __a, const _Tp& __b, _Compare __comp) {
158 return __comp(__a, __b) ? __b : __a;
162 inline const _Tp (min)(const _Tp __a, const _Tp __b, _Compare __comp) {
163 return __comp(__b, __a) ? __b : __a;
167 inline const _Tp (max)(const _Tp __a, const _Tp __b, _Compare __comp) {
168 return __comp(__a, __b) ? __b : __a;
584 _Compare __comp);
687 _BinaryPredicate __comp);
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_algobase.h 152 inline const _Tp& (min)(const _Tp& __a, const _Tp& __b, _Compare __comp) {
153 return __comp(__b, __a) ? __b : __a;
157 inline const _Tp& (max)(const _Tp& __a, const _Tp& __b, _Compare __comp) {
158 return __comp(__a, __b) ? __b : __a;
162 inline const _Tp (min)(const _Tp __a, const _Tp __b, _Compare __comp) {
163 return __comp(__b, __a) ? __b : __a;
167 inline const _Tp (max)(const _Tp __a, const _Tp __b, _Compare __comp) {
168 return __comp(__a, __b) ? __b : __a;
584 _Compare __comp);
687 _BinaryPredicate __comp);
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_algobase.h 152 inline const _Tp& (min)(const _Tp& __a, const _Tp& __b, _Compare __comp) {
153 return __comp(__b, __a) ? __b : __a;
157 inline const _Tp& (max)(const _Tp& __a, const _Tp& __b, _Compare __comp) {
158 return __comp(__a, __b) ? __b : __a;
162 inline const _Tp (min)(const _Tp __a, const _Tp __b, _Compare __comp) {
163 return __comp(__b, __a) ? __b : __a;
167 inline const _Tp (max)(const _Tp __a, const _Tp __b, _Compare __comp) {
168 return __comp(__a, __b) ? __b : __a;
584 _Compare __comp);
687 _BinaryPredicate __comp);
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_algobase.h 152 inline const _Tp& (min)(const _Tp& __a, const _Tp& __b, _Compare __comp) {
153 return __comp(__b, __a) ? __b : __a;
157 inline const _Tp& (max)(const _Tp& __a, const _Tp& __b, _Compare __comp) {
158 return __comp(__a, __b) ? __b : __a;
162 inline const _Tp (min)(const _Tp __a, const _Tp __b, _Compare __comp) {
163 return __comp(__b, __a) ? __b : __a;
167 inline const _Tp (max)(const _Tp __a, const _Tp __b, _Compare __comp) {
168 return __comp(__a, __b) ? __b : __a;
584 _Compare __comp);
687 _BinaryPredicate __comp);
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_algobase.h 152 inline const _Tp& (min)(const _Tp& __a, const _Tp& __b, _Compare __comp) {
153 return __comp(__b, __a) ? __b : __a;
157 inline const _Tp& (max)(const _Tp& __a, const _Tp& __b, _Compare __comp) {
158 return __comp(__a, __b) ? __b : __a;
162 inline const _Tp (min)(const _Tp __a, const _Tp __b, _Compare __comp) {
163 return __comp(__b, __a) ? __b : __a;
167 inline const _Tp (max)(const _Tp __a, const _Tp __b, _Compare __comp) {
168 return __comp(__a, __b) ? __b : __a;
584 _Compare __comp);
687 _BinaryPredicate __comp);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_algobase.h 152 inline const _Tp& (min)(const _Tp& __a, const _Tp& __b, _Compare __comp) {
153 return __comp(__b, __a) ? __b : __a;
157 inline const _Tp& (max)(const _Tp& __a, const _Tp& __b, _Compare __comp) {
158 return __comp(__a, __b) ? __b : __a;
162 inline const _Tp (min)(const _Tp __a, const _Tp __b, _Compare __comp) {
163 return __comp(__b, __a) ? __b : __a;
167 inline const _Tp (max)(const _Tp __a, const _Tp __b, _Compare __comp) {
168 return __comp(__a, __b) ? __b : __a;
584 _Compare __comp);
687 _BinaryPredicate __comp);
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_algobase.h 152 inline const _Tp& (min)(const _Tp& __a, const _Tp& __b, _Compare __comp) {
153 return __comp(__b, __a) ? __b : __a;
157 inline const _Tp& (max)(const _Tp& __a, const _Tp& __b, _Compare __comp) {
158 return __comp(__a, __b) ? __b : __a;
162 inline const _Tp (min)(const _Tp __a, const _Tp __b, _Compare __comp) {
163 return __comp(__b, __a) ? __b : __a;
167 inline const _Tp (max)(const _Tp __a, const _Tp __b, _Compare __comp) {
168 return __comp(__a, __b) ? __b : __a;
584 _Compare __comp);
687 _BinaryPredicate __comp);
    [all...]
  /external/stlport/stlport/stl/debug/
_list.h 465 void merge(_Self& __x, _StrictWeakOrdering __comp) {
467 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(_M_non_dbg_impl.begin(), _M_non_dbg_impl.end(), __comp))
468 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(__x.begin()._M_iterator, __x.end()._M_iterator, __comp))
470 _M_non_dbg_impl.merge(__x._M_non_dbg_impl, __comp);
480 void sort(_StrictWeakOrdering __comp) {
481 _M_non_dbg_impl.sort(__comp);
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 465 void merge(_Self& __x, _StrictWeakOrdering __comp) {
467 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(_M_non_dbg_impl.begin(), _M_non_dbg_impl.end(), __comp))
468 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(__x.begin()._M_iterator, __x.end()._M_iterator, __comp))
470 _M_non_dbg_impl.merge(__x._M_non_dbg_impl, __comp);
480 void sort(_StrictWeakOrdering __comp) {
481 _M_non_dbg_impl.sort(__comp);
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 465 void merge(_Self& __x, _StrictWeakOrdering __comp) {
467 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(_M_non_dbg_impl.begin(), _M_non_dbg_impl.end(), __comp))
468 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(__x.begin()._M_iterator, __x.end()._M_iterator, __comp))
470 _M_non_dbg_impl.merge(__x._M_non_dbg_impl, __comp);
480 void sort(_StrictWeakOrdering __comp) {
481 _M_non_dbg_impl.sort(__comp);
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 465 void merge(_Self& __x, _StrictWeakOrdering __comp) {
467 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(_M_non_dbg_impl.begin(), _M_non_dbg_impl.end(), __comp))
468 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(__x.begin()._M_iterator, __x.end()._M_iterator, __comp))
470 _M_non_dbg_impl.merge(__x._M_non_dbg_impl, __comp);
480 void sort(_StrictWeakOrdering __comp) {
481 _M_non_dbg_impl.sort(__comp);
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 465 void merge(_Self& __x, _StrictWeakOrdering __comp) {
467 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(_M_non_dbg_impl.begin(), _M_non_dbg_impl.end(), __comp))
468 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(__x.begin()._M_iterator, __x.end()._M_iterator, __comp))
470 _M_non_dbg_impl.merge(__x._M_non_dbg_impl, __comp);
480 void sort(_StrictWeakOrdering __comp) {
481 _M_non_dbg_impl.sort(__comp);
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 465 void merge(_Self& __x, _StrictWeakOrdering __comp) {
467 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(_M_non_dbg_impl.begin(), _M_non_dbg_impl.end(), __comp))
468 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(__x.begin()._M_iterator, __x.end()._M_iterator, __comp))
470 _M_non_dbg_impl.merge(__x._M_non_dbg_impl, __comp);
480 void sort(_StrictWeakOrdering __comp) {
481 _M_non_dbg_impl.sort(__comp);
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/debug/
_list.h 465 void merge(_Self& __x, _StrictWeakOrdering __comp) {
467 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(_M_non_dbg_impl.begin(), _M_non_dbg_impl.end(), __comp))
468 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(__x.begin()._M_iterator, __x.end()._M_iterator, __comp))
470 _M_non_dbg_impl.merge(__x._M_non_dbg_impl, __comp);
480 void sort(_StrictWeakOrdering __comp) {
481 _M_non_dbg_impl.sort(__comp);

Completed in 617 milliseconds

1 2 3 4 5 6 78 91011>>