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

123

/freebsd-9.3-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-9.3-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]))) {
71 } else if (!quoted && isspace(UCH(blob[n]))) {
/freebsd-9.3-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-9.3-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-9.3-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-9.3-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-9.3-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-9.3-release/crypto/openssh/
H A Dauth-rsa.c205 int quoted = 0; local
207 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
211 quoted = !quoted;
H A Dauth2-pubkey.c342 int quoted = 0; local
345 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
349 quoted = !quoted;
/freebsd-9.3-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-9.3-release/tools/tools/notescheck/
H A Dnotescheck.py214 # Split a line into words on whitespace with the exception that quoted
230 # String split all the "odd" groups since they are not quoted strings.
231 quoted = False
234 if quoted:
236 quoted = False
240 quoted = True
/freebsd-9.3-release/contrib/cvs/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
/freebsd-9.3-release/bin/sh/
H A Dexpand.c321 case CTLESC: /* This means CTL* are always considered quoted. */
413 int quoted; local
439 quoted=1;
441 quoted=0;
452 if (quoted == 0)
463 expbackq(union node *cmd, int quoted, int flag) argument
474 char const *syntax = quoted? DQSYNTAX : BASESYNTAX;
527 if (quoted == 0)
896 strtodest(const char *p, int flag, int subtype, int quoted) argument
899 STPUTS_QUOTES(p, quoted
909 varvalue(char *name, int quoted, int subtype, int flag) argument
[all...]
/freebsd-9.3-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-9.3-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-9.3-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...]
H A Dalias.c321 bool quoted = false; local
326 ** Don't break into a quoted string.
332 quoted = !quoted;
333 else if (*p == ',' && !quoted)
H A Drecipient.c465 bool quoted; /* set if the addr has a quote bit */ local
474 quoted = false;
646 for (p = buf; *p != '\0' && !quoted; p++)
649 quoted = true;
912 if (!quoted && QS_IS_OK(new->q_state) &&
1039 else if (!quoted)
/freebsd-9.3-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-9.3-release/contrib/binutils/gas/
H A Dlisting.c1195 int quoted; local
1202 quoted = 0;
1205 quoted = 1;
1213 if (quoted
1226 if (quoted)
/freebsd-9.3-release/contrib/sendmail/vacation/
H A Dvacation.c521 bool quoted = false; local
538 quoted = !quoted;
541 else if (*p == ' ' && !quoted)
545 if (quoted)
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dlinespec.c141 single quoted demangled C++ symbols as part of the completion
415 of all parenthesis pairs, single-quoted strings, and double-quoted
422 int quoted = 0; /* zero if we're not in quotes; local
423 '"' if we're in a double-quoted string;
424 '\'' if we're in a single-quoted string. */
430 if (quoted)
432 if (*scan == quoted)
433 quoted = 0;
437 else if (*scan == c && ! quoted
[all...]
/freebsd-9.3-release/contrib/one-true-awk/
H A Dproto.h47 extern int quoted(uschar **);

Completed in 176 milliseconds

123