Home
last modified time | relevance | path

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

/llvm-project/clang-tools-extra/clang-tidy/bugprone/
H A DStringviewNullptrCheck.cpp28 AST_MATCHER_P(InitListExpr, initCountIs, unsigned, N) { in AST_MATCHER_P() argument
68 auto NullInitList = initListExpr(initCountIs(1), hasInit(0, NullLiteral)); in StringviewNullptrCheckImpl()
71 auto EmptyInitList = initListExpr(initCountIs(0)); in StringviewNullptrCheckImpl()
/llvm-project/clang-tools-extra/clang-tidy/modernize/
H A DUseDefaultMemberInitCheck.cpp19 AST_MATCHER_P(InitListExpr, initCountIs, unsigned, N) { in AST_MATCHER_P() argument
208 anyOf(initListExpr(anyOf(allOf(initCountIs(1), hasInit(0, InitBase)), in registerMatchers()
209 initCountIs(0), hasType(arrayType()))), in registerMatchers()