Searched refs:stateno (Results 1 – 6 of 6) 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/ply/ply/ply/ |
D | yacc.py | 2287 for stateno, state in enumerate(C): 2290 t = (stateno, p.prod[p.lr_index+1])
|
/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/sqlite/dist/orig/ |
D | sqlite3.c | 139033 YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */ 139754 pParser->yystack[0].stateno = 0; 139964 int stateno, iLookAhead, i; 139966 for(stateno=0; stateno<YYNSTATE; stateno++){ 139967 i = yy_shift_ofst[stateno]; 139970 if( yycoverage[stateno][iLookAhead]==0 ) nMissed++; 139972 fprintf(out,"State %d lookahead %s %s\n", stateno, 139974 yycoverage[stateno][iLookAhead] ? "ok" : "missed"); 139991 int stateno = pParser->yytos->stateno; 139993 if( stateno>YY_MAX_SHIFT ) return stateno; [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 139049 YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */ 139770 pParser->yystack[0].stateno = 0; 139980 int stateno, iLookAhead, i; 139982 for(stateno=0; stateno<YYNSTATE; stateno++){ 139983 i = yy_shift_ofst[stateno]; 139986 if( yycoverage[stateno][iLookAhead]==0 ) nMissed++; 139988 fprintf(out,"State %d lookahead %s %s\n", stateno, 139990 yycoverage[stateno][iLookAhead] ? "ok" : "missed"); 140007 int stateno = pParser->yytos->stateno; 140009 if( stateno>YY_MAX_SHIFT ) return stateno; [all …]
|