/external/stlport/test/unit/ |
heap_test.cpp | 41 pop_heap(numbers, numbers + 6); 43 pop_heap(numbers, numbers + 5); 45 pop_heap(numbers, numbers + 4); 47 pop_heap(numbers, numbers + 3); 49 pop_heap(numbers, numbers + 2); 51 pop_heap(numbers, numbers + 1); 60 pop_heap(numbers, numbers + 6, greater<int>()); 62 pop_heap(numbers, numbers + 5, greater<int>()); 64 pop_heap(numbers, numbers + 4, greater<int>()); 66 pop_heap(numbers, numbers + 3, greater<int>()) [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
heap_test.cpp | 41 pop_heap(numbers, numbers + 6); 43 pop_heap(numbers, numbers + 5); 45 pop_heap(numbers, numbers + 4); 47 pop_heap(numbers, numbers + 3); 49 pop_heap(numbers, numbers + 2); 51 pop_heap(numbers, numbers + 1); 60 pop_heap(numbers, numbers + 6, greater<int>()); 62 pop_heap(numbers, numbers + 5, greater<int>()); 64 pop_heap(numbers, numbers + 4, greater<int>()); 66 pop_heap(numbers, numbers + 3, greater<int>()) [all...] |
/ndk/tests/device/test-stlport/unit/ |
heap_test.cpp | 41 pop_heap(numbers, numbers + 6); 43 pop_heap(numbers, numbers + 5); 45 pop_heap(numbers, numbers + 4); 47 pop_heap(numbers, numbers + 3); 49 pop_heap(numbers, numbers + 2); 51 pop_heap(numbers, numbers + 1); 60 pop_heap(numbers, numbers + 6, greater<int>()); 62 pop_heap(numbers, numbers + 5, greater<int>()); 64 pop_heap(numbers, numbers + 4, greater<int>()); 66 pop_heap(numbers, numbers + 3, greater<int>()) [all...] |
/external/stlport/stlport/stl/ |
_heap.h | 35 // Heap-manipulation functions: push_heap, pop_heap, make_heap, sort_heap. 62 void pop_heap(_RandomAccessIterator __first, 85 pop_heap(_RandomAccessIterator __first, 102 pop_heap(__first, __last--); 112 pop_heap(__first, __last--, __comp);
|
_heap.c | 138 void pop_heap(_RandomAccessIterator __first, function 181 pop_heap(_RandomAccessIterator __first, function
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_heap.h | 35 // Heap-manipulation functions: push_heap, pop_heap, make_heap, sort_heap. 62 void pop_heap(_RandomAccessIterator __first, 85 pop_heap(_RandomAccessIterator __first, 102 pop_heap(__first, __last--); 112 pop_heap(__first, __last--, __comp);
|
_heap.c | 138 void pop_heap(_RandomAccessIterator __first, function 181 pop_heap(_RandomAccessIterator __first, function
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_heap.h | 35 // Heap-manipulation functions: push_heap, pop_heap, make_heap, sort_heap. 62 void pop_heap(_RandomAccessIterator __first, 85 pop_heap(_RandomAccessIterator __first, 102 pop_heap(__first, __last--); 112 pop_heap(__first, __last--, __comp);
|
_heap.c | 138 void pop_heap(_RandomAccessIterator __first, function 181 pop_heap(_RandomAccessIterator __first, function
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_heap.h | 35 // Heap-manipulation functions: push_heap, pop_heap, make_heap, sort_heap. 62 void pop_heap(_RandomAccessIterator __first, 85 pop_heap(_RandomAccessIterator __first, 102 pop_heap(__first, __last--); 112 pop_heap(__first, __last--, __comp);
|
_heap.c | 138 void pop_heap(_RandomAccessIterator __first, function 181 pop_heap(_RandomAccessIterator __first, function
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_heap.h | 35 // Heap-manipulation functions: push_heap, pop_heap, make_heap, sort_heap. 62 void pop_heap(_RandomAccessIterator __first, 85 pop_heap(_RandomAccessIterator __first, 102 pop_heap(__first, __last--); 112 pop_heap(__first, __last--, __comp);
|
_heap.c | 138 void pop_heap(_RandomAccessIterator __first, function 181 pop_heap(_RandomAccessIterator __first, function
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_heap.h | 35 // Heap-manipulation functions: push_heap, pop_heap, make_heap, sort_heap. 62 void pop_heap(_RandomAccessIterator __first, 85 pop_heap(_RandomAccessIterator __first, 102 pop_heap(__first, __last--); 112 pop_heap(__first, __last--, __comp);
|
_heap.c | 138 void pop_heap(_RandomAccessIterator __first, function 181 pop_heap(_RandomAccessIterator __first, function
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/ |
_heap.h | 35 // Heap-manipulation functions: push_heap, pop_heap, make_heap, sort_heap. 62 void pop_heap(_RandomAccessIterator __first, 85 pop_heap(_RandomAccessIterator __first, 102 pop_heap(__first, __last--); 112 pop_heap(__first, __last--, __comp);
|
_heap.c | 138 void pop_heap(_RandomAccessIterator __first, function 181 pop_heap(_RandomAccessIterator __first, function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/pop.heap/ |
pop_heap.pass.cpp | 15 // pop_heap(Iter first, Iter last); 29 std::pop_heap(ia, ia+i); 32 std::pop_heap(ia, ia);
|
pop_heap_comp.pass.cpp | 15 // pop_heap(Iter first, Iter last, Compare comp); 41 std::pop_heap(ia, ia+i, std::greater<int>()); 44 std::pop_heap(ia, ia, std::greater<int>()); 62 std::pop_heap(ia, ia+i, indirect_less());
|
/external/chromium_org/chrome/browser/extensions/updater/ |
request_queue_impl.h | 99 // pop_heap swaps the first and last elements of pending_requests_, and after 101 // now last/formerly first element) forms a proper heap. After pop_heap 105 // pop_heap is called (but before pop_back is called). 106 std::pop_heap(pending_requests_.begin(), pending_requests_.end(),
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/binary_heap_/ |
binary_heap_.hpp | 286 pop_heap() function in class:__gnu_pbds::detail::binary_heap 290 std::pop_heap(m_a_entries, end, m_cmp);
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/binary_heap_/ |
binary_heap_.hpp | 286 pop_heap() function in class:__gnu_pbds::detail::binary_heap 290 std::pop_heap(m_a_entries, end, m_cmp);
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/binary_heap_/ |
binary_heap_.hpp | 286 pop_heap() function in class:__gnu_pbds::detail::binary_heap 290 std::pop_heap(m_a_entries, end, m_cmp);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
algorithmfwd.h | 92 pop_heap 452 pop_heap(_RAIter, _RAIter); 456 pop_heap(_RAIter, _RAIter, _Compare);
|
stl_heap.h | 125 // Heap-manipulation functions: push_heap, pop_heap, make_heap, sort_heap, 276 pop_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) function 350 pop_heap(_RandomAccessIterator __first, function
|