HomeSort by: relevance | last modified time | path
    Searched defs:quoted (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/bin/ksh/
tree.c 298 int c, quoted=0; local in function:tputS
316 if (!quoted || (c == '"' || c == '`' || c == '$'))
339 quoted = 1;
343 quoted = 0;
tree.c 298 int c, quoted=0; local in function:tputS
316 if (!quoted || (c == '"' || c == '`' || c == '$'))
339 quoted = 1;
343 quoted = 0;
tree.c 298 int c, quoted=0; local in function:tputS
316 if (!quoted || (c == '"' || c == '`' || c == '$'))
339 quoted = 1;
343 quoted = 0;
tree.c 298 int c, quoted=0; local in function:tputS
316 if (!quoted || (c == '"' || c == '`' || c == '$'))
339 quoted = 1;
343 quoted = 0;
  /src/bin/csh/
dol.c 270 * quoted, thus `...` can tell it was within "...".
326 * QUOTEd so that it will not be recognized above.
825 int quoted; local in function:heredoc
848 quoted = gflag;
881 * If term was quoted or -n just pass it on
883 if (quoted || noexec) {
898 * Term wasn't quoted so variable and then command expand the input
dol.c 270 * quoted, thus `...` can tell it was within "...".
326 * QUOTEd so that it will not be recognized above.
825 int quoted; local in function:heredoc
848 quoted = gflag;
881 * If term was quoted or -n just pass it on
883 if (quoted || noexec) {
898 * Term wasn't quoted so variable and then command expand the input
dol.c 270 * quoted, thus `...` can tell it was within "...".
326 * QUOTEd so that it will not be recognized above.
825 int quoted; local in function:heredoc
848 quoted = gflag;
881 * If term was quoted or -n just pass it on
883 if (quoted || noexec) {
898 * Term wasn't quoted so variable and then command expand the input
dol.c 270 * quoted, thus `...` can tell it was within "...".
326 * QUOTEd so that it will not be recognized above.
825 int quoted; local in function:heredoc
848 quoted = gflag;
881 * If term was quoted or -n just pass it on
883 if (quoted || noexec) {
898 * Term wasn't quoted so variable and then command expand the input
glob.c 559 if (*p) /* Quoted chars */
632 int pvec[2], c, quoted; local in function:backeval
638 quoted = (literal || (cp[0] & QUOTE)) ? QUOTE : 0;
746 if (!quoted && (c == ' ' || c == '\t'))
749 psave(c | quoted);
glob.c 559 if (*p) /* Quoted chars */
632 int pvec[2], c, quoted; local in function:backeval
638 quoted = (literal || (cp[0] & QUOTE)) ? QUOTE : 0;
746 if (!quoted && (c == ' ' || c == '\t'))
749 psave(c | quoted);
glob.c 559 if (*p) /* Quoted chars */
632 int pvec[2], c, quoted; local in function:backeval
638 quoted = (literal || (cp[0] & QUOTE)) ? QUOTE : 0;
746 if (!quoted && (c == ' ' || c == '\t'))
749 psave(c | quoted);
glob.c 559 if (*p) /* Quoted chars */
632 int pvec[2], c, quoted; local in function:backeval
638 quoted = (literal || (cp[0] & QUOTE)) ? QUOTE : 0;
746 if (!quoted && (c == ' ' || c == '\t'))
749 psave(c | quoted);
  /src/bin/sh/
show.c 636 int quoted = 0; local in function:sharg
660 if (!quoted != !(subtype & VSQUOTE))
679 if (!quoted != !(subtype & VSQUOTE))
721 if (!quoted != !(subtype & VSQUOTE))
727 if (!quoted)
739 if (!quoted && *p == (CTLBACKQ|CTLQUOTE))
744 if (subtype != 0 || !quoted) {
746 quoted++;
751 quoted--;
769 if (quoted)
    [all...]
show.c 636 int quoted = 0; local in function:sharg
660 if (!quoted != !(subtype & VSQUOTE))
679 if (!quoted != !(subtype & VSQUOTE))
721 if (!quoted != !(subtype & VSQUOTE))
727 if (!quoted)
739 if (!quoted && *p == (CTLBACKQ|CTLQUOTE))
744 if (subtype != 0 || !quoted) {
746 quoted++;
751 quoted--;
769 if (quoted)
    [all...]
show.c 636 int quoted = 0; local in function:sharg
660 if (!quoted != !(subtype & VSQUOTE))
679 if (!quoted != !(subtype & VSQUOTE))
721 if (!quoted != !(subtype & VSQUOTE))
727 if (!quoted)
739 if (!quoted && *p == (CTLBACKQ|CTLQUOTE))
744 if (subtype != 0 || !quoted) {
746 quoted++;
751 quoted--;
769 if (quoted)
    [all...]
show.c 636 int quoted = 0; local in function:sharg
660 if (!quoted != !(subtype & VSQUOTE))
679 if (!quoted != !(subtype & VSQUOTE))
721 if (!quoted != !(subtype & VSQUOTE))
727 if (!quoted)
739 if (!quoted && *p == (CTLBACKQ|CTLQUOTE))
744 if (subtype != 0 || !quoted) {
746 quoted++;
751 quoted--;
769 if (quoted)
    [all...]
parser.c 892 * in single quoted mode (eofmark quoted)
904 * In double quoted (non-quoted eofmark)
946 plinno - lines, sq ? "quoted " : "", eofmark,
1076 * quoted.
1223 * var expansion inside arith inside var with some quoted and some not.
1247 * quoted is special - we need to know 2 things ... are we inside "..."
1252 * To handle this, "quoted" has two fields, the bottom 4 (really 2)
1253 * bits are 0, 1, or 2, for un, single, and double quoted (single quote
1383 #define quoted macro
    [all...]
jobs.c 2049 int quoted = 0; local in function:cmdputs
2077 if (!(subtype & VSQUOTE) != !(quoted & 1)) {
2078 quoted ^= 1;
2086 if (quoted & 1)
2088 quoted >>= 1;
2110 quoted ^= 1;
2114 quoted >>= 1;
2126 quoted <<= 1;
2148 if ((quoted & 1) && nleft) {
expand.c 563 int quoted; local in function:expari
579 quoted = *p++ == '"';
582 quoted ? "(quoted)" : "", p, begoff));
606 if (quoted == 0) /* allow weird splitting */
622 expbackq(union node *cmd, int quoted, int flag)
638 quoted, flag, startloc));
704 if ((quotes && quoted && NEEDESC(lastc)) ||
718 if (quoted == 0)
1204 varvalue(const char *name, int quoted, int subtype, int flag
    [all...]
parser.c 892 * in single quoted mode (eofmark quoted)
904 * In double quoted (non-quoted eofmark)
946 plinno - lines, sq ? "quoted " : "", eofmark,
1076 * quoted.
1223 * var expansion inside arith inside var with some quoted and some not.
1247 * quoted is special - we need to know 2 things ... are we inside "..."
1252 * To handle this, "quoted" has two fields, the bottom 4 (really 2)
1253 * bits are 0, 1, or 2, for un, single, and double quoted (single quote
1383 #define quoted macro
    [all...]
  /src/usr.bin/mail/
format.c 449 case '"': /* quoted-string ... skip it! */
829 * qcontent = qtext / quoted-pair
830 * quoted-string = [CFWS]
845 * word = atom / quoted-string
852 * dcontent = dtext / quoted-pair
855 * local-part = dot-atom / quoted-string / obs-local-part
873 int quoted; local in function:get_display_name
881 quoted = 0;
885 case '"': /* quoted-string */
888 if (!quoted)
    [all...]
format.c 449 case '"': /* quoted-string ... skip it! */
829 * qcontent = qtext / quoted-pair
830 * quoted-string = [CFWS]
845 * word = atom / quoted-string
852 * dcontent = dtext / quoted-pair
855 * local-part = dot-atom / quoted-string / obs-local-part
873 int quoted; local in function:get_display_name
881 quoted = 0;
885 case '"': /* quoted-string */
888 if (!quoted)
    [all...]
format.c 449 case '"': /* quoted-string ... skip it! */
829 * qcontent = qtext / quoted-pair
830 * quoted-string = [CFWS]
845 * word = atom / quoted-string
852 * dcontent = dtext / quoted-pair
855 * local-part = dot-atom / quoted-string / obs-local-part
873 int quoted; local in function:get_display_name
881 quoted = 0;
885 case '"': /* quoted-string */
888 if (!quoted)
    [all...]
format.c 449 case '"': /* quoted-string ... skip it! */
829 * qcontent = qtext / quoted-pair
830 * quoted-string = [CFWS]
845 * word = atom / quoted-string
852 * dcontent = dtext / quoted-pair
855 * local-part = dot-atom / quoted-string / obs-local-part
873 int quoted; local in function:get_display_name
881 quoted = 0;
885 case '"': /* quoted-string */
888 if (!quoted)
    [all...]
  /src/usr.bin/make/
cond.c 158 * either be a defined expression, a quoted string or a number.
371 * In a quoted or unquoted string literal or a number, parse an
380 bool doEval, bool quoted,
387 emode = doEval && quoted ? VARE_EVAL
411 * Parse a string from an expression or an optionally quoted string,
415 * Set out_quoted if the leaf was a quoted string literal.
423 bool quoted; local in function:CondParser_Leaf
428 *out_quoted = quoted = par->p[0] == '"';
430 if (quoted)
446 if (quoted)
    [all...]

Completed in 57 milliseconds

1 2