HomeSort by relevance Sort by last modified time
    Searched full:dont_enum (Results 26 - 50 of 59) sorted by null

12 3

  /external/v8/src/
property-details.h 19 DONT_ENUM = ::v8::DontEnum,
22 ALL_ATTRIBUTES_MASK = READ_ONLY | DONT_ENUM | DONT_DELETE,
52 STATIC_ASSERT(ONLY_ENUMERABLE == static_cast<PropertyFilter>(DONT_ENUM));
334 bool IsDontEnum() const { return (attributes() & DONT_ENUM) != 0; }
property.cc 17 os << (((attributes & DONT_ENUM) == 0) ? "E" : "_"); // enumerable
factory.cc     [all...]
objects.cc     [all...]
  /external/v8/src/runtime/
runtime-classes.cc 157 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
168 constructor, home_object_symbol, prototype, DONT_ENUM),
177 constructor, DONT_ENUM);
222 object, name, function, DONT_ENUM));
runtime-utils.h 108 (args.smi_at(index) & ~(READ_ONLY | DONT_ENUM | DONT_DELETE)) == 0); \
runtime-object.cc 223 elms->set(ENUMERABLE_INDEX, heap->ToBoolean((attrs & DONT_ENUM) == 0));
715 return isolate->heap()->ToBoolean((maybe.FromJust() & DONT_ENUM) == 0);
    [all...]
  /external/v8/src/js/
regexp.js 524 GlobalRegExp.prototype, 'constructor', GlobalRegExp, DONT_ENUM);
527 utils.InstallFunctions(GlobalRegExp.prototype, DONT_ENUM, [
560 DONT_ENUM | DONT_DELETE);
570 DONT_ENUM | DONT_DELETE);
574 DONT_ENUM | DONT_DELETE);
578 DONT_ENUM | DONT_DELETE);
582 DONT_ENUM | DONT_DELETE);
promise.js 435 %AddNamedProperty(global, 'Promise', GlobalPromise, DONT_ENUM);
437 DONT_ENUM | READ_ONLY);
439 utils.InstallFunctions(GlobalPromise, DONT_ENUM, [
446 utils.InstallFunctions(GlobalPromise.prototype, DONT_ENUM, [
proxy.js 58 utils.InstallFunctions(GlobalProxy, DONT_ENUM, [
i18n.js 71 %AddNamedProperty(global, "Intl", Intl, DONT_ENUM);
1015 DONT_ENUM
1045 DONT_ENUM
1065 DONT_ENUM
    [all...]
messages.js 178 DONT_ENUM | DONT_DELETE | READ_ONLY);
908 %AddNamedProperty(error_function.prototype, 'name', name, DONT_ENUM);
909 %AddNamedProperty(error_function.prototype, 'message', '', DONT_ENUM);
911 error_function.prototype, 'constructor', error_function, DONT_ENUM);
921 %AddNamedProperty(this, 'message', TO_STRING(m), DONT_ENUM);
937 utils.InstallFunctions(GlobalError.prototype, DONT_ENUM,
math.js 283 %AddNamedProperty(GlobalMath, toStringTagSymbol, "Math", READ_ONLY | DONT_ENUM);
303 utils.InstallFunctions(GlobalMath, DONT_ENUM, [
string.js 1042 GlobalString.prototype, "constructor", GlobalString, DONT_ENUM);
1045 utils.InstallFunctions(GlobalString, DONT_ENUM, [
1052 utils.InstallFunctions(GlobalString.prototype, DONT_ENUM, [
macros.py 33 define DONT_ENUM = 2;
array.js     [all...]
object-observe.js 674 utils.InstallFunctions(notifierPrototype, DONT_ENUM, [
uri.js 371 utils.InstallFunctions(global, DONT_ENUM, [
  /external/v8/test/cctest/
test-transitions.cc 202 const int ATTRS_COUNT = (READ_ONLY | DONT_ENUM | DONT_DELETE) + 1;
264 const int ATTRS_COUNT = (READ_ONLY | DONT_ENUM | DONT_DELETE) + 1;
  /external/v8/src/wasm/
wasm-js.cc 321 PropertyAttributes attributes = static_cast<PropertyAttributes>(DONT_ENUM);
  /external/v8/src/debug/
mirrors.js 252 PropertyAttribute.DontEnum = DONT_ENUM;
    [all...]
debug.js     [all...]
  /external/v8/src/third_party/fdlibm/
fdlibm.js     [all...]
  /external/v8/src/compiler/
ast-graph-builder.cc     [all...]
  /external/v8/src/full-codegen/arm64/
full-codegen-arm64.cc     [all...]

Completed in 1566 milliseconds

12 3