Home
last modified time | relevance | path

Searched refs:obj_ (Results 1 – 17 of 17) sorted by relevance

/external/webrtc/webrtc/modules/audio_device/android/
Dopensles_common.h26 ScopedSLObject() : obj_(nullptr) {} in ScopedSLObject()
31 RTC_DCHECK(!obj_); in Receive()
32 return &obj_; in Receive()
35 SLDerefType operator->() { return *obj_; }
37 SLType Get() const { return obj_; } in Get()
40 if (obj_) { in Reset()
41 (*obj_)->Destroy(obj_); in Reset()
42 obj_ = nullptr; in Reset()
47 SLType obj_;
/external/webrtc/webrtc/modules/utility/include/
Dhelpers_android.h73 : jni_(jni), obj_(static_cast<T>(NewGlobalRef(jni, obj))) {} in ScopedGlobalRef()
75 DeleteGlobalRef(jni_, obj_); in ~ScopedGlobalRef()
78 return obj_;
82 T obj_; variable
/external/webrtc/talk/app/webrtc/java/jni/
Djni_helpers.h128 : obj_(static_cast<T>(jni->NewGlobalRef(obj))) {} in ScopedGlobalRef()
130 DeleteGlobalRef(AttachCurrentThreadIfNeeded(), obj_); in ~ScopedGlobalRef()
133 return obj_;
136 T obj_;
/external/webrtc/webrtc/examples/peerconnection/client/
Dmain_wnd.h144 explicit AutoLock(T* obj) : obj_(obj) { obj_->Lock(); } in AutoLock()
145 ~AutoLock() { obj_->Unlock(); } in ~AutoLock()
147 T* obj_;
/external/webrtc/webrtc/base/
Dplatform_thread.cc98 obj_(obj), in PlatformThread()
185 if (!run_function_(obj_)) in PlatformThread()
Dplatform_thread.h78 void* const obj_; variable
/external/libxml2/result/
Ddia1.sax228 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
38 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
128 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
138 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
226 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
236 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
Ddia2.sax228 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
38 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
128 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
138 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
226 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
236 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
/external/v8/src/
Dapi-natives.cc125 obj_(obj) { in AccessCheckDisableScope()
127 DisableAccessChecks(isolate_, obj_); in AccessCheckDisableScope()
132 EnableAccessChecks(isolate_, obj_); in ~AccessCheckDisableScope()
139 Handle<JSObject> obj_; member in v8::internal::__anon930720db0111::AccessCheckDisableScope
Dapi.h53 return obj_.value(); in value()
66 NeanderObject obj_;
80 : obj_(obj) { } in NeanderArray()
Dapi.cc1023 NeanderArray::NeanderArray(v8::internal::Isolate* isolate) : obj_(isolate, 2) { in NeanderArray()
1024 obj_.set(0, i::Smi::FromInt(0)); in NeanderArray()
1029 return i::Smi::cast(obj_.get(0))->value(); in length()
1036 return obj_.get(offset + 1); in get()
1047 int size = obj_.size(); in add()
1053 obj_.value()->set_elements(*new_elms); in add()
1055 obj_.set(length + 1, *value); in add()
1056 obj_.set(0, i::Smi::FromInt(length + 1)); in add()
1062 obj_.set(index + 1, value); in set()
/external/harfbuzz_ng/src/
Dhb-private.hh813 const void *obj_, in hb_auto_trace_t()
816 ...) : plevel (plevel_), what (what_), obj (obj_), returned (false) in hb_auto_trace_t()
Dhb-ot-layout.cc948 inline void init (const void *obj_, hb_apply_func_t apply_func_) in init()
950 obj = obj_; in init()
/external/v8/src/heap/
Dheap.h398 *target = e.obj_; in remove()
405 *target = entry->obj_; in remove()
417 : obj_(obj), size_(size), was_marked_black_(was_marked_black) {} in Entry()
419 HeapObject* obj_; member
Dheap-inl.h42 entry->obj_ = target; in insert()
/external/v8/src/ast/
Dast.h1783 Expression* obj() const { return obj_; } in obj()
1786 void set_obj(Expression* e) { obj_ = e; } in set_obj()
1854 obj_(obj), in Property()
1867 Expression* obj_; variable
/external/webrtc/talk/session/media/
Dchannel_unittest.cc429 : obj_(obj), in CallThread()
435 bool result = (*obj_.*method_)(); in DoWork()
441 ChannelTest<T>* obj_; member in ChannelTest::CallThread