/third_party/node/deps/v8/src/api/ |
D | api-arguments.h | 96 inline Handle<Object> CallNamedQuery(Handle<InterceptorInfo> interceptor, 98 inline Handle<Object> CallNamedGetter(Handle<InterceptorInfo> interceptor, 100 inline Handle<Object> CallNamedSetter(Handle<InterceptorInfo> interceptor, 103 inline Handle<Object> CallNamedDefiner(Handle<InterceptorInfo> interceptor, 106 inline Handle<Object> CallNamedDeleter(Handle<InterceptorInfo> interceptor, 108 inline Handle<Object> CallNamedDescriptor(Handle<InterceptorInfo> interceptor, 111 Handle<InterceptorInfo> interceptor); 115 inline Handle<Object> CallIndexedQuery(Handle<InterceptorInfo> interceptor, 117 inline Handle<Object> CallIndexedGetter(Handle<InterceptorInfo> interceptor, 119 inline Handle<Object> CallIndexedSetter(Handle<InterceptorInfo> interceptor, [all …]
|
D | api-arguments-inl.h | 93 Handle<InterceptorInfo> interceptor, Handle<Name> name) { \ 114 Handle<InterceptorInfo> interceptor, uint32_t index) { \ 152 Handle<InterceptorInfo> interceptor) { in CallNamedEnumerator() 159 Handle<InterceptorInfo> interceptor) { in CallIndexedEnumerator() 166 Handle<InterceptorInfo> interceptor, Handle<Name> name) { in CallNamedGetter() 175 Handle<InterceptorInfo> interceptor, Handle<Name> name) { in CallNamedDescriptor() 196 Handle<InterceptorInfo> interceptor, Handle<Name> name, in CallNamedSetter() 210 Handle<InterceptorInfo> interceptor, Handle<Name> name, in CallNamedDefiner() 224 Handle<InterceptorInfo> interceptor, uint32_t index, Handle<Object> value) { in CallIndexedSetter() 237 Handle<InterceptorInfo> interceptor, uint32_t index, in CallIndexedDefiner() [all …]
|
D | api.cc | 1761 static i::Handle<i::InterceptorInfo> CreateInterceptorInfo( in CreateInterceptorInfo() 1765 auto obj = i::Handle<i::InterceptorInfo>::cast(isolate->factory()->NewStruct( in CreateInterceptorInfo() 1798 static i::Handle<i::InterceptorInfo> CreateNamedInterceptorInfo( in CreateNamedInterceptorInfo() 1811 static i::Handle<i::InterceptorInfo> CreateIndexedInterceptorInfo( in CreateIndexedInterceptorInfo()
|
/third_party/node/deps/v8/src/objects/ |
D | api-callbacks-inl.h | 27 TQ_OBJECT_CONSTRUCTORS_IMPL(InterceptorInfo) in TQ_OBJECT_CONSTRUCTORS_IMPL() 91 BOOL_ACCESSORS(InterceptorInfo, flags, can_intercept_symbols, in BOOL_ACCESSORS() argument 93 BOOL_ACCESSORS(InterceptorInfo, flags, all_can_read, AllCanReadBit::kShift) in BOOL_ACCESSORS() 94 BOOL_ACCESSORS(InterceptorInfo, flags, non_masking, NonMaskingBit::kShift) in BOOL_ACCESSORS() 95 BOOL_ACCESSORS(InterceptorInfo, flags, is_named, NamedBit::kShift) in BOOL_ACCESSORS() 96 BOOL_ACCESSORS(InterceptorInfo, flags, has_no_side_effect, in BOOL_ACCESSORS()
|
D | api-callbacks.h | 92 class InterceptorInfo 93 : public TorqueGeneratedInterceptorInfo<InterceptorInfo, Struct> { 105 TQ_OBJECT_CONSTRUCTORS(InterceptorInfo)
|
D | api-callbacks.tq | 19 extern class InterceptorInfo extends Struct { 33 named_interceptor: InterceptorInfo|Zero|Undefined; 34 indexed_interceptor: InterceptorInfo|Zero|Undefined;
|
D | lookup-inl.h | 288 InterceptorInfo LookupIterator::GetInterceptor(JSObject holder) const { in GetInterceptor() 296 inline Handle<InterceptorInfo> LookupIterator::GetInterceptor() const { in GetInterceptor() 299 InterceptorInfo result = IsElement(holder) ? GetInterceptor<true>(holder) in GetInterceptor()
|
D | templates.tq | 19 named_property_handler: InterceptorInfo|Undefined; 20 indexed_property_handler: InterceptorInfo|Undefined;
|
D | lookup.h | 186 inline Handle<InterceptorInfo> GetInterceptor() const; 187 Handle<InterceptorInfo> GetInterceptorForFailedAccessCheck() const; 273 inline InterceptorInfo GetInterceptor(JSObject holder) const;
|
D | keys.h | 105 Handle<InterceptorInfo> interceptor, IndexedOrNamed type); 123 Handle<InterceptorInfo> interceptor, Handle<JSObject> result,
|
D | map-inl.h | 116 DEF_GETTER(Map, GetNamedInterceptor, InterceptorInfo) { in RELEASE_ACQUIRE_ACCESSORS() 119 return InterceptorInfo::cast(info.GetNamedPropertyHandler(cage_base)); in RELEASE_ACQUIRE_ACCESSORS() 122 DEF_GETTER(Map, GetIndexedInterceptor, InterceptorInfo) { in DEF_GETTER() argument 125 return InterceptorInfo::cast(info.GetIndexedPropertyHandler(cage_base)); in DEF_GETTER()
|
D | keys.cc | 659 Handle<InterceptorInfo> interceptor, Handle<JSObject> result, in FilterForEnumerableProperties() 698 Handle<InterceptorInfo> interceptor, IndexedOrNamed type) { in CollectInterceptorKeysInternal() 733 Handle<InterceptorInfo> interceptor(type == kIndexed in CollectInterceptorKeys() 1086 handle(InterceptorInfo::cast( in CollectAccessCheckInterceptorKeys() 1095 handle(InterceptorInfo::cast(access_check_info->named_interceptor()), in CollectAccessCheckInterceptorKeys()
|
D | map.h | 229 DECL_GETTER(GetNamedInterceptor, InterceptorInfo) 230 DECL_GETTER(GetIndexedInterceptor, InterceptorInfo)
|
D | objects-definitions.h | 150 V(_, INTERCEPTOR_INFO_TYPE, InterceptorInfo, interceptor_info) \
|
D | lookup.cc | 1195 InterceptorInfo info = GetInterceptor<is_element>(holder); in SkipInterceptor() 1384 Handle<InterceptorInfo> LookupIterator::GetInterceptorForFailedAccessCheck() in GetInterceptorForFailedAccessCheck() 1398 return handle(InterceptorInfo::cast(interceptor), isolate_); in GetInterceptorForFailedAccessCheck() 1401 return Handle<InterceptorInfo>(); in GetInterceptorForFailedAccessCheck()
|
D | js-objects-inl.h | 258 DEF_GETTER(JSObject, GetIndexedInterceptor, InterceptorInfo) { in DEF_GETTER() argument 262 DEF_GETTER(JSObject, GetNamedInterceptor, InterceptorInfo) { in DEF_GETTER() argument
|
D | js-objects.h | 522 DECL_GETTER(GetNamedInterceptor, InterceptorInfo) 523 DECL_GETTER(GetIndexedInterceptor, InterceptorInfo)
|
D | js-objects.cc | 1192 LookupIterator* it, Handle<InterceptorInfo> interceptor, bool* done) { in GetPropertyWithInterceptorInternal() 1227 LookupIterator* it, Handle<InterceptorInfo> interceptor) { in GetPropertyAttributesWithInterceptorInternal() 1275 LookupIterator* it, Handle<InterceptorInfo> interceptor, in SetPropertyWithInterceptorInternal() 1309 LookupIterator* it, Handle<InterceptorInfo> interceptor, in DefinePropertyWithInterceptorInternal() 1765 Handle<InterceptorInfo> interceptor; in GetPropertyDescriptorWithInterceptor() 2554 Handle<InterceptorInfo> interceptor = in GetPropertyWithFailedAccessCheck() 2594 Handle<InterceptorInfo> interceptor = in GetPropertyAttributesWithFailedAccessCheck() 2634 Handle<InterceptorInfo> interceptor = in SetPropertyWithFailedAccessCheck() 3956 Handle<InterceptorInfo> interceptor(it->GetInterceptor()); in DeletePropertyWithInterceptor()
|
/third_party/node/deps/v8/src/ic/ |
D | ic.cc | 1614 InterceptorInfo info = holder->GetNamedInterceptor(); in LookupForWrite() 1983 InterceptorInfo info = holder->GetNamedInterceptor(); in ComputeHandler() 3326 Handle<InterceptorInfo> interceptor(holder->GetNamedInterceptor(), isolate); in RUNTIME_FUNCTION() 3381 Handle<InterceptorInfo> interceptor(interceptor_holder->GetNamedInterceptor(), in RUNTIME_FUNCTION() 3414 Handle<InterceptorInfo> interceptor(receiver->GetIndexedInterceptor(), in RUNTIME_FUNCTION() 3459 Handle<InterceptorInfo> interceptor(receiver->GetIndexedInterceptor(), in RUNTIME_FUNCTION()
|
/third_party/node/deps/v8/src/heap/ |
D | setup-heap-internal.cc | 656 Handle<InterceptorInfo> info = in CreateApiObjects() 657 Handle<InterceptorInfo>::cast(isolate->factory()->NewStruct( in CreateApiObjects()
|
/third_party/node/deps/v8/src/roots/ |
D | roots.h | 190 V(InterceptorInfo, noop_interceptor_info, NoOpInterceptorInfo) \
|
/third_party/node/deps/v8/src/common/ |
D | globals.h | 715 class InterceptorInfo; variable
|
/third_party/node/deps/v8/src/debug/ |
D | debug.cc | 2822 InterceptorInfo info = InterceptorInfo::cast(*callback_info); in PerformSideEffectCheckForCallback()
|