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

1 2

  /external/v8/src/
array-iterator.js 109 InstallFunctions(ArrayIterator.prototype, DONT_ENUM, $Array(
114 ArrayIteratorIterator, DONT_ENUM);
122 InstallFunctions($Array.prototype, DONT_ENUM, $Array(
128 %AddNamedProperty($Array.prototype, symbolIterator, ArrayValues, DONT_ENUM);
149 %AddNamedProperty($NAME.prototype, 'entries', ArrayEntries, DONT_ENUM);
150 %AddNamedProperty($NAME.prototype, 'values', ArrayValues, DONT_ENUM);
151 %AddNamedProperty($NAME.prototype, 'keys', ArrayKeys, DONT_ENUM);
152 %AddNamedProperty($NAME.prototype, symbolIterator, ArrayValues, DONT_ENUM);
collection-iterator.js 73 InstallFunctions(SetIterator.prototype, DONT_ENUM, $Array(
79 SetIteratorSymbolIterator, DONT_ENUM);
88 InstallFunctions($Set.prototype, DONT_ENUM, $Array(
94 %AddNamedProperty($Set.prototype, symbolIterator, SetValues, DONT_ENUM);
170 InstallFunctions(MapIterator.prototype, DONT_ENUM, $Array(
176 MapIteratorSymbolIterator, DONT_ENUM);
185 InstallFunctions($Map.prototype, DONT_ENUM, $Array(
191 %AddNamedProperty($Map.prototype, symbolIterator, MapEntries, DONT_ENUM);
generator.js 68 DONT_ENUM | DONT_DELETE | READ_ONLY,
74 GeneratorObjectIterator, DONT_ENUM | DONT_DELETE | READ_ONLY);
76 GeneratorFunctionPrototype, DONT_ENUM | DONT_DELETE | READ_ONLY);
80 GeneratorFunction, DONT_ENUM | DONT_DELETE | READ_ONLY);
symbol.js 110 InstallFunctions($Symbol, DONT_ENUM, $Array(
115 %AddNamedProperty($Symbol.prototype, "constructor", $Symbol, DONT_ENUM);
116 InstallFunctions($Symbol.prototype, DONT_ENUM, $Array(
128 InstallFunctions($Object, DONT_ENUM, $Array(
arraybuffer.js 78 $ArrayBuffer.prototype, "constructor", $ArrayBuffer, DONT_ENUM);
82 InstallFunctions($ArrayBuffer, DONT_ENUM, $Array(
86 InstallFunctions($ArrayBuffer.prototype, DONT_ENUM, $Array(
string-iterator.js 84 InstallFunctions(StringIterator.prototype, DONT_ENUM, $Array(
89 StringIteratorIterator, DONT_ENUM);
105 StringPrototypeIterator, DONT_ENUM);
collection.js 128 %AddNamedProperty($Set.prototype, "constructor", $Set, DONT_ENUM);
134 InstallFunctions($Set.prototype, DONT_ENUM, $Array(
270 %AddNamedProperty($Map.prototype, "constructor", $Map, DONT_ENUM);
276 InstallFunctions($Map.prototype, DONT_ENUM, $Array(
weak-collection.js 116 %AddNamedProperty($WeakMap.prototype, "constructor", $WeakMap, DONT_ENUM);
119 InstallFunctions($WeakMap.prototype, DONT_ENUM, $Array(
216 %AddNamedProperty($WeakSet.prototype, "constructor", $WeakSet, DONT_ENUM);
219 InstallFunctions($WeakSet.prototype, DONT_ENUM, $Array(
property-details.h 16 DONT_ENUM = v8::DontEnum,
26 DONT_SHOW = DONT_ENUM | SYMBOLIC | PRIVATE_SYMBOL,
259 bool IsDontEnum() const { return (attributes() & DONT_ENUM) != 0; }
typedarray.js 303 READ_ONLY | DONT_ENUM | DONT_DELETE);
305 "constructor", global.NAME, DONT_ENUM);
308 READ_ONLY | DONT_ENUM | DONT_DELETE);
314 InstallFunctions(global.NAME.prototype, DONT_ENUM, $Array(
439 %AddNamedProperty($DataView.prototype, "constructor", $DataView, DONT_ENUM);
445 InstallFunctions($DataView.prototype, DONT_ENUM, $Array(
harmony-array.js 145 InstallFunctions($Array, DONT_ENUM, $Array(
150 InstallFunctions($Array.prototype, DONT_ENUM, $Array(
harmony-string.js 177 InstallFunctions($String, DONT_ENUM, $Array(
182 InstallFunctions($String.prototype, DONT_ENUM, $Array(
regexp.js 395 %AddNamedProperty($RegExp.prototype, 'constructor', $RegExp, DONT_ENUM);
398 InstallFunctions($RegExp.prototype, DONT_ENUM, $Array(
423 RegExpSetInput, DONT_ENUM | DONT_DELETE);
441 DONT_ENUM | DONT_DELETE);
451 NoOpSetter, DONT_ENUM | DONT_DELETE);
455 NoOpSetter, DONT_ENUM | DONT_DELETE);
460 NoOpSetter, DONT_ENUM | DONT_DELETE);
465 NoOpSetter, DONT_ENUM | DONT_DELETE);
v8natives.js 42 %DefineAccessorPropertyUnchecked(object, name, getter, null, DONT_ENUM);
53 %DefineAccessorPropertyUnchecked(object, name, getter, setter, DONT_ENUM);
64 var attributes = DONT_ENUM | DONT_DELETE | READ_ONLY;
90 UNDEFINED, DONT_ENUM | DONT_DELETE);
96 %AddNamedProperty(prototype, key, f, DONT_ENUM | DONT_DELETE | READ_ONLY);
191 var attributes = DONT_ENUM | DONT_DELETE | READ_ONLY;
203 InstallFunctions(global, DONT_ENUM, $Array(
786 flag |= desc.isEnumerable() ? 0 : DONT_ENUM;
788 flag |= current.isEnumerable() ? 0 : DONT_ENUM;
790 flag |= DONT_ENUM;
    [all...]
promise.js 350 %AddNamedProperty(global, 'Promise', $Promise, DONT_ENUM);
351 InstallFunctions($Promise, DONT_ENUM, [
359 InstallFunctions($Promise.prototype, DONT_ENUM, [
bootstrapper.cc 385 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
387 attributes = DONT_ENUM;
404 DONT_ENUM | DONT_DELETE | READ_ONLY);
556 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE);
558 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
    [all...]
math.js 321 %AddNamedProperty(global, "Math", $Math, DONT_ENUM);
342 InstallFunctions($Math, DONT_ENUM, $Array(
messages.js 299 DONT_ENUM | DONT_DELETE | READ_ONLY);
    [all...]
object-observe.js 637 InstallFunctions($Object, DONT_ENUM, $Array(
643 InstallFunctions($Array, DONT_ENUM, $Array(
647 InstallFunctions(notifierPrototype, DONT_ENUM, $Array(
json.js 224 InstallFunctions($JSON, DONT_ENUM, $Array(
macros.py 33 const DONT_ENUM = 2;
proxy.js 56 InstallFunctions($Proxy, DONT_ENUM, [
date.js 759 InstallFunctions($Date, DONT_ENUM, $Array(
766 %AddNamedProperty($Date.prototype, "constructor", $Date, DONT_ENUM);
770 InstallFunctions($Date.prototype, DONT_ENUM, $Array(
  /external/v8/test/mjsunit/es6/
array-iterator.js 33 var DONT_ENUM = 2;
41 assertEquals(desc.enumerable, !(attrs & DONT_ENUM));
47 assertHasOwnProperty(Array.prototype, 'entries', DONT_ENUM);
48 assertHasOwnProperty(Array.prototype, 'keys', DONT_ENUM);
49 assertHasOwnProperty(Array.prototype, Symbol.iterator, DONT_ENUM);
159 assertHasOwnProperty(ArrayIteratorPrototype, 'next', DONT_ENUM);
160 assertHasOwnProperty(ArrayIteratorPrototype, Symbol.iterator, DONT_ENUM);
  /external/v8/test/mjsunit/regress/
regress-334.js 33 var DONT_ENUM = 2;
40 %AddNamedProperty(object, "foo", func1, DONT_ENUM | DONT_DELETE);
41 %AddNamedProperty(object, "bar", func1, DONT_ENUM | READ_ONLY);
43 %AddNamedProperty(object.__proto__, "bif", func1, DONT_ENUM | DONT_DELETE);

Completed in 507 milliseconds

1 2