/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _queue.h | 168 _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.h | 65 _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/ |
D | ctor_alloc.pass.cpp | 29 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()
|
D | ctor_comp_alloc.pass.cpp | 29 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()
|
D | ctor_comp_rcont_alloc.pass.cpp | 40 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()
|
D | ctor_comp_cont_alloc.pass.cpp | 40 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()
|
D | ctor_move_alloc.pass.cpp | 43 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()
|
D | ctor_copy_alloc.pass.cpp | 39 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/ |
D | minmax_element_comp.pass.cpp | 28 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/ |
D | queue | 107 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 …]
|
D | map | 49 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 …]
|
D | set | 50 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 …]
|
D | algorithm | 290 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 …]
|
D | forward_list | 130 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);
|
D | list | 141 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/ |
D | types.pass.cpp | 37 assert(comp(1, 2)); in test()
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
D | parallelism | 119 foo.d: comp 122 comp: mod_a.o mod_b.o; @:
|
/ndk/sources/host-tools/make-3.81/ |
D | variable.c | 730 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()
|
D | README.DOS | 313 reported first on the comp.os.msdos.djgpp news group (if you cannot
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
D | Makefile.in | 52 $(top_srcdir)/m4/gnulib-comp.m4 $(top_srcdir)/m4/iconv.m4 \
|
/ndk/sources/host-tools/sed-4.2.1/ |
D | Makefile.in | 57 $(top_srcdir)/m4/gnulib-comp.m4 $(top_srcdir)/m4/iconv.m4 \
|
D | aclocal.m4 | 901 m4_include([m4/gnulib-comp.m4])
|
/ndk/sources/host-tools/sed-4.2.1/doc/ |
D | Makefile.in | 53 $(top_srcdir)/m4/gnulib-comp.m4 $(top_srcdir)/m4/iconv.m4 \
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | Makefile.in | 63 $(top_srcdir)/m4/gnulib-comp.m4 $(top_srcdir)/m4/iconv.m4 \
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
D | Makefile.in | 61 $(top_srcdir)/m4/gnulib-comp.m4 $(top_srcdir)/m4/iconv.m4 \
|