Lines Matching refs:next_state
427 int next_state; /* the next state */ in parse_JSON() local
453 next_state = state_transition_table[jp->state][next_class]; in parse_JSON()
454 if (next_state >= 0) { in parse_JSON()
459 if (next_state == ST && jp->state != U4) { in parse_JSON()
484 } else if (next_state == U2) { in parse_JSON()
486 } else if (next_state == U3) { in parse_JSON()
488 } else if (next_state == U4) { in parse_JSON()
490 } else if (next_state == ST && jp->state == U4) { in parse_JSON()
497 } else if (type == IS_LONG && next_state == E1) { in parse_JSON()
505 …} else if (type < IS_BOOL && ((jp->state == T3 && next_state == OK) || (jp->state == F4 && next_st… in parse_JSON()
507 } else if (type < IS_NULL && jp->state == N3 && next_state == OK) { in parse_JSON()
512 jp->state = next_state; in parse_JSON()
517 switch (next_state) { in parse_JSON()