OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:iref2
(Results
1 - 4
of
4
) sorted by null
/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);
/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);
/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
...]
/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
...]
Completed in 469 milliseconds