Searched refs:stateno (Results 1 – 7 of 7) sorted by relevance
/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/selinux/python/sepolgen/src/sepolgen/ |
D | yacc.py | 2287 for stateno, state in enumerate(C): 2290 t = (stateno, p.prod[p.lr_index+1])
|
/external/python/pycparser/pycparser/ply/ |
D | yacc.py | 2285 for stateno, state in enumerate(C): 2288 t = (stateno, p.prod[p.lr_index+1])
|
/external/ply/ply/ply/ |
D | yacc.py | 2287 for stateno, state in enumerate(C): 2290 t = (stateno, p.prod[p.lr_index+1])
|
/external/sqlite/dist/ |
D | sqlite3.c | 149297 YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */ 150114 yypParser->yystack[0].stateno = 0; 150352 int stateno, iLookAhead, i; 150354 for(stateno=0; stateno<YYNSTATE; stateno++){ 150355 i = yy_shift_ofst[stateno]; 150358 if( yycoverage[stateno][iLookAhead]==0 ) nMissed++; 150360 fprintf(out,"State %d lookahead %s %s\n", stateno, 150362 yycoverage[stateno][iLookAhead] ? "ok" : "missed"); 150376 YYACTIONTYPE stateno /* Current state number */ 150380 if( stateno>YY_MAX_SHIFT ) return stateno; [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 149281 YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */ 150098 yypParser->yystack[0].stateno = 0; 150336 int stateno, iLookAhead, i; 150338 for(stateno=0; stateno<YYNSTATE; stateno++){ 150339 i = yy_shift_ofst[stateno]; 150342 if( yycoverage[stateno][iLookAhead]==0 ) nMissed++; 150344 fprintf(out,"State %d lookahead %s %s\n", stateno, 150346 yycoverage[stateno][iLookAhead] ? "ok" : "missed"); 150360 YYACTIONTYPE stateno /* Current state number */ 150364 if( stateno>YY_MAX_SHIFT ) return stateno; [all …]
|