Home
last modified time | relevance | path

Searched refs:thisguy (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/
Dtabnanny.py292 thisguy = Whitespace(token)
293 if not indents[-1].less(thisguy):
294 witness = indents[-1].not_less_witness(thisguy)
297 indents.append(thisguy)
321 thisguy = Whitespace(line)
322 if not indents[-1].equal(thisguy):
323 witness = indents[-1].not_equal_witness(thisguy)
/external/libedit/src/
Dfilecomplete.c360 size_t line, lines, col, cols, thisguy; in fn_display_match_list() local
386 thisguy = line + col * lines; in fn_display_match_list()
387 if (thisguy >= num) in fn_display_match_list()
390 col == 0 ? "" : " ", (int)width, matches[thisguy]); in fn_display_match_list()