Home
last modified time | relevance | path

Searched refs:curcol (Results 1 – 3 of 3) sorted by relevance

/third_party/toybox/porting/liteos_a/toys/posix/
Dls.c404 unsigned curcol, color = 0; in listfiles() local
405 unsigned long next = next_column(ul, dtlen, columns, &curcol); in listfiles()
423 if (!curcol) xputc('\n'); in listfiles()
522 curcol = colsizes[curcol]-(*len)-totpad; in listfiles()
523 if (curcol < 255) printf("%*c", curcol, ' '); in listfiles()
/third_party/toybox/toys/posix/
Dls.c413 unsigned curcol, color = 0; in listfiles() local
414 unsigned long next = next_column(ul, dtlen, columns, &curcol); in listfiles()
433 if (!curcol) xputc('\n'); in listfiles()
532 curcol = colsizes[curcol]-(*len)-totpad; in listfiles()
533 if (curcol < 255) printf("%*c", curcol, ' '); in listfiles()
/third_party/python/Lib/idlelib/
Dcalltip_w.py98 curline, curcol = map(int, self.anchor_widget.index("insert").split('.'))
100 (curline == self.parenline and curcol <= self.parencol) or \