Lines Matching refs:CopyCounter
93 class CopyCounter {
95 CopyCounter() : fID(0), fCounter(NULL) {}
97 CopyCounter(uint32_t id, uint32_t* counter) : fID(id), fCounter(counter) {}
99 CopyCounter(const CopyCounter& other)
106 void operator=(const CopyCounter& other) {
112 bool operator==(const CopyCounter& other) const {
121 uint32_t hash_copy_counter(const CopyCounter&) {
128 SkTHashSet<CopyCounter, hash_copy_counter> set;
131 CopyCounter copyCounter1(1, &globalCounter);
132 CopyCounter copyCounter2(2, &globalCounter);