Searched defs:Ptr (Results 1 – 2 of 2) sorted by relevance
36 constexpr Ptr() noexcept : pointer(nullptr) in Ptr() function41 constexpr explicit Ptr(std::nullptr_t) noexcept : pointer(nullptr) in Ptr() function46 explicit Ptr(Pointer ptr) : pointer(ptr) in Ptr() function51 Ptr(Pointer ref, PtrCheckerType<T> checker) : pointer(ref) in Ptr() function56 explicit Ptr(T &ref) : pointer(&ref) in Ptr() function61 Ptr(T &ref, PtrCheckerType<T> checker) : pointer(&ref) in Ptr() function69 explicit Ptr(U *ptr) : pointer(ptr) in Ptr() function75 explicit Ptr(U &ref) : pointer(&ref) in Ptr() function81 Ptr(U &ref, PtrCheckerType<T> checker) : pointer(&ref) in Ptr() function89 explicit Ptr(const Ptr &other) : pointer(other.get()) {} in Ptr() function[all …]
56 using Ptr = std::unique_ptr<Task>; variable