Lines Matching defs:state
717 upb_decstate state;
718 state.limit = buf + size;
719 state.arena = arena;
720 state.depth = 64;
721 state.end_group = 0;
723 if (setjmp(state.err)) return false;
726 decode_msg(&state, buf, msg, l);
728 return state.end_group == 0;
7136 /* Resumes the decoder from an initial state or from a previous suspend. */
9205 /* Ragel's internal parsing stack for the parsing state machine. */
9673 p->status, "Internal error: unexpected state MULTIPART_INACTIVE");
10805 * parser state machine has already decided that this is a string field
10865 * its subframe in the process), and sets up state in the subframe so that the
10893 * if they see is_mapentry (when invoked by the parser state machine, they
11527 * "@" -- transition into a final state of a machine.
11530 * state repeatedly. But in some cases we know this can't happen, for example
11532 * final state once, when the closing '"' is seen. */
12200 /* Save parsing state back to parser. */
12419 /* Have we emitted the first element? This state is necessary to emit commas
12420 * without leaving a trailing comma in arrays/maps. We keep this state per