/external/v8/test/mjsunit/ |
D | object-seal.js | 185 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));
|
D | object-freeze.js | 175 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));
|
D | object-define-property.js | 444 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/ |
D | object-seal.js | 186 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));
|
D | accessor-map-sharing.js | 38 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));
|
D | object-freeze.js | 176 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));
|
D | object-define-property.js | 444 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/ |
D | proto-chain-constant.js | 33 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; };
|
D | proto-chain-load.js | 32 var obj4 = Object.create(null, { f4: {value: 4} }); 33 var obj3 = Object.create(obj4, { f3: {value: 3} });
|
/external/jmonkeyengine/engine/src/test/jme3test/tools/ |
D | TestTextureAtlas.java | 62 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/ |
D | RetainCountExamples.m | 123 DelegateTest *obj4 = [[DelegateTest alloc] init]; // no-warning 124 [obj4 setDelegate: d];
|
/external/clang/test/SemaObjCXX/ |
D | arc-bridged-cast.mm | 23 id obj4 = (__bridge StringType)CFGetString();
|
/external/clang/test/SemaObjC/ |
D | illegal-nonarc-bridged-cast.m | 23 id obj4 = (__bridge NSString*)CFGetString();
|
D | arc-bridged-cast.m | 25 id obj4 = (__bridge NSString*)CFGetString();
|
/external/clang/test/CodeGenObjCXX/ |
D | arc.mm | 136 id obj4 = (x0.*pmf)(); 163 id obj4 = (x0.*pmf)();
|
/external/v8/test/cctest/ |
D | test-heap-profiler.cc | 1215 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/ |
D | objc-arc.m | 144 id obj4 = (__bridge NSString*)CFGetString(); // expected-warning{{never read}} 697 // CHECK-NEXT: <string>Value stored to 'obj4' during its initialization is never rea… 699 // CHECK-NEXT: <string>Value stored to 'obj4' during its initialization is never rea… 702 // CHECK-NEXT: <key>description</key><string>Value stored to 'obj4' during its initial…
|
/external/chromium_org/v8/test/cctest/ |
D | test-heap-profiler.cc | 1623 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()
|