Lines Matching defs:QUOTED
470 // Consume a quoted string.
509 /// the start or end of a quoted string in the main loop outside of this
545 enum { INIT, UNQUOTED, QUOTED } State = INIT;
553 State = QUOTED;
566 // UNQUOTED state means that it's reading a token not quoted by double
577 State = QUOTED;
588 // QUOTED state means that it's reading a token quoted by double quotes.
589 if (State == QUOTED) {