Home
last modified time | relevance | path

Searched refs:ACCESSOR_GETTER (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/v8/src/
Dobjects.h1926 ACCESSOR_GETTER, enumerator
10131 return component == ACCESSOR_GETTER ? getter() : setter(); in get()
10135 if (component == ACCESSOR_GETTER) { in set()
Druntime.cc1865 Handle<Object> getter(accessors->GetComponent(ACCESSOR_GETTER), isolate); in GetOwnProperty()
10682 AccessorComponent component = flag == 0 ? ACCESSOR_GETTER : ACCESSOR_SETTER; in RUNTIME_FUNCTION()
10894 details->set(3, accessors->GetComponent(ACCESSOR_GETTER)); in RUNTIME_FUNCTION()
Dobjects.cc6175 DefineFastAccessor(object, name, ACCESSOR_GETTER, getter, attributes); in DefinePropertyAccessor()
/external/v8/src/
Druntime.cc1068 elms->set(GETTER_INDEX, accessors->GetComponent(ACCESSOR_GETTER)); in GetOwnProperty()
1118 elms->set(GETTER_INDEX, accessors->GetComponent(ACCESSOR_GETTER)); in GetOwnProperty()
9984 AccessorComponent component = flag == 0 ? ACCESSOR_GETTER : ACCESSOR_SETTER; in RUNTIME_FUNCTION()
10186 details->set(3, accessors->GetComponent(ACCESSOR_GETTER)); in RUNTIME_FUNCTION()
Dobjects.h1374 ACCESSOR_GETTER, enumerator
Dobjects.cc5954 Object* accessor = (component == ACCESSOR_GETTER) ? getter() : setter(); in GetComponent()