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

  /external/v8/src/
regexp.js 77 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);
329 %SetProperty($RegExp.prototype, 'constructor', $RegExp, DONT_ENUM);
332 InstallFunctions($RegExp.prototype, DONT_ENUM, $Array(
355 %DefineAccessor($RegExp, '$_', GETTER, RegExpGetInput, DONT_ENUM | DONT_DELETE);
356 %DefineAccessor($RegExp, '$_', SETTER, RegExpSetInput, DONT_ENUM | DONT_DELETE);
357 %DefineAccessor($RegExp, '$input', GETTER, RegExpGetInput, DONT_ENUM | DONT_DELETE)
    [all...]
math.js 42 %SetProperty(global, "Math", $Math, DONT_ENUM);
204 DONT_ENUM | DONT_DELETE | READ_ONLY);
209 DONT_ENUM | DONT_DELETE | READ_ONLY);
214 DONT_ENUM | DONT_DELETE | READ_ONLY);
219 DONT_ENUM | DONT_DELETE | READ_ONLY);
223 DONT_ENUM | DONT_DELETE | READ_ONLY);
227 DONT_ENUM | DONT_DELETE | READ_ONLY);
231 DONT_ENUM | DONT_DELETE | READ_ONLY);
235 DONT_ENUM | DONT_DELETE | READ_ONLY);
240 InstallFunctionsOnHiddenPrototype($Math, DONT_ENUM, $Array
    [all...]
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(
191 %SetProperty($Boolean.prototype, "constructor", $Boolean, DONT_ENUM);
566 flag |= desc.isEnumerable() ? 0 : DONT_ENUM;
568 flag |= current.isEnumerable() ? 0 : DONT_ENUM;
570 flag |= DONT_ENUM;
715 InstallFunctions($Object.prototype, DONT_ENUM, $Array(
727 InstallFunctions($Object, DONT_ENUM, $Array
    [all...]
macros.py 33 const DONT_ENUM = 2;
bootstrapper.cc 345 SetProperty(target, symbol, function, DONT_ENUM);
360 (make_prototype_enumerable ? 0 : DONT_ENUM)
371 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY);
640 SetProperty(inner_global, object_name, Top::object_function(), DONT_ENUM);
665 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE));
706 static_cast<PropertyAttributes>(DONT_ENUM |
745 SetProperty(global, name, json_object, DONT_ENUM);
776 DONT_ENUM);
779 DONT_ENUM);
    [all...]
property.h 180 PropertyDetails(static_cast<PropertyAttributes>(DONT_ENUM |
apinatives.js 77 %SetProperty(fun.prototype, "constructor", fun, DONT_ENUM);
json.js 262 InstallFunctions($JSON, DONT_ENUM, $Array(
messages.js 118 %SetProperty(Script.prototype, 'constructor', Script, DONT_ENUM);
875 %SetProperty(global, name, f, DONT_ENUM);
891 %SetProperty(f.prototype, 'constructor', f, DONT_ENUM);
943 }, DONT_ENUM);
uri.js 404 InstallFunctions(global, DONT_ENUM, $Array(
array.js     [all...]
date.js 1115 InstallFunctions($Date, DONT_ENUM, $Array(
1122 %SetProperty($Date.prototype, "constructor", $Date, DONT_ENUM);
1126 InstallFunctionsOnHiddenPrototype($Date.prototype, DONT_ENUM, $Array(
    [all...]
string.js 862 %SetProperty($String.prototype, "constructor", $String, DONT_ENUM);
866 InstallFunctions($String, DONT_ENUM, $Array(
872 InstallFunctionsOnHiddenPrototype($String.prototype, DONT_ENUM, $Array(
factory.cc 545 SetProperty(prototype, Factory::constructor_symbol(), function, DONT_ENUM);
    [all...]
runtime.cc     [all...]
objects-inl.h 57 PropertyDetails d(DONT_ENUM, NORMAL);
    [all...]
objects.h 115 DONT_ENUM = v8::DontEnum,
174 bool IsDontEnum() { return (attributes() & DONT_ENUM) != 0; }
    [all...]
objects.cc     [all...]
mirror-debugger.js 187 PropertyAttribute.DontEnum = DONT_ENUM;
    [all...]
heap.cc     [all...]
  /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);
  /external/v8/test/cctest/
test-debug.cc 152 Handle<Object>(Debug::debug_context()->global_proxy()), DONT_ENUM);
    [all...]

Completed in 1076 milliseconds