Home | History | Annotate | Download | only in ASTMatchers

Lines Matching refs:isInteger

814                          stmt(hasDescendant(isInteger()))));
819 varDecl(hasDescendant(isInteger())).bind("x"))),
840 varDecl(hasName("i"), has(isInteger()))));
842 varDecl(hasName("i"), has(isInteger()))));
845 qualType(functionType(), forEach(qualType(isInteger()).bind("x"))),
1457 TEST(IsInteger, MatchesIntegers) {
1458 EXPECT_TRUE(matches("int i = 0;", varDecl(hasType(isInteger()))));
1462 to(varDecl(hasType(isInteger()))))))));
1465 TEST(IsInteger, ReportsNoFalsePositives) {
1466 EXPECT_TRUE(notMatches("int *i;", varDecl(hasType(isInteger()))));
1469 to(varDecl(hasType(isInteger()))))))));
2417 hasLHS(hasType(isInteger())), hasRHS(hasType(pointsTo(qualType()))));
2953 memberExpr(hasDeclaration(fieldDecl(hasType(isInteger()))))));
2956 memberExpr(hasDeclaration(fieldDecl(hasType(isInteger()))))));
3177 hasImplicitDestinationType(isInteger()))));
4185 EXPECT_TRUE(matches("const int a = 0;", qualType(isInteger())));
4200 complexType(hasElementType(isInteger()))));
4248 atomicType(hasValueType(isInteger()))));
4250 atomicType(hasValueType(isInteger()))));
4262 // autoType(hasDeducedType(isInteger()))));
4264 // autoType(hasDeducedType(isInteger()))));