Home
last modified time | relevance | path

Searched refs:obj4 (Results 1 – 18 of 18) sorted by relevance

/external/v8/test/mjsunit/
Dobject-seal.js185 var obj4 = {}; variable
186 Object.defineProperty(obj4, 'x', {configurable: true, writable: false});
187 Object.defineProperty(obj4, 'y', {configurable: false, writable: false});
188 Object.preventExtensions(obj4);
190 assertFalse(Object.isSealed(obj4));
193 var obj4 = {};
194 assertTrue(obj4 === Object.seal(obj4));
Dobject-freeze.js175 var obj4 = {}; variable
176 Object.defineProperty(obj4, 'x', {configurable: false, writable: true});
177 Object.defineProperty(obj4, 'y', {configurable: false, writable: false});
178 Object.preventExtensions(obj4);
180 assertFalse(Object.isFrozen(obj4));
Dobject-define-property.js444 var obj4 = {};
446 obj4.bar = func;
447 assertEquals(42, obj4.bar());
449 Object.defineProperty(obj4, "bar", accessorConfigurable);
450 desc = Object.getOwnPropertyDescriptor(obj4, "bar");
457 assertEquals(1, obj4.bar = 1);
459 assertEquals(5, obj4.bar);
463 obj4.bar();
/external/chromium_org/v8/test/mjsunit/
Dobject-seal.js186 var obj4 = {}; variable
187 Object.defineProperty(obj4, 'x', {configurable: true, writable: false});
188 Object.defineProperty(obj4, 'y', {configurable: false, writable: false});
189 Object.preventExtensions(obj4);
191 assertFalse(Object.isSealed(obj4));
194 var obj4 = {};
195 assertTrue(obj4 === Object.seal(obj4));
Daccessor-map-sharing.js38 var obj1, obj2, obj3, obj4; variable
183 obj4 = Object.create(obj2);
184 assertTrue(%HaveSameMap(obj3, obj4));
191 obj4 = Object.create(obj2);
192 assertTrue(%HaveSameMap(obj3, obj4));
Dobject-freeze.js176 var obj4 = {}; variable
177 Object.defineProperty(obj4, 'x', {configurable: false, writable: true});
178 Object.defineProperty(obj4, 'y', {configurable: false, writable: false});
179 Object.preventExtensions(obj4);
181 assertFalse(Object.isFrozen(obj4));
Dobject-define-property.js444 var obj4 = {};
446 obj4.bar = func;
447 assertEquals(42, obj4.bar());
449 Object.defineProperty(obj4, "bar", accessorConfigurable);
450 desc = Object.getOwnPropertyDescriptor(obj4, "bar");
457 assertEquals(1, obj4.bar = 1);
459 assertEquals(5, obj4.bar);
463 obj4.bar();
/external/chromium_org/v8/test/mjsunit/compiler/
Dproto-chain-constant.js33 var obj4 = c(null, { f4: { value: function() { return 4; }, writable: true }}); variable
34 var obj3 = c(obj4, { f3: { value: function() { return 3; }, writable: true }});
45 obj4.f4 = function() { return 5; };
Dproto-chain-load.js32 var obj4 = Object.create(null, { f4: {value: 4} });
33 var obj3 = Object.create(obj4, { f3: {value: 3} });
/external/jmonkeyengine/engine/src/test/jme3test/tools/
DTestTextureAtlas.java62 Spatial obj4 = assetManager.loadModel("Models/Sinbad/Sinbad.mesh.xml"); in simpleInitApp() local
63 obj4.setLocalTranslation(2, 0, 0); in simpleInitApp()
69 scene.attachChild(obj4); in simpleInitApp()
/external/clang/test/Analysis/inlining/
DRetainCountExamples.m123 DelegateTest *obj4 = [[DelegateTest alloc] init]; // no-warning
124 [obj4 setDelegate: d];
/external/clang/test/SemaObjCXX/
Darc-bridged-cast.mm23 id obj4 = (__bridge StringType)CFGetString();
/external/clang/test/SemaObjC/
Dillegal-nonarc-bridged-cast.m23 id obj4 = (__bridge NSString*)CFGetString();
Darc-bridged-cast.m25 id obj4 = (__bridge NSString*)CFGetString();
/external/clang/test/CodeGenObjCXX/
Darc.mm136 id obj4 = (x0.*pmf)();
163 id obj4 = (x0.*pmf)();
/external/v8/test/cctest/
Dtest-heap-profiler.cc1215 v8::Local<v8::Object> obj4 = js_global->Get(v8_str("obj4")).As<v8::Object>(); in TEST() local
1216 i::Handle<i::JSObject> js_obj4 = v8::Utils::OpenHandle(*obj4); in TEST()
/external/clang/test/Analysis/
Dobjc-arc.m144 id obj4 = (__bridge NSString*)CFGetString(); // expected-warning{{never read}}
697 // CHECK-NEXT: <string>Value stored to &apos;obj4&apos; during its initialization is never rea…
699 // CHECK-NEXT: <string>Value stored to &apos;obj4&apos; during its initialization is never rea…
702 // CHECK-NEXT: <key>description</key><string>Value stored to &apos;obj4&apos; during its initial…
/external/chromium_org/v8/test/cctest/
Dtest-heap-profiler.cc1623 v8::Local<v8::Object> obj4 = js_global->Get(v8_str("obj4")).As<v8::Object>(); in TEST() local
1624 i::Handle<i::JSObject> js_obj4 = v8::Utils::OpenHandle(*obj4); in TEST()