Home
last modified time | relevance | path

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

/external/skia/tests/
DHashTest.cpp111 class CopyCounter { class
113 CopyCounter() : fID(0), fCounter(nullptr) {} in CopyCounter() function in __anonea9f95fe0311::CopyCounter
115 CopyCounter(uint32_t id, uint32_t* counter) : fID(id), fCounter(counter) {} in CopyCounter() function in __anonea9f95fe0311::CopyCounter
117 CopyCounter(const CopyCounter& other) in CopyCounter() function in __anonea9f95fe0311::CopyCounter
130 CopyCounter(CopyCounter&& other) { *this = std::move(other); } in CopyCounter() function in __anonea9f95fe0311::CopyCounter
/external/libchrome/base/
Dbind_unittest.cc195 class CopyCounter { class
197 CopyCounter(int* copies, int* assigns) in CopyCounter() function in base::__anon70af51ee0111::CopyCounter
199 CopyCounter(const CopyCounter& other) : counter_(other.counter_) {} in CopyCounter() function in base::__anon70af51ee0111::CopyCounter
205 explicit CopyCounter(const DerivedCopyMoveCounter& other) : counter_(other) {} in CopyCounter() function in base::__anon70af51ee0111::CopyCounter
/external/clang/test/SemaCXX/
Dnew-delete.cpp457 struct CopyCounter struct