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

1 2

  /external/chromium_org/v8/src/
collection-iterator.js 57 InstallFunctions(SetIterator.prototype, DONT_ENUM, $Array(
63 SetIteratorSymbolIterator, DONT_ENUM);
72 InstallFunctions($Set.prototype, DONT_ENUM, $Array(
78 DONT_ENUM);
137 InstallFunctions(MapIterator.prototype, DONT_ENUM, $Array(
143 MapIteratorSymbolIterator, DONT_ENUM);
152 InstallFunctions($Map.prototype, DONT_ENUM, $Array(
159 DONT_ENUM);
generator.js 62 DONT_ENUM | DONT_DELETE | READ_ONLY,
67 DONT_ENUM | DONT_DELETE | READ_ONLY);
69 GeneratorFunctionPrototype, DONT_ENUM | DONT_DELETE | READ_ONLY);
73 GeneratorFunction, DONT_ENUM | DONT_DELETE | READ_ONLY);
symbol.js 111 InstallFunctions($Symbol, DONT_ENUM, $Array(
116 %SetProperty($Symbol.prototype, "constructor", $Symbol, DONT_ENUM);
117 InstallFunctions($Symbol.prototype, DONT_ENUM, $Array(
129 InstallFunctions($Object, DONT_ENUM, $Array(
arraybuffer.js 77 %SetProperty($ArrayBuffer.prototype, "constructor", $ArrayBuffer, DONT_ENUM);
81 InstallFunctions($ArrayBuffer, DONT_ENUM, $Array(
85 InstallFunctions($ArrayBuffer.prototype, DONT_ENUM, $Array(
array-iterator.js 109 InstallFunctions(ArrayIterator.prototype, DONT_ENUM, $Array(
114 DONT_ENUM | DONT_DELETE | READ_ONLY);
122 InstallFunctions($Array.prototype, DONT_ENUM, $Array(
collection.js 99 %SetProperty($Set.prototype, "constructor", $Set, DONT_ENUM);
105 InstallFunctions($Set.prototype, DONT_ENUM, $Array(
210 %SetProperty($Map.prototype, "constructor", $Map, DONT_ENUM);
216 InstallFunctions($Map.prototype, DONT_ENUM, $Array(
weak_collection.js 92 %SetProperty($WeakMap.prototype, "constructor", $WeakMap, DONT_ENUM);
95 InstallFunctions($WeakMap.prototype, DONT_ENUM, $Array(
172 %SetProperty($WeakSet.prototype, "constructor", $WeakSet, DONT_ENUM);
175 InstallFunctions($WeakSet.prototype, DONT_ENUM, $Array(
property-details.h 16 DONT_ENUM = v8::DontEnum,
26 DONT_SHOW = DONT_ENUM | SYMBOLIC | PRIVATE_SYMBOL,
266 bool IsDontEnum() const { return (attributes() & DONT_ENUM) != 0; }
regexp.js 384 %SetProperty($RegExp.prototype, 'constructor', $RegExp, DONT_ENUM);
387 InstallFunctions($RegExp.prototype, DONT_ENUM, $Array(
412 RegExpSetInput, DONT_ENUM | DONT_DELETE);
414 RegExpSetInput, DONT_ENUM | DONT_DELETE);
432 DONT_ENUM | DONT_DELETE);
442 NoOpSetter, DONT_ENUM | DONT_DELETE);
446 NoOpSetter, DONT_ENUM | DONT_DELETE);
451 NoOpSetter, DONT_ENUM | DONT_DELETE);
456 NoOpSetter, DONT_ENUM | DONT_DELETE);
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 %SetProperty($DataView.prototype, "constructor", $DataView, DONT_ENUM);
445 InstallFunctions($DataView.prototype, DONT_ENUM, $Array(
v8natives.js 42 %DefineOrRedefineAccessorProperty(object, name, getter, null, DONT_ENUM);
53 %DefineOrRedefineAccessorProperty(object, name, getter, setter, DONT_ENUM);
64 var attributes = DONT_ENUM | DONT_DELETE | READ_ONLY;
89 %SetProperty(prototype, fields[i], UNDEFINED, DONT_ENUM | DONT_DELETE);
95 %SetProperty(prototype, key, f, DONT_ENUM | DONT_DELETE | READ_ONLY);
190 var attributes = DONT_ENUM | DONT_DELETE | READ_ONLY;
202 InstallFunctions(global, DONT_ENUM, $Array(
797 flag |= desc.isEnumerable() ? 0 : DONT_ENUM;
799 flag |= current.isEnumerable() ? 0 : DONT_ENUM;
801 flag |= DONT_ENUM;
    [all...]
harmony-array.js 132 InstallFunctions($Array.prototype, DONT_ENUM, $Array(
harmony-string.js 129 InstallFunctions($String.prototype, DONT_ENUM, $Array(
promise.js 302 %SetProperty(global, 'Promise', $Promise, DONT_ENUM);
303 InstallFunctions($Promise, DONT_ENUM, [
311 InstallFunctions($Promise.prototype, DONT_ENUM, [
bootstrapper.cc 378 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
380 attributes = DONT_ENUM;
398 DONT_ENUM | DONT_DELETE | READ_ONLY);
543 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE);
545 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
    [all...]
messages.js 286 DONT_ENUM | DONT_DELETE | READ_ONLY);
    [all...]
math.js 263 %SetProperty(global, "Math", $Math, DONT_ENUM);
284 InstallFunctions($Math, DONT_ENUM, $Array(
object-observe.js 625 InstallFunctions($Object, DONT_ENUM, $Array(
631 InstallFunctions($Array, DONT_ENUM, $Array(
635 InstallFunctions(notifierPrototype, DONT_ENUM, $Array(
harmony-math.js 225 InstallFunctions($Math, 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 %SetProperty($Date.prototype, "constructor", $Date, DONT_ENUM);
770 InstallFunctions($Date.prototype, DONT_ENUM, $Array(
string.js 918 %SetProperty($String.prototype, "constructor", $String, DONT_ENUM);
921 InstallFunctions($String, DONT_ENUM, $Array(
926 InstallFunctions($String.prototype, DONT_ENUM, $Array(
  /external/chromium_org/v8/test/mjsunit/regress/
regress-334.js 33 var DONT_ENUM = 2;
40 %SetProperty(object, "foo", func1, DONT_ENUM | DONT_DELETE);
41 %SetProperty(object, "bar", func1, DONT_ENUM | READ_ONLY);
43 %SetProperty(object.__proto__, "bif", func1, DONT_ENUM | DONT_DELETE);

Completed in 504 milliseconds

1 2