Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
Dptr.h36 constexpr Ptr() noexcept : pointer(nullptr) in Ptr() function
41 constexpr explicit Ptr(std::nullptr_t) noexcept : pointer(nullptr) in Ptr() function
46 explicit Ptr(Pointer ptr) : pointer(ptr) in Ptr() function
51 Ptr(Pointer ref, PtrCheckerType<T> checker) : pointer(ref) in Ptr() function
56 explicit Ptr(T &ref) : pointer(&ref) in Ptr() function
61 Ptr(T &ref, PtrCheckerType<T> checker) : pointer(&ref) in Ptr() function
69 explicit Ptr(U *ptr) : pointer(ptr) in Ptr() function
75 explicit Ptr(U &ref) : pointer(&ref) in Ptr() function
81 Ptr(U &ref, PtrCheckerType<T> checker) : pointer(&ref) in Ptr() function
89 explicit Ptr(const Ptr &other) : pointer(other.get()) {} in Ptr() function
[all …]
/arkcompiler/runtime_core/static_core/libpandabase/taskmanager/
Dtask.h56 using Ptr = std::unique_ptr<Task>; variable