Home | History | Annotate | Download | only in src

Lines Matching full:getter

185     MaybeObject* value = (callback->getter)(receiver, callback->data);
193 Object* fun_obj = data->getter();
217 Object* getter = FixedArray::cast(structure)->get(kGetterIndex);
218 if (getter->IsJSFunction()) {
220 JSFunction::cast(getter));
222 // Getter is not a function.
232 JSFunction* getter) {
234 Handle<JSFunction> fun(JSFunction::cast(getter));
238 // Handle stepping into a getter if step into is active.
2329 } else if (!interceptor->getter()->IsUndefined()) {
2330 v8::NamedPropertyGetter getter =
2331 v8::ToCData<v8::NamedPropertyGetter>(interceptor->getter());
2338 result = getter(v8::Utils::ToLocal(name_handle), info);
3278 // Allocate the fixed array to hold getter and setter.
5704 // Getter prototype() is read-only, set_prototype() has side effects.
7104 } else if (!interceptor->getter()->IsUndefined()) {
7105 v8::IndexedPropertyGetter getter =
7106 v8::ToCData<v8::IndexedPropertyGetter>(interceptor->getter());
7113 result = getter(index, info);
7307 Object* fun_obj = data->getter();
7330 Object* getter = FixedArray::cast(structure)->get(kGetterIndex);
7331 if (getter->IsJSFunction()) {
7333 JSFunction::cast(getter));
7335 // Getter is not a function.
7738 if (!interceptor->getter()->IsUndefined()) {
7739 v8::IndexedPropertyGetter getter =
7740 v8::ToCData<v8::IndexedPropertyGetter>(interceptor->getter());
7749 result = getter(index, info);
8087 if (!interceptor->getter()->IsUndefined()) {
8088 v8::NamedPropertyGetter getter =
8089 v8::ToCData<v8::NamedPropertyGetter>(interceptor->getter());
8098 result = getter(v8::Utils::ToLocal(name_handle), info);