/external/v8/src/ |
property-details.h | 39 DONT_ENUM = v8::DontEnum, 114 bool IsDontEnum() { return (attributes() & DONT_ENUM) != 0; }
|
math.js | 42 %SetProperty(global, "Math", $Math, DONT_ENUM); 232 DONT_ENUM | DONT_DELETE | READ_ONLY); 237 DONT_ENUM | DONT_DELETE | READ_ONLY); 242 DONT_ENUM | DONT_DELETE | READ_ONLY); 247 DONT_ENUM | DONT_DELETE | READ_ONLY); 251 DONT_ENUM | DONT_DELETE | READ_ONLY); 255 DONT_ENUM | DONT_DELETE | READ_ONLY); 259 DONT_ENUM | DONT_DELETE | READ_ONLY); 263 DONT_ENUM | DONT_DELETE | READ_ONLY); 268 InstallFunctions($Math, DONT_ENUM, $Array [all...] |
collection.js | 219 %SetProperty($Set.prototype, "constructor", $Set, DONT_ENUM); 220 %SetProperty($Map.prototype, "constructor", $Map, DONT_ENUM); 223 InstallFunctions($Set.prototype, DONT_ENUM, $Array( 230 InstallFunctions($Map.prototype, DONT_ENUM, $Array( 241 %SetProperty($WeakMap.prototype, "constructor", $WeakMap, DONT_ENUM); 244 InstallFunctions($WeakMap.prototype, DONT_ENUM, $Array(
|
regexp.js | 404 %SetProperty($RegExp.prototype, 'constructor', $RegExp, DONT_ENUM); 407 InstallFunctions($RegExp.prototype, DONT_ENUM, $Array( 431 RegExpSetInput, DONT_ENUM | DONT_DELETE); 433 RegExpSetInput, DONT_ENUM | DONT_DELETE); 451 DONT_ENUM | DONT_DELETE); 461 NoOpSetter, DONT_ENUM | DONT_DELETE); 465 NoOpSetter, DONT_ENUM | DONT_DELETE); 470 NoOpSetter, DONT_ENUM | DONT_DELETE); 475 NoOpSetter, DONT_ENUM | DONT_DELETE);
|
v8natives.js | 78 %SetProperty(prototype, fields[i], void 0, DONT_ENUM | DONT_DELETE); 84 %SetProperty(prototype, key, f, DONT_ENUM | DONT_DELETE | READ_ONLY); 180 %SetProperty(global, "NaN", $NaN, DONT_ENUM | DONT_DELETE | READ_ONLY); 183 %SetProperty(global, "Infinity", 1/0, DONT_ENUM | DONT_DELETE | READ_ONLY); 187 DONT_ENUM | DONT_DELETE | READ_ONLY); 190 InstallFunctions(global, DONT_ENUM, $Array( 215 %SetProperty($Boolean.prototype, "constructor", $Boolean, DONT_ENUM); 797 flag |= desc.isEnumerable() ? 0 : DONT_ENUM; 799 flag |= current.isEnumerable() ? 0 : DONT_ENUM; 801 flag |= DONT_ENUM; [all...] |
bootstrapper.cc | 369 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); 371 attributes = DONT_ENUM; 389 DONT_ENUM | DONT_DELETE | READ_ONLY); 534 DONT_ENUM | DONT_DELETE); [all...] |
messages.js | 122 DONT_ENUM | DONT_DELETE | READ_ONLY); 259 DONT_DELETE | READ_ONLY | DONT_ENUM); 262 DONT_DELETE | READ_ONLY | DONT_ENUM); 267 DONT_DELETE | DONT_ENUM | READ_ONLY); 272 DONT_DELETE | DONT_ENUM | READ_ONLY); 774 %DefineOrRedefineAccessorProperty(obj, name, getter, setter, DONT_ENUM); [all...] |
macros.py | 33 const DONT_ENUM = 2;
|
/external/chromium_org/v8/src/ |
collection.js | 122 %SetProperty($Set.prototype, "constructor", $Set, DONT_ENUM); 126 InstallFunctions($Set.prototype, DONT_ENUM, $Array( 223 %SetProperty($Map.prototype, "constructor", $Map, DONT_ENUM); 227 InstallFunctions($Map.prototype, DONT_ENUM, $Array( 316 %SetProperty($WeakMap.prototype, "constructor", $WeakMap, DONT_ENUM); 319 InstallFunctions($WeakMap.prototype, DONT_ENUM, $Array( 396 %SetProperty($WeakSet.prototype, "constructor", $WeakSet, DONT_ENUM); 399 InstallFunctions($WeakSet.prototype, DONT_ENUM, $Array(
|
math.js | 284 %SetProperty(global, "Math", $Math, DONT_ENUM); 293 DONT_ENUM | DONT_DELETE | READ_ONLY); 298 DONT_ENUM | DONT_DELETE | READ_ONLY); 303 DONT_ENUM | DONT_DELETE | READ_ONLY); 308 DONT_ENUM | DONT_DELETE | READ_ONLY); 312 DONT_ENUM | DONT_DELETE | READ_ONLY); 316 DONT_ENUM | DONT_DELETE | READ_ONLY); 320 DONT_ENUM | DONT_DELETE | READ_ONLY); 324 DONT_ENUM | DONT_DELETE | READ_ONLY); 329 InstallFunctions($Math, DONT_ENUM, $Array [all...] |
arraybuffer.js | 97 %SetProperty($ArrayBuffer.prototype, "constructor", $ArrayBuffer, DONT_ENUM); 101 InstallFunctions($ArrayBuffer, DONT_ENUM, $Array( 105 InstallFunctions($ArrayBuffer.prototype, DONT_ENUM, $Array(
|
generator.js | 79 DONT_ENUM | DONT_DELETE | READ_ONLY, 83 GeneratorFunctionPrototype, DONT_ENUM | DONT_DELETE | READ_ONLY); 87 GeneratorFunction, DONT_ENUM | DONT_DELETE | READ_ONLY);
|
property-details.h | 39 DONT_ENUM = v8::DontEnum, 46 DONT_SHOW = DONT_ENUM | SYMBOLIC, 287 bool IsDontEnum() const { return (attributes() & DONT_ENUM) != 0; }
|
regexp.js | 403 %SetProperty($RegExp.prototype, 'constructor', $RegExp, DONT_ENUM); 406 InstallFunctions($RegExp.prototype, DONT_ENUM, $Array( 431 RegExpSetInput, DONT_ENUM | DONT_DELETE); 433 RegExpSetInput, DONT_ENUM | DONT_DELETE); 451 DONT_ENUM | DONT_DELETE); 461 NoOpSetter, DONT_ENUM | DONT_DELETE); 465 NoOpSetter, DONT_ENUM | DONT_DELETE); 470 NoOpSetter, DONT_ENUM | DONT_DELETE); 475 NoOpSetter, DONT_ENUM | DONT_DELETE);
|
typedarray.js | 284 READ_ONLY | DONT_ENUM | DONT_DELETE); 286 "constructor", constructor, DONT_ENUM); 289 READ_ONLY | DONT_ENUM | DONT_DELETE); 295 InstallFunctions(constructor.prototype, DONT_ENUM, $Array( 412 %SetProperty($DataView.prototype, "constructor", $DataView, DONT_ENUM); 418 InstallFunctions($DataView.prototype, DONT_ENUM, $Array(
|
v8natives.js | 65 %DefineOrRedefineAccessorProperty(object, name, getter, null, DONT_ENUM); 76 %DefineOrRedefineAccessorProperty(object, name, getter, setter, DONT_ENUM); 97 %SetProperty(prototype, fields[i], UNDEFINED, DONT_ENUM | DONT_DELETE); 103 %SetProperty(prototype, key, f, DONT_ENUM | DONT_DELETE | READ_ONLY); 198 var attributes = DONT_ENUM | DONT_DELETE | READ_ONLY; 210 InstallFunctions(global, DONT_ENUM, $Array( 812 flag |= desc.isEnumerable() ? 0 : DONT_ENUM; 814 flag |= current.isEnumerable() ? 0 : DONT_ENUM; 816 flag |= DONT_ENUM; [all...] |
array-iterator.js | 109 InstallFunctions(ArrayIterator.prototype, DONT_ENUM, $Array( 119 InstallFunctions($Array.prototype, DONT_ENUM, $Array(
|
symbol.js | 78 %SetProperty($Symbol.prototype, "constructor", $Symbol, DONT_ENUM); 81 InstallFunctions($Symbol.prototype, DONT_ENUM, $Array(
|
harmony-math.js | 54 InstallFunctions($Math, DONT_ENUM, $Array(
|
bootstrapper.cc | 368 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); 370 attributes = DONT_ENUM; 398 DONT_ENUM | DONT_DELETE | READ_ONLY); 536 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE); 538 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); [all...] |
harmony-array.js | 118 InstallFunctions($Array.prototype, DONT_ENUM, $Array(
|
messages.js | 305 DONT_ENUM | DONT_DELETE | READ_ONLY); [all...] |
promise.js | 290 InstallFunctions($Promise, DONT_ENUM, [ 298 InstallFunctions($Promise.prototype, DONT_ENUM, [
|
/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);
|
/external/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 | READ_ONLY);
|