Home
last modified time | relevance | path

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

/device/generic/vulkan-cereal/third-party/perfetto/include/perfetto/protozero/
Dcopyable_ptr.h41 CopyablePtr() : ptr_(new T()) {} in CopyablePtr() function
45 CopyablePtr(const CopyablePtr& other) : ptr_(new T(*other.ptr_)) {} in CopyablePtr() function
52 CopyablePtr(CopyablePtr&& other) noexcept : ptr_(std::move(other.ptr_)) { in CopyablePtr() function
/device/generic/vulkan-cereal/third-party/perfetto-tracing-only/
Dperfetto.h472 CopyablePtr() : ptr_(new T()) {} in CopyablePtr() function
476 CopyablePtr(const CopyablePtr& other) : ptr_(new T(*other.ptr_)) {} in CopyablePtr() function
483 CopyablePtr(CopyablePtr&& other) noexcept : ptr_(std::move(other.ptr_)) { in CopyablePtr() function