Home
last modified time | relevance | path

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

/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
DFieldsResolutionTest.java75 …com.github.javaparser.ast.body.EnumDeclaration enumDecl = Navigator.demandEnum(cu, "AccessEnumMemb… in accessEnumFieldThroughThis() local
76 MethodDeclaration method = Navigator.demandMethod(enumDecl, "getLabel"); in accessEnumFieldThroughThis()
87 …com.github.javaparser.ast.body.EnumDeclaration enumDecl = Navigator.demandEnum(cu, "AccessEnumMemb… in accessEnumMethodThroughThis() local
88 MethodDeclaration method = Navigator.demandMethod(enumDecl, "getLabel2"); in accessEnumMethodThroughThis()
/external/clang/unittests/ASTMatchers/
DASTMatchersNodeTest.cpp164 EXPECT_TRUE(notMatches("class X {};", enumDecl(hasName("X")))); in TEST()
168 EXPECT_TRUE(matches("enum X {};", enumDecl(hasName("X")))); in TEST()
DASTMatchersTraversalTest.cpp221 qualType(hasDeclaration(enumDecl(hasName("X"))))))))); in TEST()
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp173 REGISTER_MATCHER(enumDecl); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h897 const internal::VariadicDynCastAllOfMatcher<Decl, EnumDecl> enumDecl; variable