Lines Matching refs:QUOTED
548 // Consume a quoted string.
591 /// the start or end of a quoted string in the main loop outside of this
628 enum { INIT, UNQUOTED, QUOTED } State = INIT;
640 State = QUOTED;
653 // UNQUOTED state means that it's reading a token not quoted by double
667 State = QUOTED;
678 // QUOTED state means that it's reading a token quoted by double quotes.
679 if (State == QUOTED) {