/external/v8/test/mjsunit/regress/ |
regress-1513.js | 37 enumerable: false,
|
regress-270142.js | 43 assertFalse(descriptor.enumerable);
|
regress-900.js | 45 assertFalse(desc['enumerable']);
|
regress-function-length-strict.js | 39 assertFalse(desc.enumerable);
|
cross-script-vars.js | 117 ' enumerable: true, ' + 128 ' enumerable: true, ' + 145 ' enumerable: true, configurable: true' + 156 ' enumerable: true, configurable: true' +
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
apply-preserving-inline-style.js | 38 descriptor.enumerable = true; 94 enumerable: false, 105 enumerable: false,
|
/external/v8/test/mjsunit/ |
array-shift.js | 110 // Check that non-enumerable elements are treated appropriately 113 Object.defineProperty(array, '1', {enumerable: false}); 119 Object.defineProperty(array.__proto__, '1', {enumerable: false});
|
object-freeze.js | 183 // Test that the enumerable attribute is unperturbed by freezing. 185 Object.defineProperty(obj, 'y', {enumerable: false}); 189 assertTrue(desc.enumerable); 191 assertFalse(desc.enumerable); 238 enumerable: true 276 enumerable: true 297 enumerable: true
|
object-seal.js | 258 // Test that the enumerable attribute is unperturbed by sealing. 260 Object.defineProperty(obj, 'y', {enumerable: false}); 265 assertTrue(desc.enumerable); 267 assertFalse(desc.enumerable); 320 enumerable: true 358 enumerable: true 379 enumerable: true
|
array-unshift.js | 213 // Check that non-enumerable elements are treated appropriately 216 Object.defineProperty(array, '1', {enumerable: false}); 223 Object.defineProperty(array.__proto__, '1', {enumerable: false});
|
global-properties.js | 44 enumerable: false,
|
/external/v8/test/mjsunit/es6/ |
array-from.js | 164 // Check that array properties defined are writable, enumerable, configurable 170 assertEquals(true, xlength.enumerable); 175 assertEquals(true, xlength.enumerable);
|
object-literals-method.js | 36 assertTrue(desc.enumerable); 208 assertTrue(desc.enumerable); 225 assertFalse(desc.enumerable);
|
symbols.js | 282 // Set the odd symbols via defineProperty (as non-enumerable). 338 assertEquals(i % 2 == 0, desc.enumerable) 375 properties, symbols[i], {value: {value: i}, enumerable: i % 2 === 0}) 389 properties, symbols[i], {value: {value: i}, enumerable: i % 2 === 0}) 456 assertFalse(desc.enumerable)
|
/external/v8/test/webkit/fast/js/ |
arguments.js | 618 shouldBe("descriptor.enumerable", 'true'); 676 shouldBeTrue(String( Object.getOwnPropertyDescriptor(arguments, 0).enumerable )); 679 shouldBeTrue(String( Object.getOwnPropertyDescriptor(arguments, 0).enumerable )); 680 Object.defineProperty(arguments, 0, { enumerable: false }); 682 shouldBeFalse(String( Object.getOwnPropertyDescriptor(arguments, 0).enumerable )); 688 shouldBeFalse(String( Object.getOwnPropertyDescriptor(arguments, 1).enumerable ));
|
/external/v8/src/js/ |
json.js | 34 var desc = {value: v, enumerable: true, writable: true, configurable: true}; property in class:CreateDataProperty.desc 244 // Set up non-enumerable properties of the JSON object. 263 // Set up non-enumerable functions of the Date prototype object.
|
v8natives.js | 114 // Set up non-enumerable function on the global object. 257 %AddNamedProperty(obj, "enumerable", desc.isEnumerable(), NONE); 272 if ("enumerable" in obj) { 273 desc.setEnumerable(TO_BOOLEAN(obj.enumerable)); 371 "setEnumerable", function PropertyDescriptor_SetEnumerable(enumerable) { 372 this.enumerable_ = enumerable; 627 // Send flags - enumerable and configurable are common - writable is 629 // Take special care if enumerable and configurable is not defined on 868 // Set up non-enumerable functions on the Object.prototype object. 884 // Set up non-enumerable functions in the Object object [all...] |
weak-collection.js | 109 // Set up the non-enumerable functions on the WeakMap prototype object. 183 // Set up the non-enumerable functions on the WeakSet prototype object.
|
/external/v8/src/ |
property.cc | 17 os << (((attributes & DONT_ENUM) == 0) ? "E" : "_"); // enumerable
|
/external/v8/test/intl/break-iterator/ |
property-override.js | 35 // enumerable: false
|
/external/v8/test/intl/collator/ |
property-override.js | 35 // enumerable: false
|
/external/v8/test/intl/date-format/ |
property-override.js | 35 // enumerable: false
|
/external/v8/test/intl/number-format/ |
property-override.js | 35 // enumerable: false
|
/external/v8/test/mjsunit/strong/ |
object-delete.js | 181 {configurable: true, enumerable: true, writable: true, value: "bar"}, 182 {configurable: true, enumerable: true, writable: true, value: 1},
|
/external/v8/test/webkit/ |
array-defineOwnProperty-expected.txt | 35 PASS Object.defineProperty([], 'length', { enumerable: true }) threw exception TypeError: Cannot redefine property: length. 40 PASS var a = Object.defineProperty([42], '0', { enumerable: false }); a[0] + Object.keys(a).length is 42
|