Searched refs:CreateHandle (Results 1 – 13 of 13) sorted by relevance
/external/v8/src/ |
D | handles-inl.h | 24 reinterpret_cast<T**>(HandleScope::CreateHandle(isolate, object))); in New() 98 Object** HandleScope::CreateHandle(Isolate* isolate, Object* value) { in CreateHandle() function 118 return canonical ? canonical->Lookup(value) : CreateHandle(isolate, value); in GetHandle()
|
D | handles.cc | 145 return HandleScope::CreateHandle(isolate_, object); in Lookup() 158 *entry = HandleScope::CreateHandle(isolate_, object); in Lookup()
|
D | handles.h | 263 V8_INLINE static Object** CreateHandle(Isolate* isolate, Object* value);
|
D | api.cc | 703 i::Object** HandleScope::CreateHandle(i::Isolate* isolate, i::Object* value) { in CreateHandle() function in v8::HandleScope 704 return i::HandleScope::CreateHandle(isolate, value); in CreateHandle() 708 i::Object** HandleScope::CreateHandle(i::HeapObject* heap_object, in CreateHandle() function in v8::HandleScope 711 return i::HandleScope::CreateHandle(heap_object->GetIsolate(), value); in CreateHandle() 717 escape_slot_ = CreateHandle(isolate, isolate->heap()->the_hole_value()); in EscapableHandleScope()
|
/external/webrtc/webrtc/modules/audio_processing/ |
D | processing_component.h | 54 virtual void* CreateHandle() const = 0;
|
D | processing_component.cc | 80 handles_[i] = CreateHandle(); in Initialize()
|
D | echo_control_mobile_impl.h | 57 void* CreateHandle() const override;
|
D | gain_control_impl.h | 67 void* CreateHandle() const override;
|
D | echo_cancellation_impl.h | 71 void* CreateHandle() const override;
|
D | echo_control_mobile_impl.cc | 358 void* EchoControlMobileImpl::CreateHandle() const { in CreateHandle() function in webrtc::EchoControlMobileImpl
|
D | gain_control_impl.cc | 401 void* GainControlImpl::CreateHandle() const { in CreateHandle() function in webrtc::GainControlImpl
|
D | echo_cancellation_impl.cc | 454 void* EchoCancellationImpl::CreateHandle() const { in CreateHandle() function in webrtc::EchoCancellationImpl
|
/external/v8/include/ |
D | v8.h | 907 static internal::Object** CreateHandle(internal::Isolate* isolate, 912 static internal::Object** CreateHandle(internal::HeapObject* heap_object, 7271 return Local<T>(reinterpret_cast<T*>(HandleScope::CreateHandle( 7763 O** result = HandleScope::CreateHandle(reinterpret_cast<HO*>(obj), value); 8375 HandleScope::CreateHandle(context, I::ReadEmbedderData<O*>(this, index));
|