Home
last modified time | relevance | path

Searched refs:ScopedIncrement (Results 1 – 1 of 1) sorted by relevance

/external/clang/lib/ASTMatchers/
DASTMatchFinder.cpp143 ScopedIncrement ScopedDepth(&CurrentDepth); in TraverseDecl()
147 ScopedIncrement ScopedDepth(&CurrentDepth); in TraverseStmt()
163 ScopedIncrement ScopedDepth(&CurrentDepth); in TraverseType()
175 ScopedIncrement ScopedDepth(&CurrentDepth); in TraverseTypeLoc()
186 ScopedIncrement ScopedDepth(&CurrentDepth); in TraverseNestedNameSpecifier()
192 ScopedIncrement ScopedDepth(&CurrentDepth); in TraverseNestedNameSpecifierLoc()
203 struct ScopedIncrement { struct in clang::ast_matchers::internal::__anon018ced360111::MatchChildASTVisitor
204 explicit ScopedIncrement(int *Depth) : Depth(Depth) { ++(*Depth); } in ScopedIncrement() function
205 ~ScopedIncrement() { --(*Depth); } in ~ScopedIncrement() argument