Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DContainerSizeEmptyCheck.cpp119 const auto ValidContainer = qualType( in registerMatchers() local
131 cxxMemberCallExpr(on(expr(anyOf(hasType(ValidContainer), in registerMatchers()
132 hasType(pointsTo(ValidContainer)), in registerMatchers()
133 hasType(references(ValidContainer)))) in registerMatchers()
144 expr(anyOf(hasType(ValidContainer), in registerMatchers()
145 hasType(pointsTo(ValidContainer)), in registerMatchers()
146 hasType(references(ValidContainer)))) in registerMatchers()
164 expr(hasType(pointsTo(ValidContainer))).bind("Pointee"))), in registerMatchers()
165 expr(hasType(ValidContainer)).bind("STLObject")); in registerMatchers()