Home
last modified time | relevance | path

Searched defs:expectedArg (Results 1 – 8 of 8) sorted by relevance

/external/antlr/tool/src/test/java/org/antlr/test/
DTestSymbolDefinitions.java247 Object expectedArg = "'begin'"; in testParserStringLiterals() local
261 Object expectedArg = "'('"; in testParserCharLiterals() local
275 Object expectedArg = "'x'"; in testEmptyNotChar() local
289 Object expectedArg = "A"; in testEmptyNotToken() local
303 Object expectedArg = null; in testEmptyNotSet() local
320 Object expectedArg = "'begin'"; in testStringLiteralInParserTokensSection() local
337 Object expectedArg = "'('"; in testCharLiteralInParserTokensSection() local
353 Object expectedArg = "'('"; in testCharLiteralInLexerTokensSection() local
368 Object expectedArg = "a"; in testRuleRedefinition() local
383 Object expectedArg = "ID"; in testLexerRuleRedefinition() local
[all …]
DTestAttributes.java439 Object expectedArg = "x"; in testInvalidArguments() local
606 Object expectedArg = "x"; in testInvalidReturnValues() local
754 Object expectedArg = "a"; in testInvalidRuleLabelAccessesParameter() local
783 Object expectedArg = "a"; in testInvalidRuleLabelAccessesScopeAttribute() local
811 Object expectedArg = "a"; in testInvalidRuleAttribute() local
839 Object expectedArg = "r"; in testMissingRuleAttribute() local
866 Object expectedArg = "a"; in testMissingUnlabeledRuleAttribute() local
890 Object expectedArg = "x"; in testNonDynamicAttributeOutsideRule() local
915 Object expectedArg = "x"; in testNonDynamicAttributeOutsideRule2() local
971 Object expectedArg = "Symbols"; in testUnknownGlobalScope() local
[all …]
DTestMessages.java72 Object expectedArg = "other"; in testMessageStringificationIsConsistent() local
DTestRewriteAST.java1177 Object expectedArg = "ugh"; in testUnknownRule() local
1206 Object expectedArg = "b"; in testKnownRuleButNotInLHS() local
1234 Object expectedArg = "ICK"; in testUnknownToken() local
1262 Object expectedArg = "foo"; in testUnknownLabel() local
1290 Object expectedArg = "'a'"; in testUnknownCharLiteralToken() local
1318 Object expectedArg = "'foo'"; in testUnknownStringLiteralToken() local
DTestTemplates.java313 Object expectedArg = "%x"; in testCannotHaveSpaceBeforeDot() local
341 Object expectedArg = "%x."; in testCannotHaveSpaceAfterDot() local
DTestCompositeGrammars.java301 Object expectedArg = "X='a'"; in testSameStringTwoNames() local
354 Object expectedArg = "A='x'"; in testSameNameTwoStrings() local
392 Object expectedArg = "S"; in testImportedTokenVocabIgnoredWithWarning() local
DTestTreeGrammarRewriteAST.java252 Object expectedArg = null; in testNoWildcardAsRootError() local
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/utils/
DTestUtils.java129 public static void assertProblems(ParseResult<?> result, String... expectedArg) { in assertProblems()
130 assertProblems(result.getProblems(), expectedArg); in assertProblems() local
133 public static void assertProblems(List<Problem> result, String... expectedArg) { in assertProblems()