HomeSort by relevance Sort by last modified time
    Searched defs:obj_ (Results 1 - 25 of 26) sorted by null

1 2

  /art/runtime/
handle_wrapper.h 31 : MutableHandle<T>(handle), obj_(obj) {
37 *obj_ = MutableHandle<T>::Get();
41 T** const obj_; member in class:art::HandleWrapper
51 : MutableHandle<T>(handle), obj_(obj) {}
56 *obj_ = MutableHandle<T>::Get();
60 ObjPtr<T>* const obj_; member in class:art::HandleWrapperObjPtr
object_lock.h 43 Handle<T> const obj_; member in class:art::ObjectLock
61 Handle<T> const obj_; member in class:art::ObjectTryLock
monitor.h 314 GcRoot<mirror::Object> obj_; member in class:art::Monitor
monitor_test.cc 328 explicit TryLockTask(Handle<mirror::Object> obj) : obj_(obj) {}
333 ObjectTryLock<mirror::Object> lock(self, obj_);
342 Handle<mirror::Object> obj_; member in class:art::TryLockTask
  /external/tensorflow/tensorflow/core/lib/core/
refcount.h 75 explicit ScopedUnref(RefCounted* o) : obj_(o) {}
77 if (obj_) obj_->Unref();
81 RefCounted* obj_; member in class:tensorflow::core::ScopedUnref
  /external/webrtc/talk/app/webrtc/java/jni/
jni_helpers.h 128 : obj_(static_cast<T>(jni->NewGlobalRef(obj))) {}
130 DeleteGlobalRef(AttachCurrentThreadIfNeeded(), obj_); local
133 return obj_;
136 T obj_; member in class:webrtc_jni::ScopedGlobalRef
  /external/webrtc/webrtc/modules/audio_device/android/
opensles_common.h 26 ScopedSLObject() : obj_(nullptr) {}
31 RTC_DCHECK(!obj_);
32 return &obj_;
35 SLDerefType operator->() { return *obj_; }
37 SLType Get() const { return obj_; }
40 if (obj_) {
41 (*obj_)->Destroy(obj_);
42 obj_ = nullptr;
47 SLType obj_; member in class:webrtc::ScopedSLObject
    [all...]
  /external/webrtc/webrtc/modules/utility/include/
helpers_android.h 73 : jni_(jni), obj_(static_cast<T>(NewGlobalRef(jni, obj))) {}
75 DeleteGlobalRef(jni_, obj_);
78 return obj_;
82 T obj_; member in class:webrtc::ScopedGlobalRef
  /development/vndk/tools/header-checker/src/repr/symbol/
so_file_parser.cpp 80 const llvm::object::ELFObjectFile<T> *obj_; member in class:header_checker::repr::ELFSoFileParser
  /external/webrtc/webrtc/base/
platform_thread.h 78 void* const obj_; member in class:rtc::PlatformThread
  /external/libchrome/base/android/
scoped_java_ref.h 48 constexpr JavaRef() : obj_(nullptr) {}
59 jobject obj() const { return obj_; }
61 bool is_null() const { return obj_ == nullptr; }
71 JavaRef(JNIEnv* env, jobject obj) : obj_(obj) {}
74 void swap(JavaRef& other) { std::swap(obj_, other.obj_); }
85 jobject obj_; member in class:base::android::JavaRef
  /art/test/904-object-allocation/
tracking.cc 52 ScopedGlobalRef(JNIEnv* env, T obj) : obj_(env->NewGlobalRef(obj)) {}
54 : obj_(GetEnv()->NewGlobalRef(src.obj_)) {}
55 ScopedGlobalRef(ScopedGlobalRef<T>&& src) noexcept : obj_(src.obj_) { function in class:art::Test904ObjectAllocation::ScopedGlobalRef
56 src.obj_ = nullptr;
60 GetEnv()->DeleteGlobalRef(obj_);
64 return env->NewLocalRef(obj_);
74 jobject obj_; member in class:art::Test904ObjectAllocation::ScopedGlobalRef
  /external/webrtc/webrtc/examples/peerconnection/client/
main_wnd.h 144 explicit AutoLock(T* obj) : obj_(obj) { obj_->Lock(); }
145 ~AutoLock() { obj_->Unlock(); }
147 T* obj_; member in class:MainWnd::AutoLock
  /external/v8/src/
api-natives.cc 148 obj_(obj) {
150 DisableAccessChecks(isolate_, obj_);
155 EnableAccessChecks(isolate_, obj_);
162 Handle<JSObject> obj_; member in class:v8::internal::__anon48086::AccessCheckDisableScope
  /art/compiler/optimizing/
code_generator_mips64.cc 580 obj_(obj),
642 // update the field in the holder (`*(obj_ + field_offset_)`).
658 GpuRegister base = obj_;
709 const GpuRegister obj_; member in class:art::mips64::ReadBarrierMarkAndUpdateFieldSlowPathMIPS64
710 // The location of the offset of the marked reference field within `obj_`.
730 obj_(obj),
894 const Location obj_; member in class:art::mips64::ReadBarrierForHeapReferenceSlowPathMIPS64
    [all...]
code_generator_arm64.cc 614 obj_(obj),
730 parallel_move.AddMove(obj_,
779 const Location obj_; member in class:art::arm64::ReadBarrierForHeapReferenceSlowPathARM64
    [all...]
code_generator_arm_vixl.cc 730 obj_(obj),
895 const Location obj_; member in class:art::arm::ReadBarrierForHeapReferenceSlowPathARMVIXL
    [all...]
code_generator_mips.cc 624 obj_(obj),
687 // update the field in the holder (`*(obj_ + field_offset_)`).
703 Register base = obj_;
763 const Register obj_; member in class:art::mips::ReadBarrierMarkAndUpdateFieldSlowPathMIPS
764 // The location of the offset of the marked reference field within `obj_`.
784 obj_(obj),
950 const Location obj_; member in class:art::mips::ReadBarrierForHeapReferenceSlowPathMIPS
    [all...]
code_generator_x86.cc 554 obj_(obj),
632 Register base = obj_;
686 const Register obj_; member in class:art::x86::ReadBarrierMarkAndUpdateFieldSlowPathX86
687 // The address of the marked reference field. The base of this address must be `obj_`.
710 obj_(obj),
868 const Location obj_; member in class:art::x86::ReadBarrierForHeapReferenceSlowPathX86
    [all...]
code_generator_x86_64.cc 568 obj_(obj),
651 CpuRegister base = obj_;
706 const CpuRegister obj_; member in class:art::x86_64::ReadBarrierMarkAndUpdateFieldSlowPathX86_64
707 // The address of the marked reference field. The base of this address must be `obj_`.
731 obj_(obj),
891 const Location obj_; member in class:art::x86_64::ReadBarrierForHeapReferenceSlowPathX86_64
    [all...]
  /external/webrtc/talk/session/media/
channel_unittest.cc 429 : obj_(obj),
435 bool result = (*obj_.*method_)();
441 ChannelTest<T>* obj_; member in class:ChannelTest::CallThread
    [all...]
  /art/dex2oat/
dex2oat.cc 2863 jobject obj_; member in class:art::ScopedGlobalRef
    [all...]
  /art/runtime/gc/
heap.cc 2929 const mirror::Object* const obj_; member in class:art::gc::RootMatchesObjectVisitor::mirror
    [all...]
  /external/v8/src/ast/
ast.h 1655 Expression* obj_; member in class:v8::internal::final
    [all...]
  /external/protobuf/php/ext/google/protobuf/
upb.h 3389 const void *obj_; member in struct:upb::HandlerAttributes::upb::BufferHandle::upb_bufhandle
    [all...]

Completed in 1924 milliseconds

1 2