Searched refs:obj3 (Results 1 - 9 of 9) sorted by relevance

/external/v8/test/mjsunit/
H A Dobject-freeze.js158 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));
H A Dobject-seal.js168 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));
H A Dobject-define-property.js392 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
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-91517.js74 obj3 = new Object3();
77 %SetHiddenPrototype(obj4, obj3);
78 %SetHiddenPrototype(obj3, obj2);
/external/chromium/base/
H A Did_map_unittest.cc64 TestObject obj3; local
68 map.Add(&obj3);
/external/llvm/unittests/ADT/
H A DImmutableSetTest.cpp169 MyIter obj3; local
172 ASSERT_EQ(0, obj3.counter);
/external/apache-harmony/auth/src/test/java/common/javax/security/auth/
H A DSubjectTest.java538 private void equalsTest(Object obj1, Object obj2, Object obj3) { argument
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();
1567 set.add(obj3);
1588 assertTrue("3 element", hash.contains(obj3));
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DObjectOutputStreamTest.java1270 Object obj3;
1284 obj3 = ois.readObject();
1294 ObjectStreamClass.class, obj3.getClass());
/external/v8/test/cctest/
H A Dtest-api.cc4991 v8::Handle<v8::Object> obj3 = templ3->GetFunction()->NewInstance(); local
4996 CHECK_EQ(3, type_switch->match(obj3));
4997 CHECK_EQ(3, type_switch->match(obj3));
11872 v8::Handle<v8::Object> obj3 = v8::Object::New(); local
11873 obj3->Set(v8_str("ee_test_field3"), v8::Int32::New(256));
11874 obj3->SetIndexedPropertiesToExternalArrayData(array_data,
11877 context->Global()->Set(v8_str("ext_array"), obj3);
11884 v8::Handle<v8::Object> obj3 = v8::Object::New(); local
11885 obj3->Set(v8_str("ee_test_field4"), v8::Int32::New(256));
11886 obj3
[all...]

Completed in 299 milliseconds