HomeSort by relevance Sort by last modified time
    Searched refs:DONT_DELETE (Results 1 - 23 of 23) sorted by null

  /external/v8/test/mjsunit/regress/
regress-334.js 34 var DONT_DELETE = 4;
40 %AddNamedProperty(object, "foo", func1, DONT_ENUM | DONT_DELETE);
42 %AddNamedProperty(object, "baz", func1, DONT_DELETE | READ_ONLY);
43 %AddNamedProperty(object.__proto__, "bif", func1, DONT_ENUM | DONT_DELETE);
regress-70066.js 135 // Delete on a DONT_DELETE property of the global object.
  /external/v8/src/
property.cc 19 os << (((attributes & DONT_DELETE) == 0) ? "C" : "_"); // configurable
property-details.h 20 DONT_DELETE = ::v8::DontDelete,
22 ALL_ATTRIBUTES_MASK = READ_ONLY | DONT_ENUM | DONT_DELETE,
24 SEALED = DONT_DELETE,
48 STATIC_ASSERT(ONLY_CONFIGURABLE == static_cast<PropertyFilter>(DONT_DELETE));
337 bool IsConfigurable() const { return (attributes() & DONT_DELETE) == 0; }
property-descriptor.h 109 (has_configurable() && !configurable() ? DONT_DELETE : NONE) |
bootstrapper.cc 496 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
655 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE);
657 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
715 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY))
    [all...]
elements.cc     [all...]
objects.cc     [all...]
  /external/v8/test/mjsunit/
delete-global-properties.js 31 assertFalse(delete tmp); // should be DONT_DELETE
34 assertFalse(delete f); // should be DONT_DELETE
  /external/v8/src/js/
templates.js 74 READ_ONLY | DONT_ENUM | DONT_DELETE);
prologue.js 79 var attributes = DONT_ENUM | DONT_DELETE | READ_ONLY;
158 UNDEFINED, DONT_ENUM | DONT_DELETE);
164 %AddNamedProperty(prototype, key, f, DONT_ENUM | DONT_DELETE | READ_ONLY);
regexp.js     [all...]
macros.py 34 define DONT_DELETE = 4;
typedarray.js 838 READ_ONLY | DONT_ENUM | DONT_DELETE);
844 READ_ONLY | DONT_ENUM | DONT_DELETE);
v8natives.js 94 var attributes = DONT_ENUM | DONT_DELETE | READ_ONLY;
messages.js 168 DONT_ENUM | DONT_DELETE | READ_ONLY);
  /external/v8/src/runtime/
runtime-utils.h 121 (args.smi_at(index) & ~(READ_ONLY | DONT_ENUM | DONT_DELETE)) == 0); \
runtime-scopes.cc 72 if ((old_attributes & DONT_DELETE) != 0) {
148 if (!is_eval) attr |= DONT_DELETE;
190 static_cast<PropertyAttributes>(DONT_DELETE | READ_ONLY);
195 if ((old_attributes & DONT_DELETE) != 0) {
625 if ((maybe.FromJust() & DONT_DELETE) != 0) {
840 // If the slot was found in a context, it should be DONT_DELETE.
847 // (respecting DONT_DELETE).
    [all...]
runtime-classes.cc 138 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
  /external/v8/test/cctest/
test-transitions.cc 203 const int ATTRS_COUNT = (READ_ONLY | DONT_ENUM | DONT_DELETE) + 1;
265 const int ATTRS_COUNT = (READ_ONLY | DONT_ENUM | DONT_DELETE) + 1;
  /external/v8/test/mjsunit/es6/
array-iterator.js 34 var DONT_DELETE = 4;
42 assertEquals(desc.configurable, !(attrs & DONT_DELETE));
  /external/v8/src/wasm/
wasm-js.cc 402 static_cast<PropertyAttributes>(DONT_DELETE | READ_ONLY);
437 static_cast<PropertyAttributes>(DONT_DELETE | READ_ONLY);
  /external/v8/src/debug/
mirrors.js 253 PropertyAttribute.DontDelete = DONT_DELETE;
    [all...]

Completed in 827 milliseconds