Searched refs: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 Dreference_table.cc70 bool operator()(const mirror::Object* obj1, const mirror::Object* obj2)
77 } else if (obj2 == NULL) {
82 } else if (obj2 == kClearedJniWeakGlobal) {
87 if (obj1->GetClass() != obj2->GetClass()) {
88 return obj1->GetClass()->IdentityHashCode() < obj2->IdentityHashCode();
92 size_t count2 = obj2->SizeOf();
97 return obj1->IdentityHashCode() < obj2->IdentityHashCode();
H A Dindirect_reference_table_test.cc56 mirror::Object* obj2 = c->AllocObject(soa.Self()); local
57 ASSERT_TRUE(obj2 != NULL);
75 IndirectRef iref2 = irt.Add(cookie, obj2);
81 EXPECT_EQ(obj2, irt.Get(iref2));
101 iref2 = irt.Add(cookie, obj2);
121 iref2 = irt.Add(cookie, obj2);
150 iref2 = irt.Add(cookie, obj2);
H A Djni_internal.cc902 static jboolean IsSameObject(JNIEnv* env, jobject obj1, jobject obj2) { argument
903 if (obj1 == obj2) {
907 return (soa.Decode<Object*>(obj1) == soa.Decode<Object*>(obj2)) ? JNI_TRUE : JNI_FALSE;
/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.cc677 jint my_gettext(JNIEnv* env, jclass klass, jlong val1, jobject obj1, jlong val2, jobject obj2) { argument
680 EXPECT_TRUE(env->IsSameObject(JniCompilerTest::jobj_, obj2));

Completed in 204 milliseconds