/external/libcxx/test/algorithms/alg.sorting/alg.sort/is.sorted/ |
D | is_sorted.pass.cpp | 29 assert(std::is_sorted(Iter(a), Iter(a))); in test() 30 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test() 36 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test() 41 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test() 46 assert(!std::is_sorted(Iter(a), Iter(a+sa))); in test() 51 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test() 57 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test() 62 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test() 67 assert(!std::is_sorted(Iter(a), Iter(a+sa))); in test() 72 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test() [all …]
|
D | is_sorted_comp.pass.cpp | 30 assert(std::is_sorted(Iter(a), Iter(a))); in test() 31 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test() 37 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test() 42 assert(!std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test() 47 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test() 52 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test() 58 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test() 63 assert(!std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test() 68 assert(!std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test() 73 assert(!std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test() [all …]
|
D | Android.mk | 27 test_name := algorithms/alg.sorting/alg.sort/is.sorted/is_sorted 28 test_src := is_sorted.pass.cpp
|
/external/libcxx/test/algorithms/alg.sorting/alg.sort/sort/ |
D | sort.pass.cpp | 34 assert(std::is_sorted(save, save+len)); in test_sort_helper() 90 assert(std::is_sorted(array, array+N)); in test_larger_sorts() 94 assert(std::is_sorted(array, array+N)); in test_larger_sorts() 97 assert(std::is_sorted(array, array+N)); in test_larger_sorts() 101 assert(std::is_sorted(array, array+N)); in test_larger_sorts() 105 assert(std::is_sorted(array, array+N)); in test_larger_sorts() 110 assert(std::is_sorted(array, array+N)); in test_larger_sorts()
|
D | sort_comp.pass.cpp | 42 assert(std::is_sorted(v.begin(), v.end())); in main() 51 assert(std::is_sorted(v.begin(), v.end(), indirect_less())); in main()
|
/external/libcxx/test/algorithms/alg.sorting/alg.sort/stable.sort/ |
D | stable_sort.pass.cpp | 34 assert(std::is_sorted(save, save+len)); in test_sort_helper() 90 assert(std::is_sorted(array, array+N)); in test_larger_sorts() 94 assert(std::is_sorted(array, array+N)); in test_larger_sorts() 97 assert(std::is_sorted(array, array+N)); in test_larger_sorts() 101 assert(std::is_sorted(array, array+N)); in test_larger_sorts() 105 assert(std::is_sorted(array, array+N)); in test_larger_sorts() 110 assert(std::is_sorted(array, array+N)); in test_larger_sorts()
|
D | stable_sort_comp.pass.cpp | 64 assert(std::is_sorted(v.begin(), v.end())); in test() 77 assert(std::is_sorted(v.begin(), v.end(), indirect_less())); in main()
|
/external/chromium_org/chrome/browser/extensions/activity_log/ |
D | hashed_ad_network_database.cc | 42 static bool is_sorted = false; in IsAdNetwork() local 43 if (!is_sorted) { in IsAdNetwork() 47 is_sorted = base::STLIsSorted(list); in IsAdNetwork() 49 DCHECK(is_sorted); in IsAdNetwork()
|
/external/libcxx/test/algorithms/alg.sorting/alg.heap.operations/sort.heap/ |
D | sort_heap_comp.pass.cpp | 40 assert(std::is_sorted(ia, ia+N, std::greater<int>())); in test() 62 assert(std::is_sorted(ia, ia+N, indirect_less())); in main()
|
D | sort_heap.pass.cpp | 28 assert(std::is_sorted(ia, ia+N)); in test()
|
/external/libcxx/test/algorithms/alg.sorting/alg.merge/ |
D | inplace_merge_comp.pass.cpp | 51 assert(std::is_sorted(ia, ia+N, std::greater<int>())); in test_one() 107 assert(std::is_sorted(ia, ia+N, indirect_less())); in main()
|
D | inplace_merge.pass.cpp | 39 assert(std::is_sorted(ia, ia+N)); in test_one()
|
D | merge_comp.pass.cpp | 47 assert(std::is_sorted(ic, ic+2*N, std::greater<int>())); in test() 69 assert(std::is_sorted(ic, ic+2*N, std::greater<int>())); in test()
|
D | merge.pass.cpp | 42 assert(std::is_sorted(ic, ic+2*N)); in test() 64 assert(std::is_sorted(ic, ic+2*N)); in test()
|
/external/stlport/stlport/stl/debug/ |
D | _list.h | 401 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(begin()._M_iterator, end()._M_iterator)) in merge() 402 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(__x.begin()._M_iterator, __x.end()._M_iterator)) in merge() 467 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(_M_non_dbg_impl.begin(), _M_non_dbg_impl.end(), __comp)) in merge() 468 _STLP_DEBUG_CHECK(_STLP_STD::is_sorted(__x.begin()._M_iterator, __x.end()._M_iterator, __comp)) in merge()
|
D | _slist.h | 534 _STLP_DEBUG_CHECK( /* _STLP_STD:: */ is_sorted(_M_non_dbg_impl.begin(), _M_non_dbg_impl.end())) in merge() 535 _STLP_DEBUG_CHECK( /* _STLP_STD:: */ is_sorted(__x.begin()._M_iterator, __x.end()._M_iterator)) in merge() 587 …_STLP_DEBUG_CHECK( /* _STLP_STD:: */ is_sorted(_M_non_dbg_impl.begin(), _M_non_dbg_impl.end(), __o… in merge() 588 …_STLP_DEBUG_CHECK( /* _STLP_STD:: */ is_sorted(__x.begin()._M_iterator, __x.end()._M_iterator, __o… in merge()
|
/external/chromium_org/ui/views/controls/table/ |
D | table_view.cc | 277 if (!is_sorted()) in ModelToView() 286 if (!is_sorted()) in ViewToModel() 438 if (previously_selected_model_index != -1 && is_sorted()) in OnItemsRemoved() 602 if (!is_sorted()) { in SortItemsAndUpdateMapping()
|
D | table_view.h | 157 bool is_sorted() const { return !sort_descriptors_.empty(); } in is_sorted() function
|
/external/stlport/stlport/stl/ |
D | _algo.h | 722 inline bool is_sorted(_ForwardIter __first, _ForwardIter __last) { in is_sorted() function 728 inline bool is_sorted(_ForwardIter __first, _ForwardIter __last, in is_sorted() function
|
/external/opencv/ml/src/ |
D | ml_inner_functions.cpp | 467 int i, idx_total, idx_selected = 0, step, type, prev = INT_MIN, is_sorted = 1; in cvPreprocessIndexArray() local 516 is_sorted = 0; in cvPreprocessIndexArray() 541 if( !is_sorted ) in cvPreprocessIndexArray()
|
/external/clang/www/ |
D | libstdc++4.4-clang0x.patch | 490 // is_sorted, a predicated testing whether a range is sorted in
|
/external/libcxx/include/ |
D | algorithm | 320 is_sorted(ForwardIterator first, ForwardIterator last); 324 is_sorted(ForwardIterator first, ForwardIterator last, Compare comp); 3562 // is_sorted 3567 is_sorted(_ForwardIterator __first, _ForwardIterator __last, _Compare __comp) 3575 is_sorted(_ForwardIterator __first, _ForwardIterator __last) 3577 …return _VSTD::is_sorted(__first, __last, __less<typename iterator_traits<_ForwardIterator>::value_…
|
/external/opencv/cxcore/src/ |
D | cxdatastructs.cpp | 2449 int is_sorted, int* _idx, void* userdata ) in cvSeqSearch() argument 2473 if( !is_sorted ) in cvSeqSearch()
|
/external/opencv/cxcore/include/ |
D | cxcore.h | 1092 int is_sorted, int* elem_idx,
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 69 assert(std::is_sorted(RawComments.begin(), RawComments.end(), in getRawCommentForDeclNoCache()
|