Home | History | Annotate | Download | only in antlr3

Lines Matching refs:input

64     def predict(self, input):
66 From the input stream, predict what alternative will succeed
71 mark = input.mark()
80 s = self.specialStateTransition(specialState, input)
82 self.noViableAlt(s, input)
84 input.consume()
92 c = input.LA(1)
112 input.consume()
121 self.noViableAlt(s, input)
125 input.consume()
132 input.consume()
142 self.noViableAlt(s, input)
149 input.rewind(mark)
152 def noViableAlt(self, s, input):
160 input
172 def specialStateTransition(self, s, input):