Searched defs:CFX_MaybeOwned (Results 1 - 1 of 1) sorted by relevance

/external/pdfium/core/fxcrt/
H A Dcfx_maybe_owned.h20 class CFX_MaybeOwned { class
22 CFX_MaybeOwned() : m_pObj(nullptr) {} function in class:CFX_MaybeOwned
23 explicit CFX_MaybeOwned(T* ptr) : m_pObj(ptr) {} function in class:CFX_MaybeOwned
24 explicit CFX_MaybeOwned(std::unique_ptr<T, D> ptr) function in class:CFX_MaybeOwned
27 CFX_MaybeOwned(const CFX_MaybeOwned& that) = delete;
28 CFX_MaybeOwned(CFX_MaybeOwned&& that) function in class:CFX_MaybeOwned
49 CFX_MaybeOwned& operator=(const CFX_MaybeOwned
[all...]

Completed in 777 milliseconds