Searched refs:enumDecl (Results 1 – 5 of 5) sorted by relevance
75 …com.github.javaparser.ast.body.EnumDeclaration enumDecl = Navigator.demandEnum(cu, "AccessEnumMemb… in accessEnumFieldThroughThis() local76 MethodDeclaration method = Navigator.demandMethod(enumDecl, "getLabel"); in accessEnumFieldThroughThis()87 …com.github.javaparser.ast.body.EnumDeclaration enumDecl = Navigator.demandEnum(cu, "AccessEnumMemb… in accessEnumMethodThroughThis() local88 MethodDeclaration method = Navigator.demandMethod(enumDecl, "getLabel2"); in accessEnumMethodThroughThis()
164 EXPECT_TRUE(notMatches("class X {};", enumDecl(hasName("X")))); in TEST()168 EXPECT_TRUE(matches("enum X {};", enumDecl(hasName("X")))); in TEST()
221 qualType(hasDeclaration(enumDecl(hasName("X"))))))))); in TEST()
173 REGISTER_MATCHER(enumDecl); in RegistryMaps()
897 const internal::VariadicDynCastAllOfMatcher<Decl, EnumDecl> enumDecl; variable