Home
last modified time | relevance | path

Searched refs:InterceptorState (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/
Dlookup.h69 interceptor_state_(InterceptorState::kUninitialized), in configuration_()
103 InterceptorState state = InterceptorState::kUninitialized; in Restart()
216 enum class InterceptorState { enum
242 RestartInternal<is_element>(InterceptorState::kProcessNonMasking); in RestartLookupForNonMaskingInterceptors()
245 void RestartInternal(InterceptorState interceptor_state);
291 InterceptorState interceptor_state_;
Dlookup.cc130 interceptor_state_(InterceptorState::kUninitialized), in LookupIterator()
186 if (interceptor_state_ == InterceptorState::kSkipNonMasking) { in NextInternal()
203 void LookupIterator::RestartInternal(InterceptorState interceptor_state) { in RestartInternal()
210 template void LookupIterator::RestartInternal<true>(InterceptorState);
211 template void LookupIterator::RestartInternal<false>(InterceptorState);
250 interceptor_state_ = InterceptorState::kUninitialized; in ReloadPropertyInformation()
1006 case InterceptorState::kUninitialized: in SkipInterceptor()
1007 interceptor_state_ = InterceptorState::kSkipNonMasking; in SkipInterceptor()
1009 case InterceptorState::kSkipNonMasking: in SkipInterceptor()
1011 case InterceptorState::kProcessNonMasking: in SkipInterceptor()
[all …]
Dlookup-inl.h30 interceptor_state_(InterceptorState::kUninitialized), in LookupIterator()