Home
last modified time | relevance | path

Searched refs:InterceptorInfo (Results 1 – 22 of 22) sorted by relevance

/external/v8/src/objects/
Dapi-callbacks-inl.h22 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 …]
Dapi-callbacks.h133 class InterceptorInfo : public Struct {
152 DECL_CAST(InterceptorInfo)
155 DECL_PRINTER(InterceptorInfo)
156 DECL_VERIFIER(InterceptorInfo)
176 DISALLOW_IMPLICIT_CONSTRUCTORS(InterceptorInfo);
Dmap-inl.h73 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()
Dmap.h200 inline InterceptorInfo* GetNamedInterceptor();
201 inline InterceptorInfo* GetIndexedInterceptor();
/external/v8/src/
Dapi-arguments.h85 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 …]
Dapi-arguments-inl.h63 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 …]
Dlookup-inl.h133 inline Handle<InterceptorInfo> LookupIterator::GetInterceptor() const { in GetInterceptor()
135 InterceptorInfo* result = in GetInterceptor()
Dlookup.h197 inline Handle<InterceptorInfo> GetInterceptor() const;
198 Handle<InterceptorInfo> GetInterceptorForFailedAccessCheck() const;
254 inline InterceptorInfo* GetInterceptor(JSObject* holder) const { in GetInterceptor()
Dkeys.cc481 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()
Dlookup.cc1139 Handle<InterceptorInfo> LookupIterator::GetInterceptorForFailedAccessCheck() in GetInterceptorForFailedAccessCheck()
1149 return handle(InterceptorInfo::cast(interceptor), isolate_); in GetInterceptorForFailedAccessCheck()
1152 return Handle<InterceptorInfo>(); in GetInterceptorForFailedAccessCheck()
Dobjects-definitions.h303 V(INTERCEPTOR_INFO, InterceptorInfo, interceptor_info) \
Droots.h191 V(InterceptorInfo, noop_interceptor_info, NoOpInterceptorInfo) \
Dglobals.h507 class InterceptorInfo; variable
Dobjects-inl.h1266 InterceptorInfo* JSObject::GetIndexedInterceptor() { in GetIndexedInterceptor()
1270 InterceptorInfo* JSObject::GetNamedInterceptor() { in GetNamedInterceptor()
Dobjects.h2421 inline InterceptorInfo* GetNamedInterceptor();
2422 inline InterceptorInfo* GetIndexedInterceptor();
Dobjects.cc1779 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()
Dobjects-printer.cc1848 void InterceptorInfo::InterceptorInfoPrint(std::ostream& os) { // NOLINT in InterceptorInfoPrint()
Dobjects-debug.cc1746 void InterceptorInfo::InterceptorInfoVerify(Isolate* isolate) { in InterceptorInfoVerify()
Dapi.cc1782 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/
Ddebug-evaluate.cc977 InterceptorInfo* info = InterceptorInfo::cast(callback_info); in CallbackHasNoSideEffect()
/external/v8/src/heap/
Dsetup-heap-internal.cc597 Handle<InterceptorInfo> info = Handle<InterceptorInfo>::cast( in CreateApiObjects()
/external/v8/src/ic/
Dic.cc1283 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()