HomeSort by relevance Sort by last modified time
    Searched refs:enumerable (Results 1 - 25 of 50) sorted by null

1 2

  /external/v8/src/
property-descriptor.h 70 bool enumerable() const { return enumerable_; } function in class:v8::internal::PropertyDescriptor
71 void set_enumerable(bool enumerable) {
72 enumerable_ = enumerable;
108 (has_enumerable() && !enumerable() ? DONT_ENUM : NONE) |
property-descriptor.cc 19 // "enumerable", other properties are handled the same way.
24 // 4. Let hasEnumerable be HasProperty(Obj, "enumerable").
30 // 6a. Let enum be ToBoolean(Get(Obj, "enumerable")).
138 isolate->heap()->ToBoolean(enumerable()));
153 isolate->heap()->ToBoolean(enumerable()));
174 factory->ToBoolean(enumerable()));
205 // enumerable?
206 Handle<Object> enumerable; local
209 &enumerable)) {
212 // 6c. Set the [[Enumerable]] field of desc to enum
    [all...]
keys.cc 118 if (!desc.enumerable()) {
137 // Postpone the enumerable check for for-in to the ForInFilter step.
443 // We have no elements but possibly enumerable property keys, hence we can
593 // If the number of properties equals the length of enumerable properties
594 // we do not have to filter out non-enumerable ones
    [all...]
objects.cc     [all...]
  /external/v8/src/js/
proxy.js 25 //Set up non-enumerable properties of the Proxy object.
weak-collection.js 107 // Set up the non-enumerable functions on the WeakMap prototype object.
181 // Set up the non-enumerable functions on the WeakSet prototype object.
v8natives.js 85 // Set up non-enumerable functions on the Object.prototype object.
string.js 283 // Set up the non-enumerable functions on the String object.
288 // Set up the non-enumerable functions on the String prototype object.
i18n.js 602 * configurable: false, writable: false, enumerable: true.
613 enumerable: true});
688 * Defines a property and sets writable and enumerable to true.
693 {value: value, writable: true, enumerable: true});
709 * Defines a property and sets writable, enumerable and configurable to true.
714 enumerable: true,
    [all...]
collection.js 264 // Set up the non-enumerable functions on the Set prototype object.
444 // Set up the non-enumerable functions on the Map prototype object.
prologue.js 120 enumerable: false });
array.js     [all...]
  /external/v8/src/inspector/
injected-script-source.js 353 if (!("enumerable" in descriptor))
354 descriptor.enumerable = false;
420 descriptor = { name: name, value: o[property], writable: false, configurable: false, enumerable: false, __proto__: null };
498 yield { name: "__proto__", value: proto, writable: true, configurable: true, enumerable: false, isOwn: true, __proto__: null };
894 enumerable: true,
    [all...]
  /external/libvncserver/webclients/novnc/include/
util.js 22 Object.defineProperty(cl.prototype, name, { enumerable: false, value: func });
  /external/v8/src/ast/
ast-traversal-visitor.h 248 RECURSE(Visit(stmt->enumerable()));
prettyprinter.cc 153 Find(node->enumerable());
839 PrintIndentedVisit("IN", node->enumerable());
    [all...]
ast-numbering.cc 470 Visit(node->enumerable()); // Not part of loop.
  /external/chromium-libpac/test/js-unittest/
pac_library_unittest.js 346 // Unfortunately Date()'s methods are non-enumerable, therefore list manually.
  /external/v8/src/parsing/
parser-base.h 5501 ExpressionT enumerable = impl()->EmptyExpression(); local
5565 ExpressionT enumerable = impl()->EmptyExpression(); local
    [all...]
  /external/v8/src/crankshaft/
hydrogen.cc 4813 HValue* enumerable = Top(); \/\/ Leave enumerable at the top. local
    [all...]
typing.cc 302 RECURSE(Visit(stmt->enumerable()));
hydrogen-instructions.cc     [all...]
hydrogen-instructions.h 6661 HValue* enumerable() const { return OperandAt(1); } function in class:final::final
6688 HValue* enumerable() const { return OperandAt(0); } function in class:final::final
    [all...]
  /external/v8/src/full-codegen/arm/
full-codegen-arm.cc     [all...]
  /external/v8/src/full-codegen/arm64/
full-codegen-arm64.cc     [all...]

Completed in 361 milliseconds

1 2