Home | History | Annotate | Download | only in antlr3

Lines Matching refs:LT

1409             # sometimes resync does not consume a token (when LT(1) is
1412 # is consumed during recovery; LT(-1) will return null.
1656 def LT(self, k):
1659 i<0 indicates nodes in the past. So LT(-1) is previous node, but
1661 LT(0) is undefined. For i>=n, return null.
1662 Return null for LT(0) and any index that results in an absolute address
1665 This is analogus to the LT() method of the TokenStream, but this
1943 def LT(self, k):
1960 return self.LT(1)
2015 return self.adaptor.getType(self.LT(i))
2216 return input.LT(1)
2248 self.input.LT(1), context)
2320 look = self.input.LT(1)
2331 look = self.input.LT
2386 BaseRecognizer.traceIn(self, ruleName, ruleIndex, self.input.LT(1))
2390 BaseRecognizer.traceOut(self, ruleName, ruleIndex, self.input.LT(1))