Searched refs:stateno (Results 1 – 6 of 6) sorted by relevance
/external/bison/src/ |
D | lalr.c | 171 state_number stateno = to_state[i]; in initialize_F() local 172 transitions *sp = states[stateno]->transitions; in initialize_F() 182 edge[nedges++] = map_goto (stateno, sym); in initialize_F()
|
/external/python/cpython2/Parser/ |
D | spark.py | 88 def __init__(self, stateno, items): argument 90 self.stateno = stateno 390 key = (X.stateno, nextSym) 428 nk = self.cores[tcore] = self.edges[(k, None)] = NK.stateno
|
/external/libxml2/ |
D | xmlregexp.c | 561 int stateno, atomno, targetno, prev; in xmlRegEpxFromParse() local 565 stateno = stateRemap[i]; in xmlRegEpxFromParse() 566 if (stateno == -1) in xmlRegEpxFromParse() 570 transitions[stateno * (nbatoms + 1)] = state->type; in xmlRegEpxFromParse() 594 prev = transitions[stateno * (nbatoms + 1) + atomno + 1]; in xmlRegEpxFromParse() 618 transitions[stateno * (nbatoms + 1) + atomno + 1] = in xmlRegEpxFromParse() 621 transdata[stateno * nbatoms + atomno] = in xmlRegEpxFromParse()
|
/external/ply/ply/ply/ |
D | yacc.py | 2285 for stateno, state in enumerate(C): 2288 t = (stateno, p.prod[p.lr_index+1])
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 136546 YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */ 137079 pParser->yystack[0].stateno = 0; 137280 int stateno = pParser->yytos->stateno; 137282 if( stateno>=YY_MIN_REDUCE ) return stateno; 137283 assert( stateno <= YY_SHIFT_COUNT ); 137285 i = yy_shift_ofst[stateno]; 137327 return yy_default[stateno]; 137339 int stateno, /* Current state number */ 137344 if( stateno>YY_REDUCE_COUNT ){ 137345 return yy_default[stateno]; [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 136546 YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */ 137079 pParser->yystack[0].stateno = 0; 137280 int stateno = pParser->yytos->stateno; 137282 if( stateno>=YY_MIN_REDUCE ) return stateno; 137283 assert( stateno <= YY_SHIFT_COUNT ); 137285 i = yy_shift_ofst[stateno]; 137327 return yy_default[stateno]; 137339 int stateno, /* Current state number */ 137344 if( stateno>YY_REDUCE_COUNT ){ 137345 return yy_default[stateno]; [all …]
|