Home | History | Annotate | Download | only in ASTMatchers

Lines Matching refs:isInteger

686                          stmt(hasDescendant(isInteger()))));
691 varDecl(hasDescendant(isInteger())).bind("x"))),
712 varDecl(hasName("i"), has(isInteger()))));
714 varDecl(hasName("i"), has(isInteger()))));
717 qualType(functionType(), forEach(qualType(isInteger()).bind("x"))),
1193 TEST(IsInteger, MatchesIntegers) {
1194 EXPECT_TRUE(matches("int i = 0;", varDecl(hasType(isInteger()))));
1198 to(varDecl(hasType(isInteger()))))))));
1201 TEST(IsInteger, ReportsNoFalsePositives) {
1202 EXPECT_TRUE(notMatches("int *i;", varDecl(hasType(isInteger()))));
1205 to(varDecl(hasType(isInteger()))))))));
2348 memberExpr(hasDeclaration(fieldDecl(hasType(isInteger()))))));
2351 memberExpr(hasDeclaration(fieldDecl(hasType(isInteger()))))));
2563 hasImplicitDestinationType(isInteger()))));
3314 EXPECT_TRUE(matches("const int a = 0;", qualType(isInteger())));
3324 complexType(hasElementType(isInteger()))));
3369 atomicType(hasValueType(isInteger()))));
3371 atomicType(hasValueType(isInteger()))));
3380 autoType(hasDeducedType(isInteger()))));
3382 autoType(hasDeducedType(isInteger()))));