Home | History | Annotate | Download | only in pgen2

Lines Matching refs:column

13     the starting (row, column) indices of the token (a 2-tuple of ints)
14 the ending (row, column) indices of the token (a 2-tuple of ints)
356 column where the token begins in the source; a 2-tuple (erow, ecol) of
357 ints specifying the row and column where the token ends in the source;
398 column = 0
400 if line[pos] == ' ': column = column + 1
401 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
402 elif line[pos] == '\f': column = 0
420 if column > indents[-1]: # count indents or dedents
421 indents.append(column)
423 while column < indents[-1]:
424 if column not in indents: