HomeSort by relevance Sort by last modified time
    Searched full:enumerable (Results 51 - 75 of 238) sorted by null

1 23 4 5 6 7 8 910

  /external/v8/test/webkit/fast/js/
Object-defineProperty-expected.txt 29 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {value:1}), 'foo')) is JSON.stringify({value: 1, writable: false, enumerable: false, configurable: false})
30 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {}), 'foo')) is JSON.stringify({writable: false, enumerable: false, configurable: false})
31 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {get:undefined}), 'foo')) is JSON.stringify({enumerable: false, configurable: false})
32 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {value:1, writable: false}), 'foo')) is JSON.stringify({value: 1, writable: false, enumerable: false, configurable: false})
33 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {value:1, writable: true}), 'foo')) is JSON.stringify({value: 1, writable: true, enumerable: false, configurable: false})
34 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {value:1, enumerable: false}), 'foo')) is JSON.stringify({value: 1, writable: false, enumerable: false, configurable: false})
35 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {value:1, enumerable: true}), 'foo')) is JSON.stringify({value: 1, writable: false, enumerable: true, configurable: false})
36 PASS JSON.stringify(Object.getOwnPropertyDescriptor(Object.defineProperty({}, 'foo', {value:1, configurable: false}), 'foo')) is JSON.stringify({value: 1, writable: false, enumerable: false, configurable: false}
    [all...]
  /external/v8/test/mjsunit/
function-prototype.js 96 // Check the prototype is not enumerable, as per ES5 section 15.3.5.2. Note
98 // would have enumerable prototypes (section 15.3.5.2 also).
107 assertFalse(desc.enumerable);
113 assertFalse(desc.enumerable);
119 assertFalse(desc.enumerable);
for-in-opt.js 45 return {value: 10, configurable: true, writable: false, enumerable: true};
96 return {value: 10, configurable: true, writable: false, enumerable: true};
146 return {value: 10, configurable: true, writable: false, enumerable: true};
  /external/v8/test/mjsunit/regress/
regress-687.js 38 assertTrue(desc.enumerable);
61 assertFalse(desc.enumerable);
72 assertTrue(desc.enumerable);
regress-merge-descriptors.js 42 enumerable: true,
72 enumerable: true,
regress-1112.js 33 { configurable: true, enumerable: true, value: 3 });
regress-1419.js 46 assertEquals(false, desc.enumerable);
  /external/v8/test/mjsunit/strong/
load-element-mutate-backing-store.js 120 {configurable: true, enumerable: true, writable: true, value: x},
121 {configurable: true, enumerable: true, get: (function() {return x}) },
180 { configurable: true, enumerable: true, set: (function(){}) }
load-element.js 118 {configurable: true, enumerable: true, writable: true, value: x},
119 {configurable: true, enumerable: true, get: (function() {return x}) },
180 { configurable: true, enumerable: true, set: (function(){}) }
load-property.js 69 {configurable: true, enumerable: true, writable: true, value: x},
70 {configurable: true, enumerable: true, get: (function() {return x}) },
128 { configurable: true, enumerable: true, set: (function(){}) }
  /external/v8/test/mjsunit/third_party/object-keys/
object-keys.js 75 enumerable: false,
83 enumerable: false,
92 enumerable: false,
  /external/v8/test/mjsunit/es6/
array-of.js 154 assertEquals(desc.enumerable, false);
199 // Check that array properties defined are writable, enumerable, configurable
205 assertEquals(true, xlength.enumerable);
210 assertEquals(true, xlength.enumerable);
iterator-prototype.js 17 assertFalse(descr.enumerable);
object-literals-property-shorthand.js 26 assertTrue(descr.enumerable);
super.js 1027 assertFalse(descr.enumerable);
1037 assertFalse(descr.enumerable);
1043 assertFalse(descr.enumerable);
1252 assertFalse(descr.enumerable);
1262 assertFalse(descr.enumerable);
1268 assertFalse(descr.enumerable);
    [all...]
function-length-configurable.js 38 assertFalse(descr.enumerable);
function-name-configurable.js 25 assertFalse(descr.enumerable);
  /external/v8/test/mjsunit/harmony/
regexp-flags.js 16 assertFalse(descriptor.enumerable);
species.js 23 assertFalse(descriptor.enumerable);
proxies-define-property.js 20 var desc = { value: 1, writable: true, configurable: true, enumerable: true }; property in class:desc
68 desc = {value: 1, writable: true, configurable: false, enumerable: true}; property in class:desc
proxies-json.js 54 return { enumerable: true, configurable: true };
91 return { enumerable: true, configurable: true };
116 return { enumerable: true, configurable: true };
139 return { enumerable: false };
162 return { enumerable: true };
183 return { enumerable: true };
205 return { enumerable: true, configurable: true };
487 {value: 5, configurable: true, writable: true, enumerable: true}], log[3]);
reflect-enumerate-opt.js 46 return {value: 10, configurable: true, writable: false, enumerable: true};
  /external/v8/test/webkit/
array-defineOwnProperty.js 36 // The length property can be replaced with an accessor, or made either enumerable or configurable.
38 shouldThrow("Object.defineProperty([], 'length', { enumerable: true })");
44 // An indexed property can be made non-writable/enumerable/configurable.
46 shouldBe("var a = Object.defineProperty([42], '0', { enumerable: false }); a[0] + Object.keys(a).length", '42');
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
std_vector.i 37 %mixin std::vector "Enumerable";
  /external/v8/test/webkit/fast/regex/
lastIndex-expected.txt 35 PASS Object.defineProperty(/x/, 'lastIndex', {enumerable:true}); true threw exception TypeError: Cannot redefine property: lastIndex.
36 PASS Object.defineProperty(/x/, 'lastIndex', {enumerable:false}); true is true

Completed in 258 milliseconds

1 23 4 5 6 7 8 910