/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/ |
increment.pass.cpp | 28 std::ostreambuf_iterator<char>& iref2 = i++; local 29 assert(&iref2 == &i); 36 std::ostreambuf_iterator<wchar_t>& iref2 = i++; local 37 assert(&iref2 == &i);
|
/dalvik/vm/test/ |
TestIndirectRefTable.cpp | 66 IndirectRef iref0, iref1, iref2, iref3; local 92 iref2 = irt.add(cookie, obj2); 93 if (iref0 == NULL || iref1 == NULL || iref2 == NULL) { 100 irt.get(iref2) != obj2) { 102 irt.get(iref0), irt.get(iref1), irt.get(iref2), 111 !irt.remove(cookie, iref2)) 135 iref2 = irt.add(cookie, obj2); 136 if (iref0 == NULL || iref1 == NULL || iref2 == NULL) { 141 if (!irt.remove(cookie, iref2) || 162 iref2 = irt.add(cookie, obj2) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostream.iterator/ostream.iterator.ops/ |
increment.pass.cpp | 27 std::ostream_iterator<int>& iref2 = i++; local 28 assert(&iref2 == &i);
|
/art/runtime/ |
indirect_reference_table_test.cc | 75 IndirectRef iref2 = irt.Add(cookie, obj2); local 76 EXPECT_TRUE(iref2 != NULL); 81 EXPECT_EQ(obj2, irt.Get(iref2)); 87 EXPECT_TRUE(irt.Remove(cookie, iref2)); 101 iref2 = irt.Add(cookie, obj2); 102 EXPECT_TRUE(iref2 != NULL); 105 ASSERT_TRUE(irt.Remove(cookie, iref2)); 121 iref2 = irt.Add(cookie, obj2); 122 EXPECT_TRUE(iref2 != NULL); 135 ASSERT_TRUE(irt.Remove(cookie, iref2)); [all...] |
indirect_reference_table.h | 97 * create iref1 for obj, delete iref1, create iref2 for same obj, lookup
|
/dalvik/vm/ |
IndirectRefTable.h | 83 * create iref1 for obj, delete iref1, create iref2 for same obj, lookup
|