Searched refs:quoted (Results 1 - 25 of 78) sorted by relevance

1234

/netbsd-6-1-5-RELEASE/gnu/dist/diffutils/lib/
H A Dquotesys.c30 /* Place into QUOTED a quoted version of ARG suitable for `system'.
35 quote_system_arg (quoted, arg)
36 char *quoted;
76 if (quoted)
78 quoted[len] = '-';
79 quoted[len + 1] = c;
87 if (quoted)
88 quoted[len] = c;
96 if (quoted)
97 quoted[le
[all...]
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/global/
H A Dxtext.c11 /* VSTRING *xtext_quote(quoted, unquoted, special)
12 /* VSTRING *quoted;
16 /* VSTRING *xtext_quote_append(unquoted, quoted, special)
18 /* const char *quoted;
21 /* VSTRING *xtext_unquote(unquoted, quoted)
23 /* const char *quoted;
66 /* xtext_quote_append - append unquoted data to quoted data */
68 VSTRING *xtext_quote_append(VSTRING *quoted, const char *unquoted, argument
77 VSTRING_ADDCH(quoted, ch);
79 vstring_sprintf_append(quoted, "
88 xtext_quote(VSTRING *quoted, const char *unquoted, const char *special) argument
97 xtext_unquote(VSTRING *unquoted, const char *quoted) argument
152 VSTRING *quoted = vstring_alloc(100); local
[all...]
H A Dquote_822_local.c124 /* make_822_quoted_string - make quoted-string from local-part */
134 * that need quoting when they occur in a quoted-string.
156 * According to RFC 822, a local-part is a dot-string or a quoted-string.
158 * it into a quoted-string. Anything else would be too painful. But
217 * show the quoted and unquoted results.
227 VSTRING *quoted = vstring_alloc(100); local
231 quote_822_local(quoted, STR(raw));
232 vstream_printf("quoted: %s\n", STR(quoted));
233 unquote_822_local(unquoted, STR(quoted));
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/groff/src/libs/libgroff/
H A Dquotearg.c97 char *quoted, *p, *q; local
100 /* Need to create a quoted copy of `string';
105 if ((quoted = (char *)malloc(2 * strlen(string) + 3)) == NULL) {
106 /* Couldn't get a buffer for the quoted string,
119 *quoted = '"';
120 for (backslashes = 0, p = string, q = quoted; *p; p++) {
169 * add the closing quote, terminate the quoted string,
176 if ((string = (char *)realloc(quoted, strlen(quoted) + 1)) == NULL) {
185 * quoted an
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/all/
H A Dbyte.d3 # The RX target allows quoted ASCII strings inside .byte directives
/netbsd-6-1-5-RELEASE/external/bsd/pkg_install/dist/lib/
H A Dfile.c297 size_t remaining, quoted; local
314 quoted = shquote(name, bufp, remaining);
315 if (quoted >= remaining) {
319 bufp += quoted;
320 remaining -= quoted;
324 quoted = shquote(dir, bufp, remaining);
325 if (quoted >= remaining) {
329 bufp += quoted;
330 remaining -= quoted;
337 quoted
[all...]
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/include/
H A Dreport.h41 int quoted, int columns_as_rows);
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/lib/report/
H A Dreport.h41 int quoted, int columns_as_rows);
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssh/dist/
H A Dauth-rsa.c202 int quoted = 0; local
204 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
208 quoted = !quoted;
303 int quoted = 0; local
305 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
309 quoted = !quoted;
H A Dauth2-pubkey.c303 int quoted = 0; local
306 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
310 quoted = !quoted;
370 int quoted = 0; local
373 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
377 quoted = !quoted;
/netbsd-6-1-5-RELEASE/sbin/cgdconfig/
H A Dcgdlex.l64 BEGIN(quoted); \
88 %x quoted
108 \\\n /* ignore a quoted nl */
114 <quoted>[^\"]+ { QUOTEDADD(); }
115 <quoted>\" { RETQUOTED(STRINGLIT); }
/netbsd-6-1-5-RELEASE/external/bsd/mdocml/dist/
H A Dmandoc.c484 * Parse a quoted or unquoted roff-style request or macro argument.
486 * pointer or advanced by one byte in case the argument is quoted.
488 * Collapse pairs of quotes inside quoted arguments.
496 int quoted, pairs, white; local
500 quoted = 0;
502 quoted = 1;
509 /* Move left after quoted quotes and escaped backslashes. */
517 } else if (0 == quoted && ' ' == cp[1])
520 } else if (0 == quoted) {
532 /* Unquoted quotes end quoted arg
[all...]
/netbsd-6-1-5-RELEASE/tests/util/make/
H A Dd_cond1.mk27 Ok+= var == "quoted",
92 .if "quoted" == quoted
/netbsd-6-1-5-RELEASE/gnu/dist/groff/src/preproc/eqn/
H A Dlex.cpp752 int quoted = 0; local
761 lex_error("newline before end of quoted text");
765 if (!quoted)
768 quoted = 0;
772 quoted = quoted ? 0 : c == '\\';
788 int quoted = 0; local
791 quoted = 1;
797 if (!quoted && lookup_flag != 0 && c == '(') {
808 if (quoted) {
[all...]
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/contrib/
H A Drcs2log.sh464 quoted = ""
475 quoted = quoted substr(rest, 1, p-1) "\\" substr(rest, p, 1)
479 printf "fullname[\"%s\"] = \"%s%s\"\n", $1, quoted, rest
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/fsinfo/
H A Dfsi_lex.l127 static int quoted;
184 <F>\" { BEGIN Q; optr = ostr; quoted = 1; }
197 <Q>\" { BEGIN F; quoted = 0;
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/amd/
H A Dmntfs.c304 int quoted; local
310 quoted = strchr(mf->mf_info, ' ') != 0; /* cheap */
312 quoted ? "\"" : "",
314 quoted ? "\"" : "",
H A Dautil.c200 int quoted; local
247 quoted = strchr(mf->mf_info, ' ') != 0;
249 quoted ? "\"" : "",
251 quoted ? "\"" : "",
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/libopts/
H A Dtokenize.c149 * There are two types of quoted strings: single quoted (@code{'}) and
150 * double quoted (@code{"}). Singly quoted strings are fairly raw in that
177 * @code{EINVAL} - There was an unterminated quoted string.
204 * Take an approximate count of tokens. If no quoted strings are used,
205 * it will be accurate. If quoted strings are used, it will be a little
/netbsd-6-1-5-RELEASE/bin/sh/
H A Dexpand.c360 int quoted; local
390 quoted=1;
392 quoted=0;
403 if (quoted == 0)
415 expbackq(union node *cmd, int quoted, int flag) argument
426 char const *syntax = quoted? DQSYNTAX : BASESYNTAX;
482 if (quoted == 0)
859 varvalue(char *name, int quoted, int subtype, int flag) argument
871 syntax = quoted? DQSYNTAX : BASESYNTAX; \
905 if (flag & EXP_FULL && quoted) {
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/ntpdate/
H A Dntptime_config.c407 register int quoted = 0; local
432 while (!ISEOL(*cp) && (!ISSPACE(*cp) || quoted))
433 quoted ^= (*cp++ == '"');
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/tools/
H A Dreporter.c224 int aligned, buffered, headings, field_prefixes, quoted; local
238 quoted = find_config_tree_int(cmd, "report/quoted",
349 quoted = 0;
355 headings, field_prefixes, quoted,
/netbsd-6-1-5-RELEASE/usr.bin/window/
H A Dscanner.c342 case 3: /* " quoted string */
366 case 4: /* ' quoted string */
/netbsd-6-1-5-RELEASE/sys/dev/pci/bktr/
H A Dbktr2netbsd73 echo quoted \$RCS tag from $f
/netbsd-6-1-5-RELEASE/dist/pppd/pppd/
H A Dutils.c93 * %q (quoted string), %t (current time) and %I (IP address) formats.
133 int base, len, neg, quoted; local
282 case 'q': /* quoted string */
283 quoted = c == 'q';
295 if (!quoted && c >= 0x80) {
300 if (quoted && (c == '"' || c == '\\'))
303 if (quoted) {

Completed in 291 milliseconds

1234