Lines Matching refs:CopyCounter
192 class CopyCounter { class
194 CopyCounter() : fID(0), fCounter(nullptr) {} in CopyCounter() function in __anonbed1977f0311::CopyCounter
196 CopyCounter(uint32_t id, uint32_t* counter) : fID(id), fCounter(counter) {} in CopyCounter() function in __anonbed1977f0311::CopyCounter
198 CopyCounter(const CopyCounter& other) in CopyCounter() function in __anonbed1977f0311::CopyCounter
205 void operator=(const CopyCounter& other) { in operator =()
211 CopyCounter(CopyCounter&& other) { *this = std::move(other); } in CopyCounter() function in __anonbed1977f0311::CopyCounter
212 void operator=(CopyCounter&& other) { in operator =()
218 bool operator==(const CopyCounter& other) const { in operator ==()
228 uint32_t operator()(const CopyCounter&) const { in operator ()()
236 SkTHashSet<CopyCounter, HashCopyCounter> set; in DEF_TEST()
239 CopyCounter copyCounter1(1, &globalCounter); in DEF_TEST()
240 CopyCounter copyCounter2(2, &globalCounter); in DEF_TEST()