Home
last modified time | relevance | path

Searched refs:GetInterceptor (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dlookup-inl.h288 InterceptorInfo LookupIterator::GetInterceptor(JSObject holder) const { in GetInterceptor() function
296 inline Handle<InterceptorInfo> LookupIterator::GetInterceptor() const { in GetInterceptor() function
299 InterceptorInfo result = IsElement(holder) ? GetInterceptor<true>(holder) in GetInterceptor()
300 : GetInterceptor<false>(holder); in GetInterceptor()
Dlookup.h186 inline Handle<InterceptorInfo> GetInterceptor() const;
273 inline InterceptorInfo GetInterceptor(JSObject holder) const;
Djs-objects.cc1382 it, it->GetInterceptor(), should_throw, desc); in OrdinaryDefineOwnProperty()
1782 interceptor = it->GetInterceptor(); in GetPropertyDescriptorWithInterceptor()
2541 if (it->GetInterceptor()->all_can_read()) return true; in AllCanRead()
3367 return SetPropertyWithInterceptorInternal(it, it->GetInterceptor(), in SetPropertyWithInterceptor()
3546 it, it->GetInterceptor(), should_throw, &descriptor); in DefineOwnPropertyIgnoreAttributes()
3656 return GetPropertyAttributesWithInterceptorInternal(it, it->GetInterceptor()); in GetPropertyAttributesWithInterceptor()
3956 Handle<InterceptorInfo> interceptor(it->GetInterceptor()); in DeletePropertyWithInterceptor()
5346 return GetPropertyWithInterceptorInternal(it, it->GetInterceptor(), done); in GetPropertyWithInterceptor()
Dlookup.cc1195 InterceptorInfo info = GetInterceptor<is_element>(holder); in SkipInterceptor()