/external/v8/src/ |
D | handles-inl.h | 19 location_ = HandleScope::CreateHandle(obj->GetIsolate(), obj); in Handle() 25 location_ = HandleScope::CreateHandle(isolate, obj); in Handle() 127 Handle<T> result(CreateHandle<T>(isolate_, value)); in CloseAndEscape() 138 T** HandleScope::CreateHandle(Isolate* isolate, T* value) { in CreateHandle() function
|
D | handles.h | 192 static inline T** CreateHandle(Isolate* isolate, T* value);
|
D | api.cc | 579 i::Object** HandleScope::CreateHandle(i::Isolate* isolate, i::Object* value) { in CreateHandle() function in v8::HandleScope 580 return i::HandleScope::CreateHandle(isolate, value); in CreateHandle() 584 i::Object** HandleScope::CreateHandle(i::HeapObject* heap_object, in CreateHandle() function in v8::HandleScope 587 return i::HandleScope::CreateHandle(heap_object->GetIsolate(), value); in CreateHandle() 593 escape_slot_ = CreateHandle(isolate, isolate->heap()->the_hole_value()); in EscapableHandleScope()
|
/external/webrtc/src/modules/audio_processing/ |
D | high_pass_filter_impl.h | 40 virtual void* CreateHandle() const;
|
D | level_estimator_impl.h | 41 virtual void* CreateHandle() const;
|
D | processing_component.h | 39 virtual void* CreateHandle() const = 0;
|
D | noise_suppression_impl.h | 42 virtual void* CreateHandle() const;
|
D | voice_detection_impl.h | 47 virtual void* CreateHandle() const;
|
D | echo_control_mobile_impl.h | 48 virtual void* CreateHandle() const;
|
D | gain_control_impl.h | 59 virtual void* CreateHandle() const;
|
D | echo_cancellation_impl.h | 57 virtual void* CreateHandle() const;
|
D | processing_component.cc | 81 handles_[i] = CreateHandle(); in Initialize()
|
D | level_estimator_impl.cc | 140 void* LevelEstimatorImpl::CreateHandle() const { in CreateHandle() function in webrtc::LevelEstimatorImpl
|
D | high_pass_filter_impl.cc | 153 void* HighPassFilterImpl::CreateHandle() const { in CreateHandle() function in webrtc::HighPassFilterImpl
|
D | voice_detection_impl.cc | 169 void* VoiceDetectionImpl::CreateHandle() const { in CreateHandle() function in webrtc::VoiceDetectionImpl
|
D | noise_suppression_impl.cc | 127 void* NoiseSuppressionImpl::CreateHandle() const { in CreateHandle() function in webrtc::NoiseSuppressionImpl
|
D | echo_control_mobile_impl.cc | 260 void* EchoControlMobileImpl::CreateHandle() const { in CreateHandle() function in webrtc::EchoControlMobileImpl
|
D | gain_control_impl.cc | 344 void* GainControlImpl::CreateHandle() const { in CreateHandle() function in webrtc::GainControlImpl
|
D | echo_cancellation_impl.cc | 340 void* EchoCancellationImpl::CreateHandle() const { in CreateHandle() function in webrtc::EchoCancellationImpl
|
/external/v8/include/ |
D | v8.h | 822 static internal::Object** CreateHandle(internal::Isolate* isolate, 827 static internal::Object** CreateHandle(internal::HeapObject* heap_object, 5977 return Handle<T>(reinterpret_cast<T*>(HandleScope::CreateHandle( 5987 return Local<T>(reinterpret_cast<T*>(HandleScope::CreateHandle( 6413 O** result = HandleScope::CreateHandle(reinterpret_cast<HO*>(obj), value); 6922 HandleScope::CreateHandle(context, I::ReadEmbedderData<O*>(this, index));
|