HomeSort by relevance Sort by last modified time
    Searched refs:obj1 (Results 1 - 25 of 170) sorted by null

1 2 3 4 5 6 7

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
pic-and-nonpic-4a.s 3 .global obj1
7 .type obj1,%object
11 .size obj1,8
16 obj1: label
pic-and-nonpic-5a.s 8 lui $2,%hi(obj1)
9 addiu $2,$2,%lo(obj1)
15 .word obj1
pic-and-nonpic-4b.s 6 lui $2,%hi(obj1)
7 addiu $2,$2,%lo(obj1)
pic-and-nonpic-5b.s 7 .word obj1
  /external/v8/test/mjsunit/
accessor-map-sharing.js 38 var obj1, obj2, obj3, obj4; variable
41 obj1 = {};
42 dp(obj1, "alpha", { get: getter });
45 assertTrue(%HaveSameMap(obj1, obj2));
48 obj1 = {};
49 obj1.__defineGetter__("bravo", getter);
50 assertEquals(getter, obj1.__lookupGetter__("bravo"));
54 assertTrue(%HaveSameMap(obj1, obj2));
57 obj1 = {};
58 dp(obj1, "charlie", { set: setter })
    [all...]
compare-objects.js 63 var obj1 = {toString: function() {return "1";}};
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);
76 obj1.x = 1;
77 test(obj1, obj2, less, greater)
    [all...]
  /art/runtime/
jobject_comparator.cc 35 Handle<mirror::Object> obj1(hs.NewHandle(soa.Decode<mirror::Object*>(jobj1)));
37 if (obj1.Get() == nullptr) {
43 if (obj1->GetClass() != obj2->GetClass()) {
44 return obj1->GetClass()->IdentityHashCode() < obj2->GetClass()->IdentityHashCode();
47 const size_t count1 = obj1->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) {
38 synchronized (obj1) {
43 localObj = obj1;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ObjectTest.java 24 Object obj1 = new Object(); field in class:ObjectTest
48 assertTrue("Same object should be equal", obj1.equals(obj1));
49 assertTrue("Different objects should not be equal", !obj1.equals(obj2));
80 obj1.hashCode() == obj1.hashCode());
94 synchronized (obj1) {
97 obj1.wait();// Wait for ever.
122 synchronized (obj1) {
128 obj1.wait(1000, 0)
    [all...]
  /external/jdiff/src/jdiff/
CompareClassPdiffs.java 16 public int compare(Object obj1, Object obj2){
17 ClassDiff c1 = (ClassDiff)obj1;
ComparePkgPdiffs.java 16 public int compare(Object obj1, Object obj2){
17 PackageDiff p1 = (PackageDiff)obj1;
  /external/v8/test/js-perf-test/Object/
assign.js 19 var obj1; variable
26 obj1 = {};
28 src1 = { id: "6930530530", obj1: obj1, obj2: obj2 };
37 object.obj1 === obj1 &&
45 obj1 = {};
48 src2 = { obj1: obj1 };
58 object.obj1 === src2 &
    [all...]
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
BasicDependantBindingTest.java 48 for (NotBindableVo obj1 : obj1s) {
51 testWith(obj1, obj2);
54 testWith(obj1, obj2);
59 private void testWith(NotBindableVo obj1, NotBindableVo obj2) {
60 mBinder.setObj1(obj1);
63 assertValues(safeGet(obj1), safeGet(obj2),
64 obj1 == null ? "" : obj1.mergeStringFields(obj2),
65 obj2 == null ? "" : obj2.mergeStringFields(obj1),
66 (obj1 == null ? null : obj1.getStringValue()
    [all...]
MultiArgAdapterEvaluationTest.java 34 MultiBindingClass1 obj1 = new MultiBindingClass1(); local
36 obj1.setValue("a", false);
38 mBinder.setObj1(obj1);
42 assertEquals(mBinder.merged.getText().toString(), join(obj1.getValue(), obj2.getValue()));
48 obj1.setValue("o", false);
54 // now invalidate obj1 only, obj2 should be evaluated as well
55 obj1.setValue("o2", true);
57 assertEquals(join(obj1, obj2), mBinder.merged.getText().toString());
MultiArgAdapterTest.java 33 MultiBindingClass1 obj1 = new MultiBindingClass1(); local
37 obj1.setValue("a", false);
41 mBinder.setObj1(obj1);
47 assertEquals(mBinder.merged.getText().toString(), join(obj1, obj2));
53 obj1.setValue("o", false);
59 // now invalidate obj1 only, obj2 should be evaluated as well
60 obj1.notifyPropertyChanged(BR._all);
66 assertEquals(join(obj1, obj2), mBinder.merged.getText().toString());
76 MultiBindingClass1 obj1 = new MultiBindingClass1(); local
80 obj1.setValue("a", false)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_pep247.py 26 obj1 = module.new(key)
34 obj1 = module.new()
44 self.assertTrue(hasattr(obj1, 'digest_size'))
47 self.assertEqual(obj1.digest_size, module.digest_size)
49 self.assertEqual(obj1.digest_size, len(h1))
50 obj1.update('string')
51 obj_copy = obj1.copy()
52 self.assertEqual(obj1.digest(), obj_copy.digest())
53 self.assertEqual(obj1.hexdigest(), obj_copy.hexdigest())
55 digest, hexdigest = obj1.digest(), obj1.hexdigest(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_pep247.py 26 obj1 = module.new(key)
34 obj1 = module.new()
44 self.assertTrue(hasattr(obj1, 'digest_size'))
47 self.assertEqual(obj1.digest_size, module.digest_size)
49 self.assertEqual(obj1.digest_size, len(h1))
50 obj1.update('string')
51 obj_copy = obj1.copy()
52 self.assertEqual(obj1.digest(), obj_copy.digest())
53 self.assertEqual(obj1.hexdigest(), obj_copy.hexdigest())
55 digest, hexdigest = obj1.digest(), obj1.hexdigest(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pep247.py 26 obj1 = module.new(key)
34 obj1 = module.new()
44 self.assertTrue(hasattr(obj1, 'digest_size'))
47 self.assertEqual(obj1.digest_size, module.digest_size)
49 self.assertEqual(obj1.digest_size, len(h1))
50 obj1.update('string')
51 obj_copy = obj1.copy()
52 self.assertEqual(obj1.digest(), obj_copy.digest())
53 self.assertEqual(obj1.hexdigest(), obj_copy.hexdigest())
55 digest, hexdigest = obj1.digest(), obj1.hexdigest(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pep247.py 26 obj1 = module.new(key)
34 obj1 = module.new()
44 self.assertTrue(hasattr(obj1, 'digest_size'))
47 self.assertEqual(obj1.digest_size, module.digest_size)
49 self.assertEqual(obj1.digest_size, len(h1))
50 obj1.update('string')
51 obj_copy = obj1.copy()
52 self.assertEqual(obj1.digest(), obj_copy.digest())
53 self.assertEqual(obj1.hexdigest(), obj_copy.hexdigest())
55 digest, hexdigest = obj1.digest(), obj1.hexdigest(
    [all...]
  /external/v8/test/mjsunit/regress/
regress-4534.js 10 obj1 = {};
11 dp(obj1, "golf", { get: getter, configurable: true });
12 dp(obj1, "golf", { set: setter, configurable: true });
17 assertTrue(%HaveSameMap(obj1, obj2));
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/
ReverseComparator.java 48 * @param obj1 The first object to compare
53 public int compare(T obj1, T obj2) {
54 return delegate.compare(obj2, obj1); // parameters switched round
  /art/test/530-checker-lse/src/
Main.java 102 static int test1(TestClass obj1, TestClass obj2) {
103 obj1.i = 1;
105 return obj1.i + obj2.j;
155 TestClass obj1 = TestClass.sTestClassObj; local
156 TestClass obj2 = new TestClass(); // Cannot alias with obj or obj1 which pre-exist.
158 // All stores below need to stay since obj/obj1/obj2 are not singletons.
160 obj1.j = 2;
161 // Following stores won't kill values of obj.i and obj1.j.
164 return obj.i + obj1.j + obj2.i + obj2.j;
228 static int test6(TestClass obj1, TestClass obj2, boolean b)
545 TestClass obj1 = new TestClass(); local
711 TestClass obj1 = new TestClass(); local
    [all...]
  /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);
  /external/autotest/frontend/
db_router.py 95 def allow_relation(self, obj1, obj2, **hints):
99 @param obj1: First object involved in the relation.
106 if (not self._should_be_in_server_db(type(obj1)) ==
109 if (not self._should_be_in_global(type(obj1)) ==
  /external/skia/tests/
UtilsTest.cpp 51 RefClass obj1(1);
53 REPORTER_ASSERT(reporter, obj1.unique());
63 tmp[1].reset(SkRef(&obj1));
65 REPORTER_ASSERT(reporter, !obj1.unique());
71 REPORTER_ASSERT(reporter, obj1.unique());
76 tmp[1].reset(SkRef(&obj1));
81 REPORTER_ASSERT(reporter, obj1.unique());
89 tmp[1].reset(SkRef(&obj1));
91 REPORTER_ASSERT(reporter, !obj1.unique());
96 REPORTER_ASSERT(reporter, obj1.unique())
    [all...]

Completed in 1640 milliseconds

1 2 3 4 5 6 7