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)
358 column where the token begins in the source; a 2-tuple (erow, ecol) of
359 ints specifying the row and column where the token ends in the source;
400 column = 0
402 if line[pos] == ' ': column = column + 1
403 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
404 elif line[pos] == '\f': column = 0
422 if column > indents[-1]: # count indents or dedents
423 indents.append(column)
425 while column < indents[-1]:
426 if column not in indents: