Home
last modified time | relevance | path

Searched defs:RefPointer (Results 1 – 1 of 1) sorted by relevance

/external/angle/src/libANGLE/
DCLRefPointer.h20 RefPointer() noexcept : mCLObject(nullptr) {} in RefPointer() function
22 explicit RefPointer(T *object) noexcept : mCLObject(object) in RefPointer() function
37 RefPointer(std::nullptr_t) noexcept : mCLObject(nullptr) {} in RefPointer() function
44 RefPointer(RefPointer &&other) noexcept : mCLObject(nullptr) { this->swap(other); } in RefPointer() function
51 RefPointer(const RefPointer<T> &other) : mCLObject(other.mCLObject) in RefPointer() function