Home
last modified time | relevance | path

Searched refs:indstack (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Parser/
Dtokenizer.h35 int indstack[MAXINDENT]; /* Stack of indents */ member
Dtokenizer.c132 tok->indstack[0] = 0; in tok_new()
1400 if (col == tok->indstack[tok->indent]) { in tok_get()
1406 else if (col > tok->indstack[tok->indent]) { in tok_get()
1417 tok->indstack[++tok->indent] = col; in tok_get()
1423 col < tok->indstack[tok->indent]) { in tok_get()
1427 if (col != tok->indstack[tok->indent]) { in tok_get()
/external/python/cpython2/Parser/
Dtokenizer.h29 int indstack[MAXINDENT]; /* Stack of indents */ member
Dtokenizer.c110 tok->indstack[0] = 0; in tok_new()
1260 if (col == tok->indstack[tok->indent]) { in tok_get()
1267 else if (col > tok->indstack[tok->indent]) { in tok_get()
1279 tok->indstack[++tok->indent] = col; in tok_get()
1285 col < tok->indstack[tok->indent]) { in tok_get()
1289 if (col != tok->indstack[tok->indent]) { in tok_get()