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

  /external/v8/test/mjsunit/regress/
regress-91517.js 74 obj3 = new Object3();
77 %SetHiddenPrototype(obj4, obj3);
78 %SetHiddenPrototype(obj3, obj2);
  /external/v8/test/mjsunit/
object-freeze.js 158 var obj3 = { x: 42, y: 'foo' };
160 assertFalse(Object.isFrozen(obj3));
162 Object.defineProperty(obj3, 'x', {configurable: false, writable: false});
163 Object.defineProperty(obj3, 'y', {configurable: false, writable: false});
164 Object.preventExtensions(obj3);
166 assertTrue(Object.isFrozen(obj3));
object-seal.js 168 var obj3 = { x: 42, y: 'foo' };
170 assertFalse(Object.isFrozen(obj3));
172 Object.defineProperty(obj3, 'x', {configurable: false, writable: true});
173 Object.defineProperty(obj3, 'y', {configurable: false, writable: false});
174 Object.preventExtensions(obj3);
176 assertTrue(Object.isSealed(obj3));
object-define-property.js 392 var obj3 = {x:1000};
393 obj3.__defineGetter__("foo", get);
394 obj3.__defineSetter__("foo", set);
396 desc = Object.getOwnPropertyDescriptor(obj3, "foo");
403 assertEquals(1, obj3.foo = 1);
404 assertEquals(1, obj3.x);
405 assertEquals(1, obj3.foo);
409 Object.defineProperty(obj3, "foo", accessorNoConfigurable);
410 desc = Object.getOwnPropertyDescriptor(obj3, "foo");
417 assertEquals(1, obj3.foo = 1)
    [all...]
  /dalvik/vm/test/
TestIndirectRefTable.cpp 41 Object* obj3 = dvmAllocObject(clazz, ALLOC_DONT_TRACK); local
173 iref3 = irt.add(cookie, obj3);
  /external/chromium/base/
id_map_unittest.cc 64 TestObject obj3; local
68 map.Add(&obj3);
  /external/llvm/unittests/ADT/
ImmutableSetTest.cpp 169 MyIter obj3; local
172 ASSERT_EQ(0, obj3.counter);
  /external/apache-harmony/auth/src/test/java/common/javax/security/auth/
SubjectTest.java 538 private void equalsTest(Object obj1, Object obj2, Object obj3) {
542 if (obj1 == obj2 || obj1 == obj3 || obj2 == obj3) {
555 assertTrue(obj2.equals(obj3));
556 assertTrue(obj1.equals(obj3));
559 assertTrue(obj3.equals(obj1));
560 assertTrue(obj3.equals(obj1));
1561 Object obj3 = new Object(); local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
ObjectOutputStreamTest.java 1270 Object obj3; local
    [all...]
  /external/v8/test/cctest/
test-api.cc 4991 v8::Handle<v8::Object> obj3 = templ3->GetFunction()->NewInstance(); local
11872 v8::Handle<v8::Object> obj3 = v8::Object::New(); local
11884 v8::Handle<v8::Object> obj3 = v8::Object::New(); local
    [all...]

Completed in 263 milliseconds