Home
last modified time | relevance | path

Searched defs:CopyCounter (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/skia/tests/
H A DHashTest.cpp308 class CopyCounter { class
310 CopyCounter() : fID(0), fCounter(nullptr) {} in CopyCounter() function in __anon4355cab50611::CopyCounter
312 CopyCounter(uint32_t id, uint32_t* counter) : fID(id), fCounter(counter) {} in CopyCounter() function in __anon4355cab50611::CopyCounter
314 CopyCounter(const CopyCounter& other) in CopyCounter() function in __anon4355cab50611::CopyCounter
327 CopyCounter(CopyCounter&& other) { *this = std::move(other); } in CopyCounter() function in __anon4355cab50611::CopyCounter
/aosp_15_r20/external/libchrome/base/
H A Dbind_unittest.cc202 class CopyCounter { class
204 CopyCounter(int* copies, int* assigns) in CopyCounter() function in base::__anonab4e4da50111::CopyCounter
209 explicit CopyCounter(const DerivedCopyMoveCounter& other) : counter_(other) {} in CopyCounter() function in base::__anonab4e4da50111::CopyCounter
/aosp_15_r20/external/cronet/base/functional/
H A Dbind_unittest.cc204 class CopyCounter { class
206 CopyCounter(int* copies, int* assigns) in CopyCounter() function in base::__anon8a4af9fd0111::CopyCounter
211 explicit CopyCounter(const DerivedCopyMoveCounter& other) : counter_(other) {} in CopyCounter() function in base::__anon8a4af9fd0111::CopyCounter
/aosp_15_r20/external/clang/test/SemaCXX/
H A Dnew-delete.cpp457 struct CopyCounter struct