Home
last modified time | relevance | path

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

/third_party/grpc/test/core/util/
Dref_counted_ptr_test.cc50 TEST(RefCountedPtr, DefaultConstructor) { RefCountedPtr<Foo> foo; } in TEST() argument
52 TEST(RefCountedPtr, ExplicitConstructorEmpty) { in TEST() argument
56 TEST(RefCountedPtr, ExplicitConstructor) { RefCountedPtr<Foo> foo(new Foo()); } in TEST() argument
58 TEST(RefCountedPtr, MoveConstructor) { in TEST() argument
66 TEST(RefCountedPtr, MoveAssignment) { in TEST() argument
74 TEST(RefCountedPtr, CopyConstructor) { in TEST() argument
81 TEST(RefCountedPtr, CopyAssignment) { in TEST() argument
88 TEST(RefCountedPtr, CopyAssignmentWhenEmpty) { in TEST() argument
96 TEST(RefCountedPtr, CopyAssignmentToSelf) { in TEST() argument
101 TEST(RefCountedPtr, EnclosedScope) { in TEST() argument
[all …]
/third_party/grpc/src/core/util/
Dref_counted_ptr.h40 RefCountedPtr() {} in RefCountedPtr() function
42 RefCountedPtr(std::nullptr_t) {} in RefCountedPtr() function
47 explicit RefCountedPtr(Y* value) : value_(value) {} in RefCountedPtr() function
50 RefCountedPtr(RefCountedPtr&& other) noexcept { in RefCountedPtr() function
57 RefCountedPtr(RefCountedPtr<Y>&& other) noexcept { in RefCountedPtr() function
75 RefCountedPtr(const RefCountedPtr& other) { in RefCountedPtr() function
82 RefCountedPtr(const RefCountedPtr<Y>& other) { in RefCountedPtr() function
/third_party/grpc/src/core/ext/transport/chttp2/server/
Dchttp2_server.h181 friend class RefCountedPtr<NewChttp2ServerListener>; variable