Lines Matching defs:quoted
370 * Parse a quoted or unquoted roff-style request or macro argument.
372 * pointer or advanced by one byte in case the argument is quoted.
374 * Collapse pairs of quotes inside quoted arguments.
382 int quoted, pairs, white;
386 quoted = 0;
388 quoted = 1;
398 * after quoted quotes and after "\\" and "\t".
418 if (0 == quoted)
424 } else if (0 == quoted) {
436 /* Unquoted quotes end quoted args. */
437 quoted = 2;
444 if (1 == quoted)
455 *pos += (int)(cp - start) + (quoted ? 1 : 0);