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

/art/runtime/
H A Djobject_comparator.cc35 mirror::Object* obj2 = soa.Decode<mirror::Object*>(jobj2); local
38 } else if (obj2 == NULL) {
42 if (obj1->GetClass() != obj2->GetClass()) {
43 return obj1->GetClass()->IdentityHashCode() < obj2->IdentityHashCode();
47 size_t count2 = obj2->SizeOf();
52 return obj1->IdentityHashCode() < obj2->IdentityHashCode();
H A Dindirect_reference_table_test.cc57 mirror::Object* obj2 = c->AllocObject(soa.Self()); local
58 ASSERT_TRUE(obj2 != NULL);
76 IndirectRef iref2 = irt.Add(cookie, obj2);
82 EXPECT_EQ(obj2, irt.Get(iref2));
102 iref2 = irt.Add(cookie, obj2);
122 iref2 = irt.Add(cookie, obj2);
151 iref2 = irt.Add(cookie, obj2);
H A Dreference_table.cc77 mirror::Object* obj2 = root2.Read<kWithoutReadBarrier>(); variable
81 } else if (obj2 == NULL) {
86 } else if (obj2 == kClearedJniWeakGlobal) {
91 if (obj1->GetClass() != obj2->GetClass()) {
92 return obj1->GetClass()->IdentityHashCode() < obj2->IdentityHashCode();
96 size_t count2 = obj2->SizeOf();
101 return obj1->IdentityHashCode() < obj2->IdentityHashCode();
H A Djni_internal.cc867 static jboolean IsSameObject(JNIEnv* env, jobject obj1, jobject obj2) { argument
868 if (obj1 == obj2) {
872 return (soa.Decode<mirror::Object*>(obj1) == soa.Decode<mirror::Object*>(obj2))
/art/test/088-monitor-verification/src/
H A DMain.java51 Object obj2 = new Object();
53 m.twoPath(obj1, obj2, 0);
56 m.triplet(obj1, obj2, 0);
182 public void twoPath(Object obj1, Object obj2, int x) { argument
186 synchronized(obj2) {
188 localObj = obj2;
202 public void triplet(Object obj1, Object obj2, int x) { argument
209 localObj = obj2;
/art/test/MyClassNatives/
H A DMyClassNatives.java35 static native int getText(long val1, Object obj1, long val2, Object obj2); argument
/art/compiler/jni/
H A Djni_compiler_test.cc906 jint my_gettext(JNIEnv* env, jclass klass, jlong val1, jobject obj1, jlong val2, jobject obj2) { argument
909 EXPECT_TRUE(env->IsSameObject(JniCompilerTest::jobj_, obj2));

Completed in 734 milliseconds