HomeSort by: relevance | last modified time | path
    Searched refs:quote (Results 1 - 25 of 35) sorted by relevancy

1 2

  /src/lib/libedit/
tokenizer.c 92 quote_t quote; /* Quoting state */ local in function:TYPE
152 tok->quote = Q_none;
169 tok->quote = Q_none;
196 * 2 Unmatched double quote
197 * 1 Unmatched single quote
225 switch (tok->quote) {
227 tok->quote = Q_single; /* Enter single quote
231 case Q_single: /* Exit single quote mode */
232 tok->quote = Q_none
    [all...]
  /src/usr.bin/make/unit-tests/
varmod-quote.mk 1 # $NetBSD: varmod-quote.mk,v 1.3 2020/10/29 19:07:45 rillig Exp $
13 # The quote modifier only applies if the whole modifier name is "Q".
varmod-quote-dollar.mk 1 # $NetBSD: varmod-quote-dollar.mk,v 1.4 2022/05/08 10:14:40 rillig Exp $
modmisc.mk 19 all: mod-quote
56 mod-quote:
dollar.exp 5 1 dollar literal => <single-quote-var-value>
varname-dot-newline.mk 14 # The above quote assumes that each resulting <newline> character has a "next
dollar.mk 28 ${:U'}= single-quote-var-value'
  /src/usr.bin/gencat/
gencat.c 344 getmsg(int fd, char *cptr, char quote)
352 if (quote && *cptr == quote) {
368 if (quote && *cptr == quote) {
373 warning(cptr, "unexpected quote character, ignoring");
434 if (quote && *cptr == quote) {
471 char quote = 0; local in function:MCParse
487 } else if (strncmp(cptr, "quote", 5) == 0)
    [all...]
  /src/bin/ksh/
eval.c 155 short quote; /* saved value of quote (for ${..[%#]..}) */ member in struct:SubType
168 int quote = 0; /* quoted */ local in function:expand
226 quote |= 2; /* temporary quote */
232 quote = 1;
235 quote = 0;
326 st->quote = quote;
336 quote = 0
    [all...]
  /src/share/misc/
NetBSD.el 30 (c-hanging-colons-alist . (quote ((label after)
  /src/lib/libperfuse/
debug.c 212 const char *quote = pt->pt_path[0] != '\0' ? "\"" : ""; local in function:perfuse_trace_dump
217 quote, pt->pt_path, quote,
  /src/lib/libc/gen/
wordexp.c 256 int dquote, level, quote, squote; local in function:we_check
258 quote = squote = dquote = 0;
262 quote ^= 1;
265 if (quote + dquote == 0)
269 if (quote + squote == 0)
273 if (quote + squote == 0 && flags & WRDE_NOCMD)
283 if (quote + squote + dquote == 0)
289 else if (quote + squote == 0 && c == '(') {
304 } else if (quote + squote == 0 && c == '{') {
323 quote = 0
    [all...]
  /src/tests/bin/sh/
t_fsplit.sh 309 atf_test_case quote
320 # Some quote propagation checks
330 check_results quote
623 atf_add_test_case quote
t_varval.sh 50 quote= pfx=
55 -q) quote=no; shift; continue;;
72 oneline "${pfx}" "$i" "${sfx}" $quote
  /src/sys/arch/x68k/stand/common/
start.S 341 clrb %d1 | no quote here
347 beqs quote
350 quote: moveb %d2,%d1 | save quote character label
356 clrb %d1 | quote ended
  /src/usr.bin/mail/
names.c 172 int quote; local in function:detract
174 quote = ntype & GSMOPTS;
188 if (quote && need_quotes(p->n_name))
200 do_quotes = (quote && need_quotes(p->n_name));
441 goto quote;
443 goto quote;
448 quote:
  /src/usr.bin/ftp/
extern.h 177 void quote(int, char **);
cmdtab.c 260 { "quote", H(quotehelp), 1, 1, 1, CMPL0 quote },
  /src/usr.sbin/inetd/
parse_v2.c 384 * Uses shell-style quote parsing.
390 char quote = *cp; local in function:parse_quotes
393 while (*cp != '\0' && quote != '\0') {
394 if (*cp == quote) {
395 quote = '\0';
450 if (*cp == '\0' && quote != '\0') {
451 ERR("Unclosed quote");
parse.c 816 char quote; local in function:skip
837 quote = '\0';
838 while (*cp != '\0' && (quote != '\0' || (*cp != ' ' && *cp != '\t'))) {
840 if (quote != '\0' && *cp != quote)
843 if (quote != '\0')
844 quote = '\0';
846 quote = *cp;
  /src/games/larn/
io.c 415 int n = LINBUFSIZE, quote = 0; local in function:lgetw
423 if ((n <= 1) || ((cc <= 32) && (quote == 0))) {
430 quote ^= 1;
  /src/sbin/restore/
interactive.c 414 char quote; local in function:copynext
442 quote = *cp++;
443 while (*cp != quote && *cp != '\0')
446 fprintf(stderr, "missing %c\n", quote);
  /src/bin/csh/
misc.c 376 quote(Char *cp) function in typeref:typename:Char *
384 *dp++ |= QUOTE;
extern.h 224 Char *quote(Char *);
csh.c 322 cp = quote(SAVE(ecp));
338 set(STRuser, quote(SAVE(ecp)));
340 set(STRterm, quote(SAVE(ecp)));
1366 if (ch & QUOTE)
1450 (void)vis_fputc(*cp | QUOTE, cshout);

Completed in 34 milliseconds

1 2