Lines Matching refs:indent
68 tok->indent = 0;
1480 if (col == tok->indstack[tok->indent]) {
1482 if (altcol != tok->altindstack[tok->indent]) {
1486 else if (col > tok->indstack[tok->indent]) {
1488 if (tok->indent+1 >= MAXINDENT) {
1493 if (altcol <= tok->altindstack[tok->indent]) {
1497 tok->indstack[++tok->indent] = col;
1498 tok->altindstack[tok->indent] = altcol;
1500 else /* col < tok->indstack[tok->indent] */ {
1502 while (tok->indent > 0 &&
1503 col < tok->indstack[tok->indent]) {
1505 tok->indent--;
1507 if (col != tok->indstack[tok->indent]) {
1512 if (altcol != tok->altindstack[tok->indent]) {
1551 && tok->async_def_indent >= tok->indent)
1720 tok->async_def_indent = tok->indent;