Searched defs:tmpA (Results 1 - 1 of 1) sorted by relevance

/dalvik/libcore/luni/src/test/java/tests/api/java/lang/ref/
H A DReferenceTest.java35 Object tmpA, tmpB, tmpC, obj; field in class:ReferenceTest
89 tmpA = tmpB = obj = null;
102 tmpA = new Object();
105 SoftReference sr = new SoftReference(tmpA, new ReferenceQueue());
117 // Must reference tmpA and tmpB so the jit does not optimize them away
118 assertTrue("should always pass", tmpA != sr.get() && tmpB != wr.get());

Completed in 142 milliseconds