Searched refs:GetInterceptor (Results 1 – 4 of 4) sorted by relevance
/third_party/node/deps/v8/src/objects/ |
D | lookup-inl.h | 288 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()
|
D | lookup.h | 186 inline Handle<InterceptorInfo> GetInterceptor() const; 273 inline InterceptorInfo GetInterceptor(JSObject holder) const;
|
D | js-objects.cc | 1382 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()
|
D | lookup.cc | 1195 InterceptorInfo info = GetInterceptor<is_element>(holder); in SkipInterceptor()
|