Lines Matching defs:ScopedIncrement
160 ScopedIncrement ScopedDepth(&CurrentDepth);
183 ScopedIncrement ScopedDepth(&CurrentDepth);
200 ScopedIncrement ScopedDepth(&CurrentDepth);
212 ScopedIncrement ScopedDepth(&CurrentDepth);
223 ScopedIncrement ScopedDepth(&CurrentDepth);
229 ScopedIncrement ScopedDepth(&CurrentDepth);
237 ScopedIncrement ScopedDepth(&CurrentDepth);
241 ScopedIncrement ScopedDepth(&CurrentDepth);
249 ScopedIncrement ScopedDepth(&CurrentDepth);
267 ScopedIncrement ScopedDepth(&CurrentDepth);
277 ScopedIncrement ScopedDepth(&CurrentDepth);
285 ScopedIncrement ScopedDepth(&CurrentDepth);
321 struct ScopedIncrement {
322 explicit ScopedIncrement(int *Depth) : Depth(Depth) { ++(*Depth); }
323 ~ScopedIncrement() { --(*Depth); }