Lines Matching refs:Set
92 for (auto& Set : Sets) { in run() local
93 benchmark::DoNotOptimize(Set.insert(K)); in run()
113 for (auto& Set : Data.Sets) { in run() local
114 benchmark::DoNotOptimize(Set.find(K)); in run()
134 for (auto& Set : Data.Sets) { in run() local
135 benchmark::DoNotOptimize(Set.find(K) != Set.end()); in run()
155 for (auto& Set : Data.Sets) { in run() local
156 benchmark::DoNotOptimize(Set.insert(K)); in run()
176 for (auto& Set : Data.Sets) { in run() local
177 benchmark::DoNotOptimize(Set.erase(Set.insert(K).first)); in run()
196 for (auto& Set : Data.Sets) { in run() local
197 for (auto& V : Set) { in run()
215 for (auto& Set : Data.Sets) { in run() local
216 for (auto it = Set.begin(); it != Set.end(); ++it) { in run()