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

123

/freebsd-10.0-release/contrib/diff/lib/
H A Dquotesys.c28 /* Place into QUOTED a quoted version of ARG suitable for `system'.
33 quote_system_arg (quoted, arg)
34 char *quoted;
74 if (quoted)
76 quoted[len] = '-';
77 quoted[len + 1] = c;
85 if (quoted)
86 quoted[len] = c;
94 if (quoted)
95 quoted[le
[all...]
/freebsd-10.0-release/contrib/dialog/
H A Dversion.c25 #define quoted(a) #a macro
26 #define concat(a,b) a "-" quoted(b)
H A Dargv.c42 bool quoted = FALSE; local
47 if (quoted && blob[n] == '"') {
48 quoted = FALSE;
50 quoted = TRUE;
58 if (quoted && !isspace(UCH(blob[n + 1]))) {
65 } else if (!quoted && isspace(UCH(blob[n]))) {
/freebsd-10.0-release/contrib/groff/src/libs/libgroff/
H A Dquotearg.c95 char *quoted, *p, *q; local
98 /* Need to create a quoted copy of `string';
103 if ((quoted = (char *)malloc(2 * strlen(string) + 3)) == NULL) {
104 /* Couldn't get a buffer for the quoted string,
117 *quoted = '"';
118 for (backslashes = 0, p = string, q = quoted; *p; p++) {
167 * add the closing quote, terminate the quoted string,
174 if ((string = (char *)realloc(quoted, strlen(quoted) + 1)) == NULL) {
183 * quoted an
[all...]
/freebsd-10.0-release/contrib/ldns/
H A Dparse.c35 int com, quoted; local
52 quoted = 0;
56 quoted = 1;
61 if (c == '(' && prev_c != '\\' && !quoted) {
70 if (c == ')' && prev_c != '\\' && !quoted) {
86 if (c == ';' && quoted == 0) {
92 quoted = 1 - quoted;
221 int com, quoted; local
238 quoted
[all...]
/freebsd-10.0-release/contrib/sendmail/libsm/
H A Dutil.c230 bool quoted; local
232 quoted = false;
236 if ((*ip & 0377) == METAQUOTE && !quoted)
238 quoted = true;
246 quoted = false;
/freebsd-10.0-release/contrib/unbound/util/
H A Dconfiglexer.lex299 yyerror("EOF inside quoted string");
304 <quotedstring>{NEWLINE} { yyerror("newline inside quoted string, no end \"");
320 yyerror("EOF inside quoted string");
325 <singlequotedstr>{NEWLINE} { yyerror("newline inside quoted string, no end '");
354 yyerror("EOF inside quoted string");
/freebsd-10.0-release/contrib/mdocml/
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...]
/freebsd-10.0-release/contrib/amd/fsinfo/
H A Dfsi_lex.l123 static int quoted;
179 <F>\" { BEGIN Q; optr = ostr; quoted = 1; }
192 <Q>\" { BEGIN F; quoted = 0;
/freebsd-10.0-release/contrib/groff/src/preproc/eqn/
H A Dlex.cpp750 int quoted = 0; local
759 lex_error("newline before end of quoted text");
763 if (!quoted)
766 quoted = 0;
770 quoted = quoted ? 0 : c == '\\';
786 int quoted = 0; local
789 quoted = 1;
795 if (!quoted && lookup_flag != 0 && c == '(') {
806 if (quoted) {
[all...]
/freebsd-10.0-release/contrib/sendmail/praliases/
H A Dpraliases.c178 bool quoted = false; local
183 ** Don't break into a quoted
188 quoted = !quoted;
189 else if (*p == ',' && !quoted)
/freebsd-10.0-release/crypto/openssh/
H A Dauth-rsa.c201 int quoted = 0; local
203 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
207 quoted = !quoted;
/freebsd-10.0-release/release/picobsd/tinyware/msh/
H A Dsh4.c26 _PROTOTYPE(static int dollar, (int quoted ));
27 _PROTOTYPE(static int grave, (int quoted ));
221 subgetc(ec, quoted)
223 int quoted;
231 if (grave(quoted) == 0)
236 if (c == '$' && (c = dollar(quoted)) == 0) {
248 dollar(quoted)
249 int quoted;
342 PUSHIO(aword, dolp, quoted ? qstrchar : strchar);
350 grave(quoted)
[all...]
/freebsd-10.0-release/tools/tools/notescheck/
H A Dnotescheck.py216 # Split a line into words on whitespace with the exception that quoted
232 # String split all the "odd" groups since they are not quoted strings.
233 quoted = False
236 if quoted:
238 quoted = False
242 quoted = True
/freebsd-10.0-release/bin/sh/
H A Dexpand.c308 case CTLESC: /* This means CTL* are always considered quoted. */
400 int quoted; local
426 quoted=1;
428 quoted=0;
439 if (quoted == 0)
450 expbackq(union node *cmd, int quoted, int flag) argument
461 char const *syntax = quoted? DQSYNTAX : BASESYNTAX;
514 if (quoted == 0)
883 strtodest(const char *p, int flag, int subtype, int quoted) argument
886 STPUTS_QUOTES(p, quoted
896 varvalue(char *name, int quoted, int subtype, int flag) argument
[all...]
/freebsd-10.0-release/contrib/amd/amd/
H A Dmntfs.c302 int quoted; local
308 quoted = strchr(mf->mf_info, ' ') != 0; /* cheap */
310 quoted ? "\"" : "",
312 quoted ? "\"" : "",
H A Dautil.c191 int quoted; local
238 quoted = strchr(mf->mf_info, ' ') != 0;
240 quoted ? "\"" : "",
242 quoted ? "\"" : "",
/freebsd-10.0-release/contrib/ntp/libopts/
H A Dtokenize.c145 * There are two types of quoted strings: single quoted (@code{'}) and
146 * double quoted (@code{"}). Singly quoted strings are fairly raw in that
173 * @code{EINVAL} - There was an unterminated quoted string.
200 * Take an approximate count of tokens. If no quoted strings are used,
201 * it will be accurate. If quoted strings are used, it will be a little
/freebsd-10.0-release/contrib/ntp/sntp/libopts/
H A Dtokenize.c145 * There are two types of quoted strings: single quoted (@code{'}) and
146 * double quoted (@code{"}). Singly quoted strings are fairly raw in that
173 * @code{EINVAL} - There was an unterminated quoted string.
200 * Take an approximate count of tokens. If no quoted strings are used,
201 * it will be accurate. If quoted strings are used, it will be a little
/freebsd-10.0-release/usr.sbin/makefs/
H A Dmtree.c187 int c, error, quoted, subst; local
198 quoted = (subst || c == '\'') ? 1 : 0;
201 res = strdup(spec + quoted);
202 if (res != NULL && quoted)
393 mtree_warning("quoted word straddles "
/freebsd-10.0-release/contrib/sendmail/src/
H A Dutil.c56 ** pointer to quoted string.
71 /* Find length of quoted string */
130 ** are only found inside comments, quoted strings, or backslash
144 bool quoted = false; local
161 quoted = !quoted;
162 else if (!quoted)
182 return !quoted && commentlev == 0;
210 bool quoted = false; local
236 if (!quoted)
316 bool quoted = false; local
[all...]
/freebsd-10.0-release/contrib/ntp/ntpdate/
H A Dntptime_config.c405 register int quoted = 0; local
430 while (!ISEOL(*cp) && (!ISSPACE(*cp) || quoted))
431 quoted ^= (*cp++ == '"');
/freebsd-10.0-release/usr.sbin/pkg_install/lib/
H A Dmatch.c473 Boolean quoted = FALSE; local
481 } else if (quoted) {
482 quoted = FALSE;
518 quoted = TRUE;
/freebsd-10.0-release/contrib/binutils/gas/
H A Dlisting.c1195 int quoted; local
1202 quoted = 0;
1205 quoted = 1;
1213 if (quoted
1226 if (quoted)
/freebsd-10.0-release/contrib/sendmail/vacation/
H A Dvacation.c521 bool quoted = false; local
538 quoted = !quoted;
541 else if (*p == ' ' && !quoted)
545 if (quoted)

Completed in 304 milliseconds

123