HomeSort by relevance Sort by last modified time
    Searched defs:m_pObj (Results 1 - 7 of 7) sorted by null

  /external/pdfium/core/fpdfdoc/
cpdf_dest.h 24 CPDF_Object* GetObject() const { return m_pObj.Get(); }
43 UnownedPtr<CPDF_Object> m_pObj;
cpdf_filespec.h 30 CPDF_Object* GetObj() const { return m_pObj.Get(); }
39 UnownedPtr<CPDF_Object> const m_pObj;
  /external/pdfium/core/fpdfapi/page/
cpdf_countedobject.h 18 : m_nCount(1), m_pObj(ptr.release()) {}
21 m_pObj = ptr.release();
25 T* pObj = m_pObj;
26 m_pObj = nullptr;
29 T* get() const { return m_pObj; }
31 ASSERT(m_pObj);
33 return m_pObj;
43 T* m_pObj;
  /external/pdfium/core/fxcrt/
maybe_owned.h 24 MaybeOwned() : m_pObj(nullptr) {}
25 explicit MaybeOwned(T* ptr) : m_pObj(ptr) {}
27 : m_pOwnedObj(std::move(ptr)), m_pObj(m_pOwnedObj.get()) {}
31 : m_pOwnedObj(that.m_pOwnedObj.release()), m_pObj(that.m_pObj) {
32 that.m_pObj = nullptr;
37 m_pObj = m_pOwnedObj.get();
41 m_pObj = ptr;
45 T* Get() const { return m_pObj; }
54 m_pObj = that.m_pObj
    [all...]
unowned_ptr.h 46 explicit UnownedPtr(U* pObj) : m_pObj(pObj) {}
56 m_pObj = that;
63 m_pObj = that.Get();
83 T* Get() const { return m_pObj; }
88 std::swap(pTemp, m_pObj);
92 explicit operator bool() const { return !!m_pObj; }
93 T& operator*() const { return *m_pObj; }
94 T* operator->() const { return m_pObj; }
99 if (m_pObj)
100 reinterpret_cast<const volatile uint8_t*>(m_pObj)[0]
    [all...]
retain_ptr.h 26 explicit RetainPtr(T* pObj) : m_pObj(pObj) {
27 if (m_pObj)
28 m_pObj->Retain();
50 m_pObj.reset(obj);
53 T* Get() const { return m_pObj.get(); }
54 void Swap(RetainPtr& that) { m_pObj.swap(that.m_pObj); }
57 T* Leak() { return m_pObj.release(); }
58 void Unleak(T* ptr) { m_pObj.reset(ptr); }
67 m_pObj.reset(that.Leak())
    [all...]
weak_ptr.h 62 : m_nCount(0), m_pObj(std::move(ptr)) {}
63 void Reset(std::unique_ptr<T, D> ptr) { m_pObj = std::move(ptr); }
65 m_pObj.reset(); // unique_ptr nulls first before invoking delete.
67 T* Get() const { return m_pObj.get(); }
70 return m_pObj.get();
82 std::unique_ptr<T, D> m_pObj;

Completed in 87 milliseconds