Searched refs:hasSizeOfDescendant (Results 1 – 1 of 1) sorted by relevance
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/ |
D | SizeofExpressionCheck.cpp | 26 AST_MATCHER_P2(Expr, hasSizeOfDescendant, int, Depth, in AST_MATCHER_P2() argument 36 const auto M = hasSizeOfDescendant(Depth - 1, InnerMatcher); in AST_MATCHER_P2() 39 const auto M = hasSizeOfDescendant(Depth - 1, InnerMatcher); in AST_MATCHER_P2() 42 const auto LHS = hasSizeOfDescendant(Depth - 1, InnerMatcher); in AST_MATCHER_P2() 43 const auto RHS = hasSizeOfDescendant(Depth - 1, InnerMatcher); in AST_MATCHER_P2() 249 hasSizeOfDescendant(8, expr(SizeOfExpr, unless(SizeOfZero)))))))) in registerMatchers()
|