Searched defs:obj3 (Results 1 - 11 of 11) sorted by relevance

/external/v8/test/mjsunit/compiler/
H A Dproto-chain-constant.js34 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/
H A Dobject-seal.js160 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));
H A Dobject-freeze.js150 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));
H A Dobject-define-property.js398 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
[all...]
/external/llvm/unittests/ADT/
H A DImmutableSetTest.cpp169 MyIter obj3; local
172 ASSERT_EQ(0, obj3.counter);
/external/libchrome/base/
H A Did_map_unittest.cc69 TestObject obj3; local
73 map.Add(&obj3);
154 TestObject obj3; local
158 map.Add(&obj3);
182 TestObject obj3; local
186 map.Add(&obj3);
/external/v8/test/cctest/
H A Dtest-inobject-slack-tracking.cc213 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
[all...]
H A Dtest-heap-profiler.cc1847 "var obj3 = {};\n"
1848 "obj3.__proto__ = { constructor: function Constructor3() {} };\n"
1872 v8::Local<v8::Object> obj3 = js_global->Get(env.local(), v8_str("obj3")) local
1876 i::Handle<i::JSObject>::cast(v8::Utils::OpenHandle(*obj3));
/external/google-breakpad/src/common/mac/
H A Dmacho_reader_unittest.cc318 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
/external/v8/test/mjsunit/harmony/
H A Dreflect-define-property.js372 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
[all...]
/external/guice/extensions/struts2/lib/
H A Djsp-2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/jasper/ org/apache/jasper/resources/ ...

Completed in 573 milliseconds