HomeSort by relevance Sort by last modified time
    Searched defs:obj3 (Results 1 - 18 of 18) sorted by null

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
pic-and-nonpic-4a.s 5 .global obj3
9 .type obj3,%object
13 .size obj3,16
20 obj3: label
  /external/llvm/unittests/ADT/
ImmutableSetTest.cpp 169 MyIter obj3; local
172 ASSERT_EQ(0, obj3.counter);
  /external/v8/test/mjsunit/compiler/
proto-chain-constant.js 34 var obj3 = c(obj4, { f3: { value: function() { return 3; }, writable: true }}); variable
35 var obj2 = c(obj3, { f2: { value: function() { return 2; }, writable: true }});
  /external/v8/test/mjsunit/
object-seal.js 160 var obj3 = { x: 42, y: 'foo' };
162 assertFalse(Object.isFrozen(obj3));
164 Object.defineProperty(obj3, 'x', {configurable: false, writable: true});
165 Object.defineProperty(obj3, 'y', {configurable: false, writable: false});
166 Object.preventExtensions(obj3);
168 assertTrue(Object.isSealed(obj3));
object-freeze.js 150 var obj3 = { x: 42, y: 'foo' };
152 assertFalse(Object.isFrozen(obj3));
154 Object.defineProperty(obj3, 'x', {configurable: false, writable: false});
155 Object.defineProperty(obj3, 'y', {configurable: false, writable: false});
156 Object.preventExtensions(obj3);
158 assertTrue(Object.isFrozen(obj3));
object-define-property.js 398 var obj3 = {x:1000};
399 obj3.__defineGetter__("foo", get);
400 obj3.__defineSetter__("foo", set);
402 desc = Object.getOwnPropertyDescriptor(obj3, "foo");
409 assertEquals(1, obj3.foo = 1);
410 assertEquals(1, obj3.x);
411 assertEquals(1, obj3.foo);
415 Object.defineProperty(obj3, "foo", accessorNoConfigurable);
416 desc = Object.getOwnPropertyDescriptor(obj3, "foo");
423 assertEquals(1, obj3.foo = 1)
    [all...]
  /art/runtime/
indirect_reference_table_test.cc 63 mirror::Object* obj3 = c->AllocObject(soa.Self()); local
64 ASSERT_TRUE(obj3 != nullptr);
157 IndirectRef iref3 = irt.Add(cookie, obj3);
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/util/
ListOrganizerTest.java 57 Object obj3 = new Object(); local
62 list.add(obj3);
65 assertEquals(obj3, list.getLast());
69 organizer.moveToBottom(obj3);
72 assertEquals(obj3, list.getFirst());
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
MultiArgAdapterTest.java 35 MultiBindingClass1 obj3 = new MultiBindingClass1(); local
39 obj3.setValue("c", false);
43 mBinder.setObj3(obj3);
49 assertEquals(mBinder.view3.getText().toString(), join(obj3));
63 obj3.setValue("q", false);
69 assertEquals("obj3 should not be re-evaluated", prev3, mBinder.view3.getText().toString());
78 MultiBindingClass1 obj3 = new MultiBindingClass1(); local
82 obj3.setValue("c", false);
86 mBinder.setObj3(obj3);
  /external/libchrome/base/
id_map_unittest.cc 69 TestObject obj3; local
73 map.Add(&obj3);
154 TestObject obj3; local
158 map.Add(&obj3);
182 TestObject obj3; local
186 map.Add(&obj3);
  /art/runtime/gc/accounting/
mod_union_table_test.cc 77 // ASSERT_FALSE(table->ContainsCardFor(reinterpret_cast<uintptr_t>(obj3)));
201 auto* obj3 = AllocObjectArray(self, space, CardTable::kCardSize); local
202 ASSERT_TRUE(obj3 != nullptr);
207 obj2->Set(0, obj3);
208 obj3->Set(0, obj4);
230 // obj3, obj4 don't have a reference to any object in the other space, their cards should have
232 ASSERT_FALSE(table->ContainsCardFor(reinterpret_cast<uintptr_t>(obj3)));
  /external/v8/test/cctest/
test-inobject-slack-tracking.cc 213 Handle<JSObject> obj3 = CompileRun<JSObject>("new A(3);"); local
225 CHECK_LT(5, obj3->map()->GetInObjectProperties());
226 CHECK_EQ(Smi::FromInt(42), GetFieldValue(*obj3, 0));
227 CHECK_EQ(4.2, GetDoubleFieldValue(*obj3, 1));
228 CHECK_EQ(*obj3, GetFieldValue(*obj3, 2));
230 CHECK(IsObjectShrinkable(*obj3));
242 CHECK(IsObjectShrinkable(*obj3));
248 CHECK_EQ(5, obj3->map()->GetInObjectProperties());
249 CHECK_EQ(2, obj3->map()->unused_property_fields())
    [all...]
test-heap-profiler.cc 1872 v8::Local<v8::Object> obj3 = js_global->Get(env.local(), v8_str("obj3")) local
    [all...]
  /art/test/530-checker-lse/src/
Main.java 552 TestClass obj3 = new TestClass(); local
553 obj3.i = 5; // This store can be eliminated since the singleton is created after the loop.
554 sum += obj1.i + obj3.i;
732 SubTestClass obj3 = new SubTestClass(); local
733 assertIntEquals(test14(obj3, obj3), 2);
  /external/google-breakpad/src/common/mac/
macho_reader_unittest.cc 318 Label obj1, obj2, obj3;
325 AppendFatArch(0x3717276d, 0x10ecdc84, obj3, 0x4b3, 0x035267d7);
334 .Mark(&obj3)
358 EXPECT_EQ(obj3.Value(), object_files[2].offset);
316 Label obj1, obj2, obj3; local
    [all...]
  /external/v8/test/mjsunit/harmony/
reflect-define-property.js 372 var obj3 = {x:1000};
373 obj3.__defineGetter__("foo", get);
374 obj3.__defineSetter__("foo", set);
376 desc = Object.getOwnPropertyDescriptor(obj3, "foo");
383 assertEquals(1, obj3.foo = 1);
384 assertEquals(1, obj3.x);
385 assertEquals(1, obj3.foo);
389 assertTrue(Reflect.defineProperty(obj3, "foo", accessorNoConfigurable));
390 desc = Object.getOwnPropertyDescriptor(obj3, "foo");
397 assertEquals(1, obj3.foo = 1)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
ObjectOutputStreamTest.java 1278 Object obj3; local
    [all...]
  /external/guice/extensions/struts2/lib/
jsp-2.1.jar 

Completed in 334 milliseconds