Home | History | Annotate | Download | only in ASTMatchers

Lines Matching full:isinteger

730                          stmt(hasDescendant(isInteger()))));
735 varDecl(hasDescendant(isInteger())).bind("x"))),
756 varDecl(hasName("i"), has(isInteger()))));
758 varDecl(hasName("i"), has(isInteger()))));
761 qualType(functionType(), forEach(qualType(isInteger()).bind("x"))),
1269 TEST(IsInteger, MatchesIntegers) {
1270 EXPECT_TRUE(matches("int i = 0;", varDecl(hasType(isInteger()))));
1274 to(varDecl(hasType(isInteger()))))))));
1277 TEST(IsInteger, ReportsNoFalsePositives) {
1278 EXPECT_TRUE(notMatches("int *i;", varDecl(hasType(isInteger()))));
1281 to(varDecl(hasType(isInteger()))))))));
2554 memberExpr(hasDeclaration(fieldDecl(hasType(isInteger()))))));
2557 memberExpr(hasDeclaration(fieldDecl(hasType(isInteger()))))));
2769 hasImplicitDestinationType(isInteger()))));
3693 EXPECT_TRUE(matches("const int a = 0;", qualType(isInteger())));
3703 complexType(hasElementType(isInteger()))));
3751 atomicType(hasValueType(isInteger()))));
3753 atomicType(hasValueType(isInteger()))));
3765 // autoType(hasDeducedType(isInteger()))));
3767 // autoType(hasDeducedType(isInteger()))));