Lines Matching refs:ScopedIncrement
155 ScopedIncrement ScopedDepth(&CurrentDepth); in TraverseDecl()
178 ScopedIncrement ScopedDepth(&CurrentDepth); in TraverseStmt()
195 ScopedIncrement ScopedDepth(&CurrentDepth); in TraverseType()
207 ScopedIncrement ScopedDepth(&CurrentDepth); in TraverseTypeLoc()
218 ScopedIncrement ScopedDepth(&CurrentDepth); in TraverseNestedNameSpecifier()
224 ScopedIncrement ScopedDepth(&CurrentDepth); in TraverseNestedNameSpecifierLoc()
232 ScopedIncrement ScopedDepth(&CurrentDepth); in TraverseConstructorInitializer()
236 ScopedIncrement ScopedDepth(&CurrentDepth); in TraverseTemplateArgumentLoc()
244 ScopedIncrement ScopedDepth(&CurrentDepth); in TraverseLambdaExpr()
279 struct ScopedIncrement { struct in clang::ast_matchers::internal::__anon047f7aa50111::MatchChildASTVisitor
280 explicit ScopedIncrement(int *Depth) : Depth(Depth) { ++(*Depth); } in ScopedIncrement() function
281 ~ScopedIncrement() { --(*Depth); } in ~ScopedIncrement() argument