Lines Matching refs:CopyCounter
111 class CopyCounter { class
113 CopyCounter() : fID(0), fCounter(nullptr) {} in CopyCounter() function in __anon3d8523360311::CopyCounter
115 CopyCounter(uint32_t id, uint32_t* counter) : fID(id), fCounter(counter) {} in CopyCounter() function in __anon3d8523360311::CopyCounter
117 CopyCounter(const CopyCounter& other) in CopyCounter() function in __anon3d8523360311::CopyCounter
124 void operator=(const CopyCounter& other) { in operator =()
130 CopyCounter(CopyCounter&& other) { *this = std::move(other); } in CopyCounter() function in __anon3d8523360311::CopyCounter
131 void operator=(CopyCounter&& other) { in operator =()
137 bool operator==(const CopyCounter& other) const { in operator ==()
147 uint32_t operator()(const CopyCounter&) const { in operator ()()
155 SkTHashSet<CopyCounter, HashCopyCounter> set; in DEF_TEST()
158 CopyCounter copyCounter1(1, &globalCounter); in DEF_TEST()
159 CopyCounter copyCounter2(2, &globalCounter); in DEF_TEST()