Lines Matching refs:interceptor
3326 Handle<InterceptorInfo> interceptor(holder->GetNamedInterceptor(), isolate); in RUNTIME_FUNCTION() local
3327 PropertyCallbackArguments arguments(isolate, interceptor->data(), *receiver, in RUNTIME_FUNCTION()
3329 Handle<Object> result = arguments.CallNamedGetter(interceptor, name); in RUNTIME_FUNCTION()
3381 Handle<InterceptorInfo> interceptor(interceptor_holder->GetNamedInterceptor(), in RUNTIME_FUNCTION() local
3384 DCHECK(!interceptor->non_masking()); in RUNTIME_FUNCTION()
3385 PropertyCallbackArguments arguments(isolate, interceptor->data(), *receiver, in RUNTIME_FUNCTION()
3388 Handle<Object> result = arguments.CallNamedSetter(interceptor, name, value); in RUNTIME_FUNCTION()
3414 Handle<InterceptorInfo> interceptor(receiver->GetIndexedInterceptor(), in RUNTIME_FUNCTION() local
3416 PropertyCallbackArguments arguments(isolate, interceptor->data(), *receiver, in RUNTIME_FUNCTION()
3418 Handle<Object> result = arguments.CallIndexedGetter(interceptor, index); in RUNTIME_FUNCTION()
3459 Handle<InterceptorInfo> interceptor(receiver->GetIndexedInterceptor(), in RUNTIME_FUNCTION() local
3461 PropertyCallbackArguments arguments(isolate, interceptor->data(), *receiver, in RUNTIME_FUNCTION()
3464 if (!interceptor->query().IsUndefined(isolate)) { in RUNTIME_FUNCTION()
3465 Handle<Object> result = arguments.CallIndexedQuery(interceptor, index); in RUNTIME_FUNCTION()
3472 } else if (!interceptor->getter().IsUndefined(isolate)) { in RUNTIME_FUNCTION()
3473 Handle<Object> result = arguments.CallIndexedGetter(interceptor, index); in RUNTIME_FUNCTION()