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;
406 column = 0
408 if line[pos] == ' ': column = column + 1
409 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize
410 elif line[pos] == '\f': column = 0
432 if column > indents[-1]: # count indents or dedents
433 indents.append(column)
435 while column < indents[-1]:
436 if column not in indents: