Lines Matching refs:quoted
349 * Parse a quoted or unquoted roff-style request or macro argument.
351 * pointer or advanced by one byte in case the argument is quoted.
353 * Collapse pairs of quotes inside quoted arguments.
361 int quoted, pairs, white;
365 quoted = 0;
367 quoted = 1;
377 * after quoted quotes and after "\\" and "\t".
397 if (0 == quoted)
403 } else if (0 == quoted) {
415 /* Unquoted quotes end quoted args. */
416 quoted = 2;
423 if (1 == quoted)
434 *pos += (int)(cp - start) + (quoted ? 1 : 0);