Home
last modified time | relevance | path

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

/aosp_15_r20/external/grpc-grpc/test/core/gprpp/
H A Dref_counted_ptr_test.cc52 TEST(RefCountedPtr, DefaultConstructor) { RefCountedPtr<Foo> foo; } in TEST() argument
54 TEST(RefCountedPtr, ExplicitConstructorEmpty) { in TEST() argument
58 TEST(RefCountedPtr, ExplicitConstructor) { RefCountedPtr<Foo> foo(new Foo()); } in TEST() argument
60 TEST(RefCountedPtr, MoveConstructor) { in TEST() argument
68 TEST(RefCountedPtr, MoveAssignment) { in TEST() argument
76 TEST(RefCountedPtr, CopyConstructor) { in TEST() argument
83 TEST(RefCountedPtr, CopyAssignment) { in TEST() argument
90 TEST(RefCountedPtr, CopyAssignmentWhenEmpty) { in TEST() argument
98 TEST(RefCountedPtr, CopyAssignmentToSelf) { in TEST() argument
103 TEST(RefCountedPtr, EnclosedScope) { in TEST() argument
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/gprpp/
Dref_counted_ptr.h37 RefCountedPtr() {} in RefCountedPtr() function
39 RefCountedPtr(std::nullptr_t) {} in RefCountedPtr() function
43 explicit RefCountedPtr(Y* value) : value_(value) {} in RefCountedPtr() function
46 RefCountedPtr(RefCountedPtr&& other) noexcept { in RefCountedPtr() function
52 RefCountedPtr(RefCountedPtr<Y>&& other) noexcept { in RefCountedPtr() function
69 RefCountedPtr(const RefCountedPtr& other) { in RefCountedPtr() function
75 RefCountedPtr(const RefCountedPtr<Y>& other) { in RefCountedPtr() function
/aosp_15_r20/external/grpc-grpc/src/core/lib/gprpp/
H A Dref_counted_ptr.h42 RefCountedPtr() {} in RefCountedPtr() function
44 RefCountedPtr(std::nullptr_t) {} in RefCountedPtr() function
49 explicit RefCountedPtr(Y* value) : value_(value) {} in RefCountedPtr() function
52 RefCountedPtr(RefCountedPtr&& other) noexcept { in RefCountedPtr() function
59 RefCountedPtr(RefCountedPtr<Y>&& other) noexcept { in RefCountedPtr() function
77 RefCountedPtr(const RefCountedPtr& other) { in RefCountedPtr() function
84 RefCountedPtr(const RefCountedPtr<Y>& other) { in RefCountedPtr() function