Searched defs:DONT_ENUM (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/
H A Dproperty-details.h21 DONT_ENUM = ::v8::DontEnum, enumerator in enum:v8::internal::PropertyAttributes
24 ALL_ATTRIBUTES_MASK = READ_ONLY | DONT_ENUM | DONT_DELETE,
49 STATIC_ASSERT(ONLY_ENUMERABLE == static_cast<PropertyFilter>(DONT_ENUM));
326 bool IsDontEnum() const { return (attributes() & DONT_ENUM) != 0; }
H A Dbootstrapper.cc365 PropertyAttributes attributes = DONT_ENUM) {
374 PropertyAttributes attributes = DONT_ENUM) {
417 PropertyAttributes attributes = DONT_ENUM;
442 PropertyAttributes attrs = DONT_ENUM) {
452 PropertyAttributes attrs = DONT_ENUM) {
502 JSObject::DefineAccessor(base, property_name, getter, setter, DONT_ENUM)
526 static_cast<PropertyAttributes>(DONT_DELETE | DONT_ENUM | READ_ONLY));
661 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY))
730 iterator_prototype_iterator, DONT_ENUM);
745 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONL
363 InstallFunction(Handle<JSObject> target, Handle<Name> property_name, Handle<JSFunction> function, Handle<String> function_name, PropertyAttributes attributes = DONT_ENUM) argument
372 InstallFunction(Handle<JSObject> target, Handle<JSFunction> function, Handle<Name> name, PropertyAttributes attributes = DONT_ENUM) argument
438 SimpleInstallFunction(Handle<JSObject> base, Handle<String> name, Builtins::Name call, int len, bool adapt, PropertyAttributes attrs = DONT_ENUM) argument
449 SimpleInstallFunction(Handle<JSObject> base, const char* name, Builtins::Name call, int len, bool adapt, PropertyAttributes attrs = DONT_ENUM) argument
3761 SetFunction(Handle<JSObject> target, Handle<JSFunction> function, Handle<Name> name, PropertyAttributes attributes = DONT_ENUM) argument
[all...]

Completed in 117 milliseconds