/external/v8/test/mjsunit/compiler/ |
H A D | 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/ |
H A D | 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));
|
H A D | 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));
|
H A D | 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 [all...] |
/external/llvm/unittests/ADT/ |
H A D | ImmutableSetTest.cpp | 169 MyIter obj3; local 172 ASSERT_EQ(0, obj3.counter);
|
/external/libchrome/base/ |
H A D | 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);
|
/external/v8/test/cctest/ |
H A D | 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 [all...] |
H A D | test-heap-profiler.cc | 1850 "var obj3 = {};\n" 1851 "obj3.__proto__ = { constructor: function Constructor3() {} };\n" 1875 v8::Local<v8::Object> obj3 = js_global->Get(env.local(), v8_str("obj3")) local 1879 i::Handle<i::JSObject>::cast(v8::Utils::OpenHandle(*obj3));
|
/external/google-breakpad/src/common/mac/ |
H A D | 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
|
/external/v8/test/mjsunit/es6/ |
H A D | 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 [all...] |
/external/guice/extensions/struts2/lib/ |
H A D | jsp-2.1.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/jasper/ org/apache/jasper/resources/ ... |