Searched defs:CopyCounter (Results 1 – 3 of 3) sorted by relevance
111 class CopyCounter { class113 CopyCounter() : fID(0), fCounter(nullptr) {} in CopyCounter() function in __anonea9f95fe0311::CopyCounter115 CopyCounter(uint32_t id, uint32_t* counter) : fID(id), fCounter(counter) {} in CopyCounter() function in __anonea9f95fe0311::CopyCounter117 CopyCounter(const CopyCounter& other) in CopyCounter() function in __anonea9f95fe0311::CopyCounter130 CopyCounter(CopyCounter&& other) { *this = std::move(other); } in CopyCounter() function in __anonea9f95fe0311::CopyCounter
195 class CopyCounter { class197 CopyCounter(int* copies, int* assigns) in CopyCounter() function in base::__anon70af51ee0111::CopyCounter199 CopyCounter(const CopyCounter& other) : counter_(other.counter_) {} in CopyCounter() function in base::__anon70af51ee0111::CopyCounter205 explicit CopyCounter(const DerivedCopyMoveCounter& other) : counter_(other) {} in CopyCounter() function in base::__anon70af51ee0111::CopyCounter
457 struct CopyCounter struct