/src/usr.bin/make/unit-tests/ |
cond-token-string.exp | 17 CondParser_Eval: "quoted" == quoted 18 Comparing "quoted" == "quoted"
|
opt-debug-file.exp | 6 make: Unterminated quoted string [make 'This goes to stdout only, once.] 7 make: Unterminated quoted string [make 'This goes to stderr only, once.] 8 make: Unterminated quoted string [make 'This goes to stderr, and in addition to the debug log.]
|
varmod-order-string.mk | 15 QUOTED_WORDS= none "double quoted" 'single quoted' `in backticks` 16 .if ${QUOTED_WORDS:O} != "\"double quoted\" 'single quoted' `in backticks` none"
|
deptgt-makeflags.exp | 9 make: Unterminated quoted string [make VAR=initial UNBALANCED=']
|
cond-token-string.mk | 3 # Tests for quoted string literals in .if conditions. 29 # quoted string literal or a number that starts with a digit. 38 # double-quoted string literals. See CondParser_String. 101 .if "quoted" == quoted
|
parse-var.mk | 52 # in a condition, only operand, quoted 54 # in a condition, left-hand side, quoted 56 # in a condition, right-hand side, quoted
|
opt-debug-file.mk | 69 # expect: make: Unterminated quoted string [make 'This goes to stdout only, once.] 72 # expect: make: Unterminated quoted string [make 'This goes to stderr only, once.] 75 # expect: make: Unterminated quoted string [make 'This goes to stderr, and in addition to the debug log.]
|
directive-ifndef.mk | 55 # but not to numbers, quoted strings or expressions. Those are evaluated
|
cond-token-plain.exp | 51 CondParser_Eval: "unquoted\"quoted" != unquoted"quoted 52 Comparing "unquoted"quoted" != "unquoted"quoted"
|
cond-cmp-string.mk | 98 # Adding a space at the beginning of the quoted expression works though.
|
cond-token-plain.mk | 190 .if "unquoted\"quoted" != unquoted"quoted
|
varname-makeflags.mk | 49 # in the option arguments are not quoted though.
|
varmod-ifelse.mk | 76 # If the "Bad condition" appears in a quoted string literal, the
|
/src/sbin/cgdconfig/ |
cgdlex.l | 64 BEGIN(quoted); \ 88 %x quoted 113 \\\n /* ignore a quoted nl */ 119 <quoted>[^\"]+ { QUOTEDADD(); } 120 <quoted>\" { RETQUOTED(STRINGLIT); }
|
/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...] |
/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...] |
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...] |
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) {
|
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/sys/dev/pci/bktr/ |
bktr2netbsd | 73 echo quoted \$RCS tag from $f
|
/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...] |
/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;
|
/src/bin/csh/ |
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/share/mk/ |
bsd.clean.mk | 56 # or CLEANDIRFILES contains quoted strings, such as
|
/src/tests/bin/sh/ |
t_cmdsub.sh | 551 atf_check -s exit:0 -o inline:'B: quoted )\n' -e empty ${TEST_SH} -c \ 553 echo '\''B: quoted )'\''
|