Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_queue.h168 _Compare comp; in _STLP_RELOPS_OPERATORS() local
171 explicit priority_queue(const _Compare& __x) : c(), comp(__x) {} in _STLP_RELOPS_OPERATORS()
173 : c(__s), comp(__x) in _STLP_RELOPS_OPERATORS()
174 { make_heap(c.begin(), c.end(), comp); } in _STLP_RELOPS_OPERATORS()
179 comp(_STLP_PRIV _AsMoveSource(src.get().comp)) {} in _STLP_RELOPS_OPERATORS()
185 : c(__first, __last) { make_heap(c.begin(), c.end(), comp); } in _STLP_RELOPS_OPERATORS()
190 : c(__first, __last), comp(__x) in _STLP_RELOPS_OPERATORS()
191 { make_heap(c.begin(), c.end(), comp); } in _STLP_RELOPS_OPERATORS()
196 : c(__s), comp(__x) in _STLP_RELOPS_OPERATORS()
199 make_heap(c.begin(), c.end(), comp); in _STLP_RELOPS_OPERATORS()
[all …]
D_map.h65 _Compare comp; in _STLP_CREATE_ITERATOR_TRAITS()
66 value_compare(_Compare __c) : comp(__c) {} in _STLP_CREATE_ITERATOR_TRAITS()
69 { return comp(__x.first, __y.first); } in _STLP_CREATE_ITERATOR_TRAITS()
257 _Compare comp; in _STLP_CREATE_ITERATOR_TRAITS()
258 value_compare(_Compare __c) : comp(__c) {} in _STLP_CREATE_ITERATOR_TRAITS()
261 { return comp(__x.first, __y.first); } in _STLP_CREATE_ITERATOR_TRAITS()
/ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/
Dctor_alloc.pass.cpp29 test(const value_compare& comp, const test_allocator<int>& a) in test()
30 : base(comp, c, a) {} in test()
31 test(const value_compare& comp, const container_type& c, in test()
32 const test_allocator<int>& a) : base(comp, c, a) {} in test()
34 test(const value_compare& comp, container_type&& c, in test()
35 const test_allocator<int>& a) : base(comp, std::move(c), a) {} in test()
Dctor_comp_alloc.pass.cpp29 test(const value_compare& comp, const test_allocator<int>& a) in test()
30 : base(comp, a) {} in test()
31 test(const value_compare& comp, const container_type& c, in test()
32 const test_allocator<int>& a) : base(comp, c, a) {} in test()
34 test(const value_compare& comp, container_type&& c, in test()
35 const test_allocator<int>& a) : base(comp, std::move(c), a) {} in test()
Dctor_comp_rcont_alloc.pass.cpp40 test(const value_compare& comp, const test_allocator<int>& a) in test()
41 : base(comp, a) {} in test()
42 test(const value_compare& comp, const container_type& c, in test()
43 const test_allocator<int>& a) : base(comp, c, a) {} in test()
45 test(const value_compare& comp, container_type&& c, in test()
46 const test_allocator<int>& a) : base(comp, std::move(c), a) {} in test()
Dctor_comp_cont_alloc.pass.cpp40 test(const value_compare& comp, const test_allocator<int>& a) in test()
41 : base(comp, a) {} in test()
42 test(const value_compare& comp, const container_type& c, in test()
43 const test_allocator<int>& a) : base(comp, c, a) {} in test()
45 test(const value_compare& comp, container_type&& c, in test()
46 const test_allocator<int>& a) : base(comp, std::move(c), a) {} in test()
Dctor_move_alloc.pass.cpp43 test(const value_compare& comp, const test_allocator<int>& a) in test()
44 : base(comp, c, a) {} in test()
45 test(const value_compare& comp, const container_type& c, in test()
46 const test_allocator<int>& a) : base(comp, c, a) {} in test()
47 test(const value_compare& comp, container_type&& c, in test()
48 const test_allocator<int>& a) : base(comp, std::move(c), a) {} in test()
Dctor_copy_alloc.pass.cpp39 test(const value_compare& comp, const test_allocator<int>& a) in test()
40 : base(comp, c, a) {} in test()
41 test(const value_compare& comp, const container_type& c, in test()
42 const test_allocator<int>& a) : base(comp, c, a) {} in test()
/ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.sorting/alg.min.max/
Dminmax_element_comp.pass.cpp28 Compare comp; in test() local
29 std::pair<Iter, Iter> p = std::minmax_element(first, last, comp); in test()
34 assert(!comp(*j, *p.first)); in test()
35 assert(!comp(*p.second, *j)); in test()
74 Compare comp; in test() local
75 std::pair<Iter, Iter> p = std::minmax_element(Iter(a), Iter(a+N), comp); in test()
/ndk/sources/cxx-stl/llvm-libc++/include/
Dqueue107 Compare comp;
119 explicit priority_queue(const Compare& comp);
120 priority_queue(const Compare& comp, const container_type& c);
121 explicit priority_queue(const Compare& comp, container_type&& c);
124 const Compare& comp = Compare());
127 const Compare& comp, const container_type& c);
130 const Compare& comp, container_type&& c);
134 priority_queue(const Compare& comp, const Alloc& a);
136 priority_queue(const Compare& comp, const container_type& c,
139 priority_queue(const Compare& comp, container_type&& c,
[all …]
Dmap49 key_compare comp;
62 explicit map(const key_compare& comp);
63 map(const key_compare& comp, const allocator_type& a);
66 const key_compare& comp = key_compare());
69 const key_compare& comp, const allocator_type& a);
78 map(initializer_list<value_type> il, const key_compare& comp = key_compare());
79 map(initializer_list<value_type> il, const key_compare& comp, const allocator_type& a);
225 key_compare comp;
237 explicit multimap(const key_compare& comp);
238 multimap(const key_compare& comp, const allocator_type& a);
[all …]
Dset50 explicit set(const value_compare& comp);
51 set(const value_compare& comp, const allocator_type& a);
54 const value_compare& comp = value_compare());
56 set(InputIterator first, InputIterator last, const value_compare& comp,
66 set(initializer_list<value_type> il, const value_compare& comp = value_compare());
67 set(initializer_list<value_type> il, const value_compare& comp,
206 explicit multiset(const value_compare& comp);
207 multiset(const value_compare& comp, const allocator_type& a);
210 const value_compare& comp = value_compare());
213 const value_compare& comp, const allocator_type& a);
[all …]
Dalgorithm290 is_sorted(ForwardIterator first, ForwardIterator last, Compare comp);
298 is_sorted_until(ForwardIterator first, ForwardIterator last, Compare comp);
306 sort(RandomAccessIterator first, RandomAccessIterator last, Compare comp);
314 stable_sort(RandomAccessIterator first, RandomAccessIterator last, Compare comp);
322 …(RandomAccessIterator first, RandomAccessIterator middle, RandomAccessIterator last, Compare comp);
332 … RandomAccessIterator result_first, RandomAccessIterator result_last, Compare comp);
340 …ent(RandomAccessIterator first, RandomAccessIterator nth, RandomAccessIterator last, Compare comp);
348 lower_bound(ForwardIterator first, ForwardIterator last, const T& value, Compare comp);
356 upper_bound(ForwardIterator first, ForwardIterator last, const T& value, Compare comp);
364 equal_range(ForwardIterator first, ForwardIterator last, const T& value, Compare comp);
[all …]
Dforward_list130 template <class Compare> void merge(forward_list& x, Compare comp);
131 template <class Compare> void merge(forward_list&& x, Compare comp);
133 template <class Compare> void sort(Compare comp);
Dlist141 void merge(list& x, Compare comp);
143 void merge(list&& x, Compare comp);
146 void sort(Compare comp);
/ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/priority.queue/
Dtypes.pass.cpp37 assert(comp(1, 2)); in test()
/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Dparallelism119 foo.d: comp
122 comp: mod_a.o mod_b.o; @:
/ndk/sources/host-tools/make-3.81/
Dvariable.c730 struct variable *comp = lookup_variable ("COMSPEC", 7); in define_automatic_variables() local
736 else if (comp) in define_automatic_variables()
742 (void) define_variable (shell_str, shlen, comp->value, o_env, 0); in define_automatic_variables()
DREADME.DOS313 reported first on the comp.os.msdos.djgpp news group (if you cannot
/ndk/sources/host-tools/sed-4.2.1/sed/
DMakefile.in52 $(top_srcdir)/m4/gnulib-comp.m4 $(top_srcdir)/m4/iconv.m4 \
/ndk/sources/host-tools/sed-4.2.1/
DMakefile.in57 $(top_srcdir)/m4/gnulib-comp.m4 $(top_srcdir)/m4/iconv.m4 \
Daclocal.m4901 m4_include([m4/gnulib-comp.m4])
/ndk/sources/host-tools/sed-4.2.1/doc/
DMakefile.in53 $(top_srcdir)/m4/gnulib-comp.m4 $(top_srcdir)/m4/iconv.m4 \
/ndk/sources/host-tools/sed-4.2.1/lib/
DMakefile.in63 $(top_srcdir)/m4/gnulib-comp.m4 $(top_srcdir)/m4/iconv.m4 \
/ndk/sources/host-tools/sed-4.2.1/testsuite/
DMakefile.in61 $(top_srcdir)/m4/gnulib-comp.m4 $(top_srcdir)/m4/iconv.m4 \