/external/v8/src/objects/ |
D | api-callbacks-inl.h | 22 CAST_ACCESSOR(InterceptorInfo) 84 ACCESSORS(InterceptorInfo, getter, Object, kGetterOffset) in ACCESSORS() 85 ACCESSORS(InterceptorInfo, setter, Object, kSetterOffset) in ACCESSORS() 86 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset) in ACCESSORS() 87 ACCESSORS(InterceptorInfo, descriptor, Object, kDescriptorOffset) in ACCESSORS() 88 ACCESSORS(InterceptorInfo, deleter, Object, kDeleterOffset) in ACCESSORS() 89 ACCESSORS(InterceptorInfo, enumerator, Object, kEnumeratorOffset) in ACCESSORS() 90 ACCESSORS(InterceptorInfo, definer, Object, kDefinerOffset) in ACCESSORS() 91 ACCESSORS(InterceptorInfo, data, Object, kDataOffset) in ACCESSORS() 92 SMI_ACCESSORS(InterceptorInfo, flags, kFlagsOffset) in ACCESSORS() [all …]
|
D | api-callbacks.h | 133 class InterceptorInfo : public Struct { 152 DECL_CAST(InterceptorInfo) 155 DECL_PRINTER(InterceptorInfo) 156 DECL_VERIFIER(InterceptorInfo) 176 DISALLOW_IMPLICIT_CONSTRUCTORS(InterceptorInfo);
|
D | map-inl.h | 73 InterceptorInfo* Map::GetNamedInterceptor() { in ACCESSORS() 76 return InterceptorInfo::cast(info->named_property_handler()); in ACCESSORS() 79 InterceptorInfo* Map::GetIndexedInterceptor() { in GetIndexedInterceptor() 82 return InterceptorInfo::cast(info->indexed_property_handler()); in GetIndexedInterceptor()
|
D | map.h | 200 inline InterceptorInfo* GetNamedInterceptor(); 201 inline InterceptorInfo* GetIndexedInterceptor();
|
/external/v8/src/ |
D | api-arguments.h | 85 inline Handle<Object> CallNamedQuery(Handle<InterceptorInfo> interceptor, 87 inline Handle<Object> CallNamedGetter(Handle<InterceptorInfo> interceptor, 89 inline Handle<Object> CallNamedSetter(Handle<InterceptorInfo> interceptor, 92 inline Handle<Object> CallNamedDefiner(Handle<InterceptorInfo> interceptor, 95 inline Handle<Object> CallNamedDeleter(Handle<InterceptorInfo> interceptor, 97 inline Handle<Object> CallNamedDescriptor(Handle<InterceptorInfo> interceptor, 100 Handle<InterceptorInfo> interceptor); 104 inline Handle<Object> CallIndexedQuery(Handle<InterceptorInfo> interceptor, 106 inline Handle<Object> CallIndexedGetter(Handle<InterceptorInfo> interceptor, 108 inline Handle<Object> CallIndexedSetter(Handle<InterceptorInfo> interceptor, [all …]
|
D | api-arguments-inl.h | 63 Handle<InterceptorInfo> interceptor, Handle<Name> name) { \ 85 Handle<InterceptorInfo> interceptor, uint32_t index) { \ 124 Handle<InterceptorInfo> interceptor) { in CallNamedEnumerator() 133 Handle<InterceptorInfo> interceptor) { in CallIndexedEnumerator() 142 Handle<InterceptorInfo> interceptor, Handle<Name> name) { in CallNamedGetter() 155 Handle<InterceptorInfo> interceptor, Handle<Name> name) { in CallNamedDescriptor() 179 Handle<InterceptorInfo> interceptor, Handle<Name> name, in CallNamedSetter() 197 Handle<InterceptorInfo> interceptor, Handle<Name> name, in CallNamedDefiner() 215 Handle<InterceptorInfo> interceptor, uint32_t index, Handle<Object> value) { in CallIndexedSetter() 232 Handle<InterceptorInfo> interceptor, uint32_t index, in CallIndexedDefiner() [all …]
|
D | lookup-inl.h | 133 inline Handle<InterceptorInfo> LookupIterator::GetInterceptor() const { in GetInterceptor() 135 InterceptorInfo* result = in GetInterceptor()
|
D | lookup.h | 197 inline Handle<InterceptorInfo> GetInterceptor() const; 198 Handle<InterceptorInfo> GetInterceptorForFailedAccessCheck() const; 254 inline InterceptorInfo* GetInterceptor(JSObject* holder) const { in GetInterceptor()
|
D | keys.cc | 481 Handle<InterceptorInfo> interceptor, in FilterForEnumerableProperties() 521 Handle<InterceptorInfo> interceptor, in CollectInterceptorKeysInternal() 561 Handle<InterceptorInfo> interceptor(type == kIndexed in CollectInterceptorKeys() 720 handle(InterceptorInfo::cast( in CollectAccessCheckInterceptorKeys() 729 handle(InterceptorInfo::cast(access_check_info->named_interceptor()), in CollectAccessCheckInterceptorKeys()
|
D | lookup.cc | 1139 Handle<InterceptorInfo> LookupIterator::GetInterceptorForFailedAccessCheck() in GetInterceptorForFailedAccessCheck() 1149 return handle(InterceptorInfo::cast(interceptor), isolate_); in GetInterceptorForFailedAccessCheck() 1152 return Handle<InterceptorInfo>(); in GetInterceptorForFailedAccessCheck()
|
D | objects-definitions.h | 303 V(INTERCEPTOR_INFO, InterceptorInfo, interceptor_info) \
|
D | roots.h | 191 V(InterceptorInfo, noop_interceptor_info, NoOpInterceptorInfo) \
|
D | globals.h | 507 class InterceptorInfo; variable
|
D | objects-inl.h | 1266 InterceptorInfo* JSObject::GetIndexedInterceptor() { in GetIndexedInterceptor() 1270 InterceptorInfo* JSObject::GetNamedInterceptor() { in GetNamedInterceptor()
|
D | objects.h | 2421 inline InterceptorInfo* GetNamedInterceptor(); 2422 inline InterceptorInfo* GetIndexedInterceptor();
|
D | objects.cc | 1779 LookupIterator* it, Handle<InterceptorInfo> interceptor, bool* done) { in GetPropertyWithInterceptorInternal() 1814 LookupIterator* it, Handle<InterceptorInfo> interceptor) { in GetPropertyAttributesWithInterceptorInternal() 1860 LookupIterator* it, Handle<InterceptorInfo> interceptor, in SetPropertyWithInterceptorInternal() 1893 LookupIterator* it, Handle<InterceptorInfo> interceptor, in DefinePropertyWithInterceptorInternal() 1952 Handle<InterceptorInfo> interceptor = in GetPropertyWithFailedAccessCheck() 1993 Handle<InterceptorInfo> interceptor = in GetPropertyAttributesWithFailedAccessCheck() 2035 Handle<InterceptorInfo> interceptor = in SetPropertyWithFailedAccessCheck() 6806 Handle<InterceptorInfo> interceptor(it->GetInterceptor()); in DeletePropertyWithInterceptor() 7878 Handle<InterceptorInfo> interceptor = it->GetInterceptor(); in GetPropertyDescriptorWithInterceptor()
|
D | objects-printer.cc | 1848 void InterceptorInfo::InterceptorInfoPrint(std::ostream& os) { // NOLINT in InterceptorInfoPrint()
|
D | objects-debug.cc | 1746 void InterceptorInfo::InterceptorInfoVerify(Isolate* isolate) { in InterceptorInfoVerify()
|
D | api.cc | 1782 static i::Handle<i::InterceptorInfo> CreateInterceptorInfo( in CreateInterceptorInfo() 1786 auto obj = i::Handle<i::InterceptorInfo>::cast( in CreateInterceptorInfo() 1819 static i::Handle<i::InterceptorInfo> CreateNamedInterceptorInfo( in CreateNamedInterceptorInfo() 1832 static i::Handle<i::InterceptorInfo> CreateIndexedInterceptorInfo( in CreateIndexedInterceptorInfo()
|
/external/v8/src/debug/ |
D | debug-evaluate.cc | 977 InterceptorInfo* info = InterceptorInfo::cast(callback_info); in CallbackHasNoSideEffect()
|
/external/v8/src/heap/ |
D | setup-heap-internal.cc | 597 Handle<InterceptorInfo> info = Handle<InterceptorInfo>::cast( in CreateApiObjects()
|
/external/v8/src/ic/ |
D | ic.cc | 1283 InterceptorInfo* info = holder->GetNamedInterceptor(); in LookupForWrite() 2669 Handle<InterceptorInfo> interceptor(holder->GetNamedInterceptor(), isolate); in RUNTIME_FUNCTION() 2729 Handle<InterceptorInfo> interceptor(interceptor_holder->GetNamedInterceptor(), in RUNTIME_FUNCTION() 2764 Handle<InterceptorInfo> interceptor(receiver->GetIndexedInterceptor(), in RUNTIME_FUNCTION()
|