Searched refs:i239 (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.cpp381 int i239[] = {1, 1, 1, 0, 1, 1, 1}; local
508 assert(std::is_heap_until(i239, i239+7) == i239+7);
H A Dis_heap.pass.cpp381 int i239[] = {1, 1, 1, 0, 1, 1, 1}; local
508 assert(std::is_heap(i239, i239+7) == (std::is_heap_until(i239, i239+7) == i239+7));
H A Dis_heap_until_comp.pass.cpp382 int i239[] = {1, 1, 1, 0, 1, 1, 1}; local
509 assert(std::is_heap_until(i239, i239+7, std::greater<int>()) == i239+3);
H A Dis_heap_comp.pass.cpp382 int i239[] = {1, 1, 1, 0, 1, 1, 1}; local
509 assert(std::is_heap(i239, i239+7, std::greater<int>()) == (std::is_heap_until(i239, i239+7, std::greater<int>()) == i239+7));

Completed in 50 milliseconds