Searched refs:i237 (Results 1 - 4 of 4) sorted by relevance

/external/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/
H A Dis_heap_until.pass.cpp379 int i237[] = {1, 1, 1, 0, 1, 0, 1}; local
506 assert(std::is_heap_until(i237, i237+7) == i237+7);
H A Dis_heap.pass.cpp379 int i237[] = {1, 1, 1, 0, 1, 0, 1}; local
506 assert(std::is_heap(i237, i237+7) == (std::is_heap_until(i237, i237+7) == i237+7));
H A Dis_heap_until_comp.pass.cpp380 int i237[] = {1, 1, 1, 0, 1, 0, 1}; local
507 assert(std::is_heap_until(i237, i237+7, std::greater<int>()) == i237+3);
H A Dis_heap_comp.pass.cpp380 int i237[] = {1, 1, 1, 0, 1, 0, 1}; local
507 assert(std::is_heap(i237, i237+7, std::greater<int>()) == (std::is_heap_until(i237, i237+7, std::greater<int>()) == i237+7));

Completed in 32 milliseconds