Home | History | Annotate | Download | only in antlr3

Lines Matching refs:LA

63     def LA(self, i):
66 Negative indexes are allowed. LA(-1) is previous token (token
67 just matched). LA(-i) where i is before first token should
154 The index is 0..n-1. A seek to position i means that LA(1) will
155 return the ith symbol. So, seeking to 0 means LA(1) will return the
209 LA(i). This will be used for labels in the generated
211 probably better to be 32-bit clean and be consistent with LA.
402 def LA(self, i):
407 i += 1 # e.g., translate LA(-1) to use offset i=0; then data[p+0-1]
421 i += 1 # e.g., translate LA(-1) to use offset i=0; then data[p+0-1]
433 be returned from LA(1).
888 def LA(self, i):