/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/is.heap/ |
is_heap_until.pass.cpp | 50 int i17[] = {0, 1, 1, 0}; local 65 assert(std::is_heap_until(i17, i17+4) == i17+1);
|
is_heap.pass.cpp | 50 int i17[] = {0, 1, 1, 0}; local 65 assert(std::is_heap(i17, i17+4) == (std::is_heap_until(i17, i17+4) == i17+4));
|
is_heap_until_comp.pass.cpp | 51 int i17[] = {0, 1, 1, 0}; local 66 assert(std::is_heap_until(i17, i17+4, std::greater<int>()) == i17+3);
|
is_heap_comp.pass.cpp | 51 int i17[] = {0, 1, 1, 0}; local 66 assert(std::is_heap(i17, i17+4, std::greater<int>()) == (std::is_heap_until(i17, i17+4, std::greater<int>()) == i17+4)); [all...] |
/external/chromium/base/ |
values_unittest.cc | 499 scoped_ptr<Value> i17(Value::CreateIntegerValue(17)); 503 EXPECT_FALSE(Value::Equals(i42.get(), i17.get()));
|
/external/chromium_org/base/ |
values_unittest.cc | 543 scoped_ptr<Value> i17(new FundamentalValue(17)); 547 EXPECT_FALSE(Value::Equals(i42.get(), i17.get()));
|
/art/test/083-compiler-regressions/src/ |
Main.java | 284 int i17 = 17; local [all...] |