Home | History | Annotate | Download | only in Runtime

Lines Matching refs:input

60 # From the input stream, predict what alternative will succeed
65 my ($self, $input) = @_;
67 my $mark = $input->mark(); # remember where decision started in input
74 $s = $self->special_state_transition($special_state, $input);
76 $self->no_viable_alt($s, $input);
79 $input->consume();
88 my $c = $input->LA(1); # -1 == \uFFFF, all tokens fit in 65000 space
100 $input->consume();
109 $self->no_viable_alt($s, $input);
114 $input->consume();
120 $input->consume();
129 $self->no_viable_alt($s, $input);
134 $input->rewind();
139 my ($self, $s, $input) = @_;
149 input => $input
161 my ($self, $s, $input) = @_;