/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ |
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_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_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/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++/libcxx/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/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/ |
D | binary_search.hpp | 63 const Tp& val, Compare comp) in lower_bound() argument 75 if (comp(*middle, val)) { in lower_bound() 113 const Tp& val, Compare comp) in upper_bound() argument 125 if (comp(val, *middle)) in upper_bound() 170 Compare comp) in equal_range() argument 182 if (comp(*middle, val)) { in equal_range() 187 else if (comp(val, *middle)) in equal_range() 190 left = boost::detail::lower_bound(first, middle, val, comp); in equal_range() 192 right = boost::detail::upper_bound(++middle, first, val, comp); in equal_range() 209 Compare comp) { in binary_search() argument [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/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); 251 key_compare comp; 263 explicit multimap(const key_compare& comp); 264 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, 231 explicit multiset(const value_compare& comp); 232 multiset(const value_compare& comp, const allocator_type& a); 235 const value_compare& comp = value_compare()); 238 const value_compare& comp, const allocator_type& a); [all …]
|
D | algorithm | 324 is_sorted(ForwardIterator first, ForwardIterator last, Compare comp); 332 is_sorted_until(ForwardIterator first, ForwardIterator last, Compare comp); 340 sort(RandomAccessIterator first, RandomAccessIterator last, Compare comp); 348 stable_sort(RandomAccessIterator first, RandomAccessIterator last, Compare comp); 356 …(RandomAccessIterator first, RandomAccessIterator middle, RandomAccessIterator last, Compare comp); 366 … RandomAccessIterator result_first, RandomAccessIterator result_last, Compare comp); 374 …ent(RandomAccessIterator first, RandomAccessIterator nth, RandomAccessIterator last, Compare comp); 382 lower_bound(ForwardIterator first, ForwardIterator last, const T& value, Compare comp); 390 upper_bound(ForwardIterator first, ForwardIterator last, const T& value, Compare comp); 398 equal_range(ForwardIterator first, ForwardIterator last, const T& value, Compare comp); [all …]
|
D | forward_list | 131 template <class Compare> void merge(forward_list& x, Compare comp); 132 template <class Compare> void merge(forward_list&& x, Compare comp); 134 template <class Compare> void sort(Compare comp);
|
D | list | 142 void merge(list& x, Compare comp); 144 void merge(list&& x, Compare comp); 147 void sort(Compare comp);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/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/tests/device/test-libc++-static-full/jni/ |
D | Android.mk | 1874 $(call gen-test, iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_eq) 1875 $(call gen-test, iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_gte) 1876 $(call gen-test, iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_gt) 1877 $(call gen-test, iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_lte) 1878 $(call gen-test, iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_lt) 1879 $(call gen-test, iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_neq) 2501 $(call gen-test, numerics/numarray/template.gslice.array/gslice.array.comp.assign/addition) 2502 $(call gen-test, numerics/numarray/template.gslice.array/gslice.array.comp.assign/and) 2503 $(call gen-test, numerics/numarray/template.gslice.array/gslice.array.comp.assign/divide) 2504 $(call gen-test, numerics/numarray/template.gslice.array/gslice.array.comp.assign/modulo) [all …]
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
D | Android.mk | 1883 $(call gen-test, iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_eq) 1884 $(call gen-test, iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_gte) 1885 $(call gen-test, iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_gt) 1886 $(call gen-test, iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_lte) 1887 $(call gen-test, iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_lt) 1888 $(call gen-test, iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_neq) 2510 $(call gen-test, numerics/numarray/template.gslice.array/gslice.array.comp.assign/addition) 2511 $(call gen-test, numerics/numarray/template.gslice.array/gslice.array.comp.assign/and) 2512 $(call gen-test, numerics/numarray/template.gslice.array/gslice.array.comp.assign/divide) 2513 $(call gen-test, numerics/numarray/template.gslice.array/gslice.array.comp.assign/modulo) [all …]
|