Lines Matching refs:end
68 end contains the index of the last char of the token in the source
71 def __init__(self, token_type, name, start, end):
75 self.end = end
81 return 'Token(%r, %s, %s)' % (self.name, self.start, self.end)
136 end = len(source)
137 while i < end:
139 while i < end and source[i].isspace():
141 if i >= end:
164 i = end
231 # Get the first important symbol (newline, comment, EOF/end).
232 i = min([x for x in (i1, i2, i3, i4, end) if x != -1])
239 # Keep going if end of the line and the line ends with \.
280 # print('\r%6.2f%%' % (100.0 * index / token.end),)