/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/ |
pic-and-nonpic-4a.s | 4 .global obj2 8 .type obj2,%object 12 .size obj2,4 18 obj2: label
|
pic-and-nonpic-4b.s | 9 .word obj2 12 .word obj2
|
pic-and-nonpic-5b.s | 8 .word obj2
|
/art/runtime/ |
jobject_comparator.cc | 36 Handle<mirror::Object> obj2(hs.NewHandle(soa.Decode<mirror::Object*>(jobj2))); 39 } else if (obj2.Get() == nullptr) { 43 if (obj1->GetClass() != obj2->GetClass()) { 44 return obj1->GetClass()->IdentityHashCode() < obj2->GetClass()->IdentityHashCode(); 48 const size_t count2 = obj2->SizeOf(); 53 return obj1->IdentityHashCode() < obj2->IdentityHashCode();
|
/art/test/088-monitor-verification/src/ |
TwoPath.java | 33 public static void twoPath(Object obj1, Object obj2, int x) { 39 synchronized(obj2) { 41 localObj = obj2;
|
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
XBooleanStatic.java | 52 * @param obj2 Object to compare to this 58 public boolean equals(XObject obj2) 62 return m_val == obj2.bool();
|
XBoolean.java | 143 * @param obj2 Object to compare to this 149 public boolean equals(XObject obj2) 155 if (obj2.getType() == XObject.CLASS_NODESET) 156 return obj2.equals(this); 160 return m_val == obj2.bool();
|
XObject.java | 531 * @param obj2 Object to compare this to 537 public boolean lessThan(XObject obj2) 546 if (obj2.getType() == XObject.CLASS_NODESET) 547 return obj2.greaterThan(this); 549 return this.num() < obj2.num(); 555 * @param obj2 Object to compare this to 561 public boolean lessThanOrEqual(XObject obj2) 570 if (obj2.getType() == XObject.CLASS_NODESET) 571 return obj2.greaterThanOrEqual(this); 573 return this.num() <= obj2.num() [all...] |
XNull.java | 122 * @param obj2 Object to compare this to 126 public boolean equals(XObject obj2) 128 return obj2.getType() == CLASS_NULL;
|
XRTreeFrag.java | 249 * @param obj2 Object to compare this to 255 public boolean equals(XObject obj2) 260 if (XObject.CLASS_NODESET == obj2.getType()) 266 return obj2.equals(this); 268 else if (XObject.CLASS_BOOLEAN == obj2.getType()) 270 return bool() == obj2.bool(); 272 else if (XObject.CLASS_NUMBER == obj2.getType()) 274 return num() == obj2.num(); 276 else if (XObject.CLASS_NODESET == obj2.getType()) 278 return xstr().equals(obj2.xstr()) [all...] |
/external/jdiff/src/jdiff/ |
CompareClassPdiffs.java | 16 public int compare(Object obj1, Object obj2){ 18 ClassDiff c2 = (ClassDiff)obj2;
|
ComparePkgPdiffs.java | 16 public int compare(Object obj1, Object obj2){ 18 PackageDiff p2 = (PackageDiff)obj2;
|
/external/v8/test/mjsunit/ |
compare-objects.js | 64 var obj2 = {toString: function() {return "2";}}; 66 var less = obj1 < obj2; 67 var greater = obj1 > obj2; 69 test(obj1, obj2, less, greater); 70 test(obj1, obj2, less, greater); 71 test(obj1, obj2, less, greater); 73 test(obj1, obj2, less, greater); 74 test(obj1, obj2, less, greater); 77 test(obj1, obj2, less, greater); 79 obj2.y = 2 [all...] |
object-prevent-extensions.js | 49 var obj2 = {}; variable 50 assertTrue(Object.isExtensible(obj2)); 51 obj2.x = 42; 52 assertEquals(42, obj2.x); 53 assertTrue(Object.isExtensible(obj2)); 55 Object.preventExtensions(obj2); 56 assertEquals(42, obj2.x); 58 obj2.y = 42; 59 // obj2.y should still be undefined. 60 assertEquals(undefined, obj2.y) [all...] |
accessor-map-sharing.js | 38 var obj1, obj2, obj3, obj4; 43 obj2 = {}; 44 dp(obj2, "alpha", { get: getter }); 45 assertTrue(%HaveSameMap(obj1, obj2)); 51 obj2 = {}; 52 obj2.__defineGetter__("bravo", getter); 53 assertEquals(getter, obj2.__lookupGetter__("bravo")); 54 assertTrue(%HaveSameMap(obj1, obj2)); 59 obj2 = {}; 60 dp(obj2, "charlie", { set: setter }) [all...] |
/external/v8/test/js-perf-test/Object/ |
assign.js | 20 var obj2; variable 27 obj2 = {}; 28 src1 = { id: "6930530530", obj1: obj1, obj2: obj2 }; property in class:src1 38 object.obj2 === obj2; 46 obj2 = {}; 49 src3 = { obj2: obj2 }; property in class:src3 59 object.obj2 === src3 70 src3 = { obj1: obj1, obj2: obj2 }; property in class:src3 [all...] |
/external/v8/test/mjsunit/harmony/ |
reflect-prevent-extensions.js | 50 var obj2 = {}; variable 51 assertTrue(Object.isExtensible(obj2)); 52 obj2.x = 42; 53 assertEquals(42, obj2.x); 54 assertTrue(Object.isExtensible(obj2)); 56 assertTrue(Reflect.preventExtensions(obj2)); 57 assertEquals(42, obj2.x); 59 obj2.y = 42; 60 // obj2.y should still be undefined. 61 assertEquals(undefined, obj2.y) [all...] |
/art/test/530-checker-lse/src/ |
Main.java | 102 static int test1(TestClass obj1, TestClass obj2) { 104 obj2.j = 2; 105 return obj1.i + obj2.j; 156 TestClass obj2 = new TestClass(); // Cannot alias with obj or obj1 which pre-exist. local 157 obj.next = obj2; // Make obj2 a non-singleton. 158 // All stores below need to stay since obj/obj1/obj2 are not singletons. 162 obj2.i = 3; 163 obj2.j = 4; 164 return obj.i + obj1.j + obj2.i + obj2.j 287 TestClass obj2 = new TestClass(); local 548 TestClass obj2 = new TestClass(); local 681 TestClass obj2 = null; local 712 TestClass obj2 = new TestClass(); local [all...] |
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/ |
BasicDependantBindingTest.java | 49 for (NotBindableVo obj2 : obj2s) { 51 testWith(obj1, obj2); 54 testWith(obj1, obj2); 59 private void testWith(NotBindableVo obj1, NotBindableVo obj2) { 61 mBinder.setObj2(obj2); 63 assertValues(safeGet(obj1), safeGet(obj2), 64 obj1 == null ? "" : obj1.mergeStringFields(obj2), 65 obj2 == null ? "" : obj2.mergeStringFields(obj1), 67 + (obj2 == null ? null : obj2.getStringValue() [all...] |
MultiArgAdapterEvaluationTest.java | 35 MultiBindingClass2 obj2 = new MultiBindingClass2(); local 37 obj2.setValue("b", false); 39 mBinder.setObj2(obj2); 42 assertEquals(mBinder.merged.getText().toString(), join(obj1.getValue(), obj2.getValue())); 43 assertEquals(mBinder.view2.getText().toString(), join(obj2.getValue())); 44 assertEquals(mBinder.view2text.getText().toString(), obj2.getValue()); 51 obj2.setValue("p", false); 54 // now invalidate obj1 only, obj2 should be evaluated as well 57 assertEquals(join(obj1, obj2), mBinder.merged.getText().toString()); 58 assertEquals("obj2 should not be re-evaluated", prev2, mBinder.view2.getText().toString()) [all...] |
MultiArgAdapterTest.java | 34 MultiBindingClass2 obj2 = new MultiBindingClass2(); local 38 obj2.setValue("b", false); 42 mBinder.setObj2(obj2); 47 assertEquals(mBinder.merged.getText().toString(), join(obj1, obj2)); 48 assertEquals(mBinder.view2.getText().toString(), join(obj2)); 56 obj2.setValue("p", false); 59 // now invalidate obj1 only, obj2 should be evaluated as well 66 assertEquals(join(obj1, obj2), mBinder.merged.getText().toString()); 67 assertEquals("obj2 should not be re-evaluated", prev2, mBinder.view2.getText().toString()); 77 MultiBindingClass2 obj2 = new MultiBindingClass2() local [all...] |
/external/v8/test/mjsunit/regress/ |
regress-4534.js | 14 obj2 = {}; 15 dp(obj2, "golf", { get: getter, configurable: true }); 16 dp(obj2, "golf", { set: setter, configurable: true }); 17 assertTrue(%HaveSameMap(obj1, obj2));
|
regress-crbug-417508.js | 22 var obj2 = {}; variable 23 Object.defineProperty(obj2, "value", 26 try { bar(obj2); } catch(e) {} 27 try { bar(obj2); } catch(e) {} 29 try { bar(obj2); } catch(e) {}
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/ |
ReverseComparator.java | 49 * @param obj2 The second object to compare 53 public int compare(T obj1, T obj2) { 54 return delegate.compare(obj2, obj1); // parameters switched round
|
/external/apache-http/src/org/apache/http/util/ |
LangUtils.java | 68 public static boolean equals(final Object obj1, final Object obj2) { 69 return obj1 == null ? obj2 == null : obj1.equals(obj2);
|