Home | History | Annotate | Download | only in simplecTreeParser

Lines Matching refs:input

38     public SimpleCLexer(CharStream input) {
39 this(input, new RecognizerSharedState());
41 public SimpleCLexer(CharStream input, RecognizerSharedState state) {
42 super(input,state);
259 if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {
260 input.consume();
264 MismatchedSetException mse = new MismatchedSetException(null,input);
272 int LA1_0 = input.LA(1);
283 if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {
284 input.consume();
288 MismatchedSetException mse = new MismatchedSetException(null,input);
327 int LA2_0 = input.LA(1);
352 new EarlyExitException(2, input);
464 int LA3_0 = input.LA(1);
475 if ( (input.LA(1)>='\t' && input.LA(1)<='\n')||input.LA(1)=='\r'||input.LA(1)==' ' ) {
476 input.consume();
480 MismatchedSetException mse = new MismatchedSetException(null,input);
491 new EarlyExitException(3, input);
512 alt4 = dfa4.predict(input);