Home
last modified time | relevance | path

Searched refs:DONT_ENUM (Results 1 – 23 of 23) sorted by relevance

/external/webkit/V8Binding/v8/src/
Dregexp-delay.js77 DONT_DELETE | READ_ONLY | DONT_ENUM);
80 %SetProperty(object, 'global', global, DONT_DELETE | READ_ONLY | DONT_ENUM);
84 DONT_DELETE | READ_ONLY | DONT_ENUM);
88 DONT_DELETE | READ_ONLY | DONT_ENUM);
91 %SetProperty(object, 'lastIndex', 0, DONT_DELETE | DONT_ENUM);
335 %SetProperty($RegExp.prototype, 'constructor', $RegExp, DONT_ENUM);
338 InstallFunctions($RegExp.prototype, DONT_ENUM, $Array(
361 %DefineAccessor($RegExp, '$_', GETTER, RegExpGetInput, DONT_ENUM | DONT_DELETE);
362 %DefineAccessor($RegExp, '$_', SETTER, RegExpSetInput, DONT_ENUM | DONT_DELETE);
363 %DefineAccessor($RegExp, '$input', GETTER, RegExpGetInput, DONT_ENUM | DONT_DELETE);
[all …]
Dv8natives.js154 %SetProperty(global, "NaN", $NaN, DONT_ENUM | DONT_DELETE);
157 %SetProperty(global, "Infinity", 1/0, DONT_ENUM | DONT_DELETE);
160 %SetProperty(global, "undefined", void 0, DONT_ENUM | DONT_DELETE);
163 InstallFunctions(global, DONT_ENUM, $Array(
190 %SetProperty($Boolean.prototype, "constructor", $Boolean, DONT_ENUM);
295 InstallFunctions($Object.prototype, DONT_ENUM, $Array(
342 InstallFunctions($Boolean.prototype, DONT_ENUM, $Array(
462 %SetProperty($Number.prototype, "constructor", $Number, DONT_ENUM);
469 DONT_ENUM | DONT_DELETE | READ_ONLY);
472 %SetProperty($Number, "MIN_VALUE", 5e-324, DONT_ENUM | DONT_DELETE | READ_ONLY);
[all …]
Dmath.js43 %SetProperty(global, "Math", $Math, DONT_ENUM);
191 DONT_ENUM | DONT_DELETE | READ_ONLY);
196 DONT_ENUM | DONT_DELETE | READ_ONLY);
201 DONT_ENUM | DONT_DELETE | READ_ONLY);
206 DONT_ENUM | DONT_DELETE | READ_ONLY);
210 DONT_ENUM | DONT_DELETE | READ_ONLY);
214 DONT_ENUM | DONT_DELETE | READ_ONLY);
218 DONT_ENUM | DONT_DELETE | READ_ONLY);
222 DONT_ENUM | DONT_DELETE | READ_ONLY);
227 InstallFunctionsOnHiddenPrototype($Math, DONT_ENUM, $Array(
Dbootstrapper.cc392 SetProperty(target, symbol, function, DONT_ENUM); in InstallFunction()
407 (make_prototype_enumerable ? 0 : DONT_ENUM) in ComputeFunctionInstanceDescriptor()
418 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in ComputeFunctionInstanceDescriptor()
643 SetProperty(global, object_name, Top::object_function(), DONT_ENUM); in CreateRoots()
667 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE)); in CreateRoots()
708 static_cast<PropertyAttributes>(DONT_ENUM | in CreateRoots()
747 SetProperty(global, name, json_object, DONT_ENUM); in CreateRoots()
778 DONT_ENUM); in CreateRoots()
781 DONT_ENUM); in CreateRoots()
1004 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in InstallNatives()
[all …]
Dmessages.js103 %SetProperty(Script.prototype, 'constructor', Script, DONT_ENUM);
822 %SetProperty(global, name, f, DONT_ENUM);
838 %SetProperty(f.prototype, 'constructor', f, DONT_ENUM);
890 }, DONT_ENUM);
Dapinatives.js77 %SetProperty(fun.prototype, "constructor", fun, DONT_ENUM);
Dstring.js828 %SetProperty($String.prototype, "constructor", $String, DONT_ENUM);
832 InstallFunctions($String, DONT_ENUM, $Array(
838 InstallFunctionsOnHiddenPrototype($String.prototype, DONT_ENUM, $Array(
Dmacros.py33 const DONT_ENUM = 2;
Ddate-delay.js1112 InstallFunctions($Date, DONT_ENUM, $Array(
1119 %SetProperty($Date.prototype, "constructor", $Date, DONT_ENUM);
1123 InstallFunctionsOnHiddenPrototype($Date.prototype, DONT_ENUM, $Array(
Djson-delay.js248 InstallFunctions($JSON, DONT_ENUM, $Array(
Dproperty.h180 PropertyDetails(static_cast<PropertyAttributes>(DONT_ENUM | in ConstantResult()
Duri.js404 InstallFunctions(global, DONT_ENUM, $Array(
Darray.js1074 %SetProperty($Array.prototype, "constructor", $Array, DONT_ENUM);
1078 InstallFunctionsOnHiddenPrototype($Array.prototype, DONT_ENUM, $Array(
Dhandles.cc311 return SetProperty(obj, key, hidden_obj, DONT_ENUM); in GetHiddenProperties()
Dfactory.cc529 SetProperty(prototype, Factory::constructor_symbol(), function, DONT_ENUM); in NewFunctionWithPrototype()
Dmirror-delay.js196 PropertyAttribute.DontEnum = DONT_ENUM;
Dobjects.h103 DONT_ENUM = v8::DontEnum, enumerator
162 bool IsDontEnum() { return (attributes() & DONT_ENUM) != 0; } in IsDontEnum()
Druntime.cc2843 (unchecked_value & ~(READ_ONLY | DONT_ENUM | DONT_DELETE)) == 0); in Runtime_SetProperty()
2864 (unchecked_value & ~(READ_ONLY | DONT_ENUM | DONT_DELETE)) == 0); in Runtime_IgnoreAttributesAndSetProperty()
2969 return Heap::ToBoolean(att != ABSENT && (att & DONT_ENUM) == 0); in Runtime_IsPropertyEnumerable()
5558 ASSERT((value & ~(READ_ONLY | DONT_ENUM | DONT_DELETE)) == 0); in Runtime_DefineAccessor()
Dobjects.cc6245 return NumberOfLocalProperties(static_cast<PropertyAttributes>(DONT_ENUM)); in NumberOfEnumProperties()
6385 return NumberOfLocalElements(static_cast<PropertyAttributes>(DONT_ENUM)); in NumberOfEnumElements()
6450 static_cast<PropertyAttributes>(DONT_ENUM)); in GetEnumElementKeys()
7566 static_cast<PropertyAttributes>(DONT_ENUM)); in NumberOfEnumElements()
Dobjects-inl.h57 PropertyDetails d(DONT_ENUM, NORMAL); in AsDeleted()
Dheap.cc2022 DONT_ENUM); in AllocateFunctionPrototype()
/external/webkit/V8Binding/v8/test/mjsunit/regress/
Dregress-334.js33 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/webkit/V8Binding/v8/test/cctest/
Dtest-debug.cc152 Handle<Object>(Debug::debug_context()->global_proxy()), DONT_ENUM); in ExposeDebug()