Searched refs:ConstPtrType (Results 1 – 2 of 2) sorted by relevance
182 using ConstPtrType = const ObjType*; member201 static bool WasTransferred(const ConstPtrType& ptr) { return ptr != nullptr; } in WasTransferred()202 static bool WasMoved (const ConstPtrType& ptr) { return ptr != nullptr; } in WasMoved()209 using ConstPtrType = const PtrType; member227 static bool WasTransferred(const ConstPtrType& ptr) { return ptr == nullptr; } in WasTransferred()228 static bool WasMoved (const ConstPtrType& ptr) { return ptr == nullptr; } in WasMoved()235 using ConstPtrType = const PtrType; member253 static bool WasTransferred(const ConstPtrType& ptr) { return ptr == nullptr; } in WasTransferred()254 static bool WasMoved (const ConstPtrType& ptr) { return ptr == nullptr; } in WasMoved()261 using ConstPtrType = const PtrType; member[all …]
28 using ConstPtrType = const T*;54 using ConstPtrType = ::fbl::unique_ptr<const T>;79 using ConstPtrType = ::std::unique_ptr<const T, Deleter>;104 using ConstPtrType = ::fbl::RefPtr<const T>;
Completed in 5 milliseconds