HomeSort by relevance Sort by last modified time
    Searched refs:is_heap (Results 1 - 25 of 52) sorted by null

1 2 3

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/is.heap/
is_heap.pass.cpp 15 // is_heap(Iter first, Iter last);
23 assert(std::is_heap(i1, i1));
24 assert(std::is_heap(i1, i1+1) == (std::is_heap_until(i1, i1+1) == i1+1));
27 assert(std::is_heap(i1, i1+2) == (std::is_heap_until(i1, i1+2) == i1+2));
28 assert(std::is_heap(i2, i2+2) == (std::is_heap_until(i2, i2+2) == i2+2));
29 assert(std::is_heap(i3, i3+2) == (std::is_heap_until(i3, i3+2) == i3+2));
37 assert(std::is_heap(i4, i4+3) == (std::is_heap_until(i4, i4+3) == i4+3));
38 assert(std::is_heap(i5, i5+3) == (std::is_heap_until(i5, i5+3) == i5+3));
39 assert(std::is_heap(i6, i6+3) == (std::is_heap_until(i6, i6+3) == i6+3));
40 assert(std::is_heap(i7, i7+3) == (std::is_heap_until(i7, i7+3) == i7+3))
    [all...]
is_heap_comp.pass.cpp 15 // is_heap(Iter first, Iter last);
24 assert(std::is_heap(i1, i1, std::greater<int>()));
25 assert(std::is_heap(i1, i1+1, std::greater<int>()) == (std::is_heap_until(i1, i1+1, std::greater<int>()) == i1+1));
28 assert(std::is_heap(i1, i1+2, std::greater<int>()) == (std::is_heap_until(i1, i1+2, std::greater<int>()) == i1+2));
29 assert(std::is_heap(i2, i2+2, std::greater<int>()) == (std::is_heap_until(i2, i2+2, std::greater<int>()) == i2+2));
30 assert(std::is_heap(i3, i3+2, std::greater<int>()) == (std::is_heap_until(i3, i3+2, std::greater<int>()) == i3+2));
38 assert(std::is_heap(i4, i4+3, std::greater<int>()) == (std::is_heap_until(i4, i4+3, std::greater<int>()) == i4+3));
39 assert(std::is_heap(i5, i5+3, std::greater<int>()) == (std::is_heap_until(i5, i5+3, std::greater<int>()) == i5+3));
40 assert(std::is_heap(i6, i6+3, std::greater<int>()) == (std::is_heap_until(i6, i6+3, std::greater<int>()) == i6+3));
41 assert(std::is_heap(i7, i7+3, std::greater<int>()) == (std::is_heap_until(i7, i7+3, std::greater<int>()) == i7+3))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/make.heap/
make_heap.pass.cpp 27 assert(std::is_heap(ia, ia+N));
make_heap_comp.pass.cpp 39 assert(std::is_heap(ia, ia+N, std::greater<int>()));
60 assert(std::is_heap(ia, ia+N, indirect_less()));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/push.heap/
push_heap.pass.cpp 30 assert(std::is_heap(ia, ia+i));
push_heap_comp.pass.cpp 42 assert(std::is_heap(ia, ia+i, std::greater<int>()));
61 assert(std::is_heap(ia, ia+i, indirect_less()));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/pop.heap/
pop_heap.pass.cpp 30 assert(std::is_heap(ia, ia+i-1));
pop_heap_comp.pass.cpp 42 assert(std::is_heap(ia, ia+i-1, std::greater<int>()));
63 assert(std::is_heap(ia, ia+i-1, indirect_less()));
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/binary_heap_/
binary_heap_.hpp 269 _GLIBCXX_DEBUG_ASSERT(is_heap());
275 if (!is_heap())
294 is_heap() function in class:__gnu_pbds::detail::binary_heap
insert_fn_imps.hpp 106 _GLIBCXX_DEBUG_ASSERT(is_heap());
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/binary_heap_/
binary_heap_.hpp 269 _GLIBCXX_DEBUG_ASSERT(is_heap());
275 if (!is_heap())
294 is_heap() function in class:__gnu_pbds::detail::binary_heap
insert_fn_imps.hpp 106 _GLIBCXX_DEBUG_ASSERT(is_heap());
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/binary_heap_/
binary_heap_.hpp 269 _GLIBCXX_DEBUG_ASSERT(is_heap());
275 if (!is_heap())
294 is_heap() function in class:__gnu_pbds::detail::binary_heap
insert_fn_imps.hpp 106 _GLIBCXX_DEBUG_ASSERT(is_heap());
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_heap.h 126 // + is_heap and is_heap_until in C++0x.
558 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) function
571 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, function
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_heap.h 128 // + is_heap and is_heap_until in C++0x.
560 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) function
573 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_heap.h 128 // + is_heap and is_heap_until in C++0x.
560 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) function
573 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, function
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_heap.h 126 // + is_heap and is_heap_until in C++0x.
558 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) function
571 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, function
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_heap.h 126 // + is_heap and is_heap_until in C++0x.
558 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) function
571 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, function
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_heap.h 126 // + is_heap and is_heap_until in C++0x.
558 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) function
571 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, function
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stl_heap.h 126 // + is_heap and is_heap_until in C++0x.
558 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) function
571 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, function
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_heap.h 128 // + is_heap and is_heap_until in C++0x.
560 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) function
573 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, function
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_heap.h 128 // + is_heap and is_heap_until in C++0x.
566 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) function
579 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, function
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_heap.h 128 // + is_heap and is_heap_until in C++0x.
560 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) function
573 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, function
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_heap.h 128 // + is_heap and is_heap_until in C++0x.
566 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) function
579 is_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, function

Completed in 517 milliseconds

1 2 3