Home
last modified time | relevance | path

Searched refs:execTreeParser (Results 1 – 13 of 13) sorted by relevance

/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
DTestTreeGrammarRewriteAST.java62 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testFlatList()
82 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testSimpleTree()
101 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testNonImaginaryWithCtor()
121 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testCombinedRewriteAndAuto()
125 found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testCombinedRewriteAndAuto()
145 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testAvoidDup()
165 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testLoop()
185 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testAutoDup()
206 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testAutoDupRule()
226 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testAutoWildcard()
[all …]
DTestTreeParsing.java48 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testFlatList()
68 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testSimpleTree()
91 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testFlatVsTreeDecision()
114 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testFlatVsTreeDecision2()
137 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testCyclicDFALookahead()
158 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testTemplateOutput()
178 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testNullableChildList()
199 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testNullableChildList2()
221 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testNullableChildList3()
242 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testActionsAfterRoot()
[all …]
DTestHeteroAST.java372 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testTreeParserRewriteFlatList()
402 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testTreeParserRewriteTree()
429 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testTreeParserRewriteImaginary()
457 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testTreeParserRewriteImaginaryWithArgs()
484 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testTreeParserRewriteImaginaryRoot()
512 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testTreeParserRewriteImaginaryFromReal()
539 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testTreeParserAutoHeteroAST()
DTestSyntacticPredicateEvaluation.java308 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testTreeParserWithSynPred()
335 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testTreeParserWithNestedSynPred()
DTestRewriteTemplates.java211 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testSingleNode()
231 String found = execTreeParser("T.g", grammar, "TParser", "TP.g", in testSingleNodeRewriteMode()
DBaseTest.java247 protected String execTreeParser(String parserGrammarFileName, in execTreeParser() method in BaseTest
258 return execTreeParser(parserGrammarFileName, in execTreeParser()
271 protected String execTreeParser(String parserGrammarFileName, in execTreeParser() method in BaseTest
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt051treeRewriteAST.py29 def execTreeParser(self, grammar, grammarEntry, treeGrammar, treeEntry, input): member in T
76 found = self.execTreeParser(
111 found = self.execTreeParser(
146 found = self.execTreeParser(
155 found = self.execTreeParser(
190 found = self.execTreeParser(
225 found = self.execTreeParser(
260 found = self.execTreeParser(
297 found = self.execTreeParser(
325 found = self.execTreeParser(
[all …]
Dt049treeparser.py35 def execTreeParser(self, grammar, grammarEntry, treeGrammar, treeEntry, input): member in T
76 found = self.execTreeParser(
110 found = self.execTreeParser(
146 found = self.execTreeParser(
181 found = self.execTreeParser(
215 found = self.execTreeParser(
269 found = self.execTreeParser(
302 found = self.execTreeParser(
336 found = self.execTreeParser(
369 found = self.execTreeParser(
[all …]
Dt053hetero.py78 def execTreeParser(self, grammar, grammarEntry, treeGrammar, treeEntry, input): member in T
643 found = self.execTreeParser(
691 found = self.execTreeParser(
739 found = self.execTreeParser(
787 found = self.execTreeParser(
834 found = self.execTreeParser(
885 found = self.execTreeParser(
929 found = self.execTreeParser(
Dt057autoAST.py92 def execTreeParser(self, grammar, grammarEntry, treeGrammar, treeEntry, input): member in TestAutoAST
Dt058rewriteAST.py92 def execTreeParser(self, grammar, grammarEntry, treeGrammar, treeEntry, input): member in TestRewriteAST
/external/antlr/antlr-3.4/gunit/src/main/resources/org/antlr/gunit/
Djunit.stg50 …Object retval = execTreeParser(<testTreeRuleName>, <testRuleName>, "<test.inputEscaped>", <test.is…
61 …<returnType> retval = (<returnType>)execTreeParser(<testTreeRuleName>, <testRuleName>, "<test.inpu…
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
DgUnitBaseTest.java302 …public Object execTreeParser(String testTreeRuleName, String testRuleName, String testInput, boole… in execTreeParser() method in gUnitBaseTest