/external/v8/src/ |
D | regexp.js | 406 %SetProperty($RegExp.prototype, 'constructor', $RegExp, DONT_ENUM); 409 InstallFunctions($RegExp.prototype, DONT_ENUM, $Array( 432 %DefineAccessor($RegExp, '$_', GETTER, RegExpGetInput, DONT_ENUM | DONT_DELETE); 433 %DefineAccessor($RegExp, '$_', SETTER, RegExpSetInput, DONT_ENUM | DONT_DELETE); 434 %DefineAccessor($RegExp, '$input', GETTER, RegExpGetInput, DONT_ENUM | DONT_DELETE); 435 %DefineAccessor($RegExp, '$input', SETTER, RegExpSetInput, DONT_ENUM | DONT_DELETE); 451 %DefineAccessor($RegExp, '$*', GETTER, RegExpGetMultiline, DONT_ENUM | DONT_DELETE); 452 %DefineAccessor($RegExp, '$*', SETTER, RegExpSetMultiline, DONT_ENUM | DONT_DELETE); 461 %DefineAccessor($RegExp, '$&', GETTER, RegExpGetLastMatch, DONT_ENUM | DONT_DELETE); 462 %DefineAccessor($RegExp, '$&', SETTER, NoOpSetter, DONT_ENUM | DONT_DELETE); [all …]
|
D | math.js | 42 %SetProperty(global, "Math", $Math, DONT_ENUM); 205 DONT_ENUM | DONT_DELETE | READ_ONLY); 210 DONT_ENUM | DONT_DELETE | READ_ONLY); 215 DONT_ENUM | DONT_DELETE | READ_ONLY); 220 DONT_ENUM | DONT_DELETE | READ_ONLY); 224 DONT_ENUM | DONT_DELETE | READ_ONLY); 228 DONT_ENUM | DONT_DELETE | READ_ONLY); 232 DONT_ENUM | DONT_DELETE | READ_ONLY); 236 DONT_ENUM | DONT_DELETE | READ_ONLY); 241 InstallFunctionsOnHiddenPrototype($Math, DONT_ENUM, $Array(
|
D | v8natives.js | 155 %SetProperty(global, "NaN", $NaN, DONT_ENUM | DONT_DELETE); 158 %SetProperty(global, "Infinity", 1/0, DONT_ENUM | DONT_DELETE); 161 %SetProperty(global, "undefined", void 0, DONT_ENUM | DONT_DELETE); 164 InstallFunctions(global, DONT_ENUM, $Array( 190 %SetProperty($Boolean.prototype, "constructor", $Boolean, DONT_ENUM); 656 flag |= desc.isEnumerable() ? 0 : DONT_ENUM; 658 flag |= current.isEnumerable() ? 0 : DONT_ENUM; 660 flag |= DONT_ENUM; 940 InstallFunctions($Object.prototype, DONT_ENUM, $Array( 952 InstallFunctions($Object, DONT_ENUM, $Array( [all …]
|
D | bootstrapper.cc | 337 SetLocalPropertyNoThrow(target, symbol, function, DONT_ENUM); in InstallFunction() 351 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in ComputeFunctionInstanceDescriptor() 498 DONT_ENUM | DONT_DELETE | READ_ONLY); in ComputeStrictFunctionInstanceDescriptor() 823 isolate->object_function(), DONT_ENUM); in InitializeGlobal() 848 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE)); in InitializeGlobal() 891 static_cast<PropertyAttributes>(DONT_ENUM | in InitializeGlobal() 926 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in InitializeGlobal() 963 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE); in InitializeGlobal() 991 SetLocalPropertyNoThrow(global, name, json_object, DONT_ENUM); in InitializeGlobal() 1023 DONT_ENUM); in InitializeGlobal() [all …]
|
D | messages.js | 132 %SetProperty(Script.prototype, 'constructor', Script, DONT_ENUM); 976 %SetProperty(global, name, f, DONT_ENUM); 992 %SetProperty(f.prototype, 'constructor', f, DONT_ENUM); 1089 InstallFunctions($Error.prototype, DONT_ENUM, ['toString', errorToString]);
|
D | apinatives.js | 77 %SetProperty(fun.prototype, "constructor", fun, DONT_ENUM);
|
D | string.js | 865 %SetProperty($String.prototype, "constructor", $String, DONT_ENUM); 869 InstallFunctions($String, DONT_ENUM, $Array( 875 InstallFunctionsOnHiddenPrototype($String.prototype, DONT_ENUM, $Array(
|
D | macros.py | 33 const DONT_ENUM = 2;
|
D | date.js | 1042 InstallFunctions($Date, DONT_ENUM, $Array( 1049 %SetProperty($Date.prototype, "constructor", $Date, DONT_ENUM); 1053 InstallFunctionsOnHiddenPrototype($Date.prototype, DONT_ENUM, $Array(
|
D | array.js | 1183 %SetProperty($Array.prototype, "constructor", $Array, DONT_ENUM); 1186 InstallFunctions($Array, DONT_ENUM, $Array( 1207 InstallFunctionsOnHiddenPrototype($Array.prototype, DONT_ENUM, $Array(
|
D | uri.js | 392 InstallFunctions(global, DONT_ENUM, $Array(
|
D | property.h | 199 PropertyDetails(static_cast<PropertyAttributes>(DONT_ENUM | in ConstantResult()
|
D | json.js | 336 InstallFunctions($JSON, DONT_ENUM, $Array(
|
D | factory.cc | 661 SetLocalPropertyNoThrow(prototype, constructor_symbol(), function, DONT_ENUM); in NewFunctionWithPrototype()
|
D | runtime.cc | 1708 static_cast<PropertyAttributes>(READ_ONLY | DONT_ENUM | DONT_DELETE); in RUNTIME_FUNCTION() 1710 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE); in RUNTIME_FUNCTION() 3815 RUNTIME_ASSERT((unchecked & ~(READ_ONLY | DONT_ENUM | DONT_DELETE)) == 0); in RUNTIME_FUNCTION() 3851 RUNTIME_ASSERT((unchecked & ~(READ_ONLY | DONT_ENUM | DONT_DELETE)) == 0); in RUNTIME_FUNCTION() 3862 if (((unchecked & (DONT_DELETE | DONT_ENUM | READ_ONLY)) != 0) && in RUNTIME_FUNCTION() 4087 (unchecked_attributes & ~(READ_ONLY | DONT_ENUM | DONT_DELETE)) == 0); in RUNTIME_FUNCTION() 4123 (unchecked_value & ~(READ_ONLY | DONT_ENUM | DONT_DELETE)) == 0); in RUNTIME_FUNCTION() 4235 return isolate->heap()->ToBoolean(att != ABSENT && (att & DONT_ENUM) == 0); in RUNTIME_FUNCTION() 9024 ASSERT((value & ~(READ_ONLY | DONT_ENUM | DONT_DELETE)) == 0); in RUNTIME_FUNCTION()
|
D | mirror-debugger.js | 188 PropertyAttribute.DontEnum = DONT_ENUM;
|
D | objects.cc | 2340 if (!result.IsEmpty()) return DONT_ENUM; in GetPropertyAttributeWithInterceptor() 8216 return NumberOfLocalProperties(static_cast<PropertyAttributes>(DONT_ENUM)); in NumberOfEnumProperties() 8366 return NumberOfLocalElements(static_cast<PropertyAttributes>(DONT_ENUM)); in NumberOfEnumElements() 8448 static_cast<PropertyAttributes>(DONT_ENUM)); in GetEnumElementKeys() 9941 static_cast<PropertyAttributes>(DONT_ENUM)); in NumberOfEnumElements()
|
D | objects.h | 118 DONT_ENUM = v8::DontEnum, enumerator 203 bool IsDontEnum() { return (attributes() & DONT_ENUM) != 0; } in IsDontEnum()
|
D | objects-inl.h | 3903 DONT_ENUM, in SetHiddenPropertiesObject()
|
D | heap.cc | 2945 constructor_symbol(), function, DONT_ENUM); in AllocateFunctionPrototype()
|
/external/v8/test/mjsunit/regress/ |
D | regress-334.js | 33 var DONT_ENUM = 2; variable 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);
|
/external/v8/test/cctest/ |
D | test-debug.cc | 157 Handle<Object>(debug->debug_context()->global_proxy()), DONT_ENUM, in ExposeDebug()
|