Home
last modified time | relevance | path

Searched refs:quoted (Results 1 – 25 of 280) sorted by relevance

12345678910>>...12

/netbsd/src/external/ibm-public/postfix/dist/src/global/
Dxtext.c80 VSTRING *xtext_quote_append(VSTRING *quoted, const char *unquoted, in xtext_quote_append() argument
89 VSTRING_ADDCH(quoted, ch); in xtext_quote_append()
91 vstring_sprintf_append(quoted, "+%02X", ch); in xtext_quote_append()
94 VSTRING_TERMINATE(quoted); in xtext_quote_append()
95 return (quoted); in xtext_quote_append()
100 VSTRING *xtext_quote(VSTRING *quoted, const char *unquoted, const char *special) in xtext_quote() argument
102 VSTRING_RESET(quoted); in xtext_quote()
103 xtext_quote_append(quoted, unquoted, special); in xtext_quote()
104 return (quoted); in xtext_quote()
109 VSTRING *xtext_unquote_append(VSTRING *unquoted, const char *quoted) in xtext_unquote_append() argument
[all …]
Duxtext.c83 VSTRING *uxtext_quote_append(VSTRING *quoted, const char *unquoted, in uxtext_quote_append() argument
93 VSTRING_ADDCH(quoted, ch); in uxtext_quote_append()
136 vstring_sprintf_append(quoted, "\\x{%02X}", unicode); in uxtext_quote_append()
139 VSTRING_TERMINATE(quoted); in uxtext_quote_append()
140 return (quoted); in uxtext_quote_append()
145 VSTRING *uxtext_quote(VSTRING *quoted, const char *unquoted, const char *special) in uxtext_quote() argument
147 VSTRING_RESET(quoted); in uxtext_quote()
148 uxtext_quote_append(quoted, unquoted, special); in uxtext_quote()
149 return (quoted); in uxtext_quote()
154 VSTRING *uxtext_unquote_append(VSTRING *unquoted, const char *quoted) in uxtext_unquote_append() argument
[all …]
Dmime_garb4.ref16 mime_state: header_token: quoted-printable
17 MULT 44 |Content-Transfer-Encoding: quoted-printable
19 mime_state: warning: invalid message/* or multipart/* encoding domain: quoted-printable
32 BODY N 51 |Content-Transfer-Encoding: quoted-printable
43 mime_state: header_token: quoted-printable
44 MULT 44 |Content-Transfer-Encoding: quoted-printable
Dmime_garb1.ref16 mime_state: header_token: quoted-printable
17 MULT 44 |Content-Transfer-Encoding: quoted-printable
25 mime_state: header_token: quoted-printable
26 MULT 44 |Content-Transfer-Encoding: quoted-printable
28 mime_state: warning: invalid message/* or multipart/* encoding domain: quoted-printable
Dmime_garb3.ref19 mime_state: header_token: quoted-printable
20 MULT 44 |Content-Transfer-Encoding: quoted-printable
30 mime_state: header_token: quoted-printable
31 MULT 44 |Content-Transfer-Encoding: quoted-printable
33 mime_state: warning: invalid message/* or multipart/* encoding domain: quoted-printable
Dquote_822_local.ref1 'a@b@c@d' quoted '"a@b@c"@d'
2 'a@b@c@d' quoted flags=8bitclean|bare_localpart '"a@b@c@d"'
6 '' quoted '""'
Dtok822_parse.ref24 quoted string "wietse venema"
81 quoted string "wietse venema"
92 quoted string ")"
108 quoted string "wietse venema"
131 quoted string "wietse venema"
152 quoted string "wietse venema"
171 quoted string "wietse venema"
190 quoted string "wietse venema"
314quoted string "zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz .zzz…
Dmime_garb4.in11 Content-Transfer-Encoding: quoted-printable
22 Content-Transfer-Encoding: quoted-printable
31 Content-Transfer-Encoding: quoted-printable
Dmail_addr_map.ref1 unknown: warning: fail test selftest 1 external -external-> external, no extension, quoted: expect[…
9 unknown: warning: fail test selftest 2 external -external-> external, no extension, quoted: expects…
18 unknown: warning: fail test selftest 3 external -external-> external, no extension, quoted: expects…
Dmime_garb1.in11 Content-Transfer-Encoding: quoted-printable
18 Content-Transfer-Encoding: quoted-printable
Dmime_garb3.in12 Content-Transfer-Encoding: quoted-printable
20 Content-Transfer-Encoding: quoted-printable
Dmime_garb2.ref16 mime_state: header_token: quoted-printable
17 MULT 44 |Content-Transfer-Encoding: quoted-printable
/netbsd/src/external/bsd/pkg_install/dist/lib/
Dfile.c294 size_t remaining, quoted; in format_cmd() local
311 quoted = shquote(name, bufp, remaining); in format_cmd()
312 if (quoted >= remaining) { in format_cmd()
316 bufp += quoted; in format_cmd()
317 remaining -= quoted; in format_cmd()
321 quoted = shquote(dir, bufp, remaining); in format_cmd()
322 if (quoted >= remaining) { in format_cmd()
326 bufp += quoted; in format_cmd()
327 remaining -= quoted; in format_cmd()
334 quoted = shquote(tmp, bufp, remaining); in format_cmd()
[all …]
/netbsd/src/external/bsd/nvi/dist/docs/vi.ref/
Dref.texi39 @comment paren quoted (typewriter font)
43 @comment quoted bold
47 @comment quoted command
51 @comment quoted option
52 @comment quoted (no font change)
56 @comment quoted (typewriter font)
/netbsd/src/external/bsd/kyua-cli/dist/utils/text/
Doperations.cpp48 std::ostringstream quoted; in quote() local
49 quoted << quote; in quote()
54 quoted << text.substr(start_pos, last_pos - start_pos) << '\\'; in quote()
58 quoted << text.substr(start_pos); in quote()
60 quoted << quote; in quote()
61 return quoted.str(); in quote()
/netbsd/src/usr.bin/make/unit-tests/
Dcond-token-string.exp17 CondParser_Eval: "quoted" == quoted
18 Comparing "quoted" == "quoted"
Dopt-debug-file.exp6 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.]
/netbsd/src/usr.bin/make/
Dcond.c381 bool doEval, bool quoted, in CondParser_StringExpr() argument
388 emode = doEval && quoted ? VARE_EVAL in CondParser_StringExpr()
425 bool quoted; in CondParser_Leaf() local
430 *out_quoted = quoted = par->p[0] == '"'; in CondParser_Leaf()
432 if (quoted) in CondParser_Leaf()
446 if (quoted) in CondParser_Leaf()
457 if (!quoted) in CondParser_Leaf()
464 start, doEval, quoted, &buf, &str)) in CondParser_Leaf()
468 if (!unquotedOK && !quoted && *start != '$' && in CondParser_Leaf()
491 EvalTruthy(CondParser *par, const char *value, bool quoted) in EvalTruthy() argument
[all …]
/netbsd/src/external/bsd/am-utils/dist/fsinfo/
Dfsi_lex.l123 static int quoted; variable
180 <F>\" { BEGIN Q; optr = ostr; quoted = 1; }
193 <Q>\" { BEGIN F; quoted = 0;
/netbsd/src/crypto/external/bsd/openssh/dist/
Dauthfile.c476 int quoted = 0; in sshkey_advance_past_options() local
478 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) { in sshkey_advance_past_options()
482 quoted = !quoted; in sshkey_advance_past_options()
486 return (*cp == '\0' && quoted) ? -1 : 0; in sshkey_advance_past_options()
/netbsd/src/bin/sh/
Dshow.c636 int quoted = 0; in sharg() local
660 if (!quoted != !(subtype & VSQUOTE)) in sharg()
679 if (!quoted != !(subtype & VSQUOTE)) in sharg()
721 if (!quoted != !(subtype & VSQUOTE)) in sharg()
727 if (!quoted) in sharg()
739 if (!quoted && *p == (CTLBACKQ|CTLQUOTE)) in sharg()
744 if (subtype != 0 || !quoted) { in sharg()
746 quoted++; in sharg()
751 quoted--; in sharg()
769 if (quoted) in sharg()
Dexpand.c563 int quoted; in expari() local
579 quoted = *p++ == '"'; in expari()
582 quoted ? "(quoted)" : "", p, begoff)); in expari()
606 if (quoted == 0) /* allow weird splitting */ in expari()
622 expbackq(union node *cmd, int quoted, int flag) in expbackq() argument
639 quoted, flag, startloc)); in expbackq()
708 if ((quotes && quoted && NEEDESC(lastc)) || in expbackq()
722 if (quoted == 0) in expbackq()
1214 varvalue(const char *name, int quoted, int subtype, int flag) in varvalue() argument
1226 quoted ? ", quoted" : "", subtype, flag)); in varvalue()
[all …]
/netbsd/src/external/bsd/am-utils/dist/amd/
Dmntfs.c349 int quoted; in free_mntfs() local
355 quoted = strchr(mf->mf_info, ' ') != 0; /* cheap */ in free_mntfs()
357 quoted ? "\"" : "", in free_mntfs()
359 quoted ? "\"" : "", in free_mntfs()
/netbsd/src/sbin/cgdconfig/
Dcgdlex.l64 BEGIN(quoted); \
88 %x quoted
/netbsd/src/external/gpl2/xcvs/dist/contrib/
Drcs2log.sh475quoted = quoted substr(rest, 1, p-1) "\\" substr(rest, p, 1)
479 printf "fullname[\"%s\"] = \"%s%s\"\n", $1, quoted, rest

12345678910>>...12