Searched refs:quote (Results 1 - 25 of 107) sorted by relevance

12345

/freebsd-11-stable/contrib/gdb/gdb/mi/
H A Dmi-console.h27 char quote);
H A Dmi-console.c40 char quote; member in struct:mi_console_file
47 const char *prefix, char quote)
55 mi_console->quote = quote;
101 if (mi_console->quote)
104 fputstrn_unfiltered (buf, length_buf, mi_console->quote, mi_console->raw);
46 mi_console_file_new(struct ui_file *raw, const char *prefix, char quote) argument
/freebsd-11-stable/contrib/openpam/lib/libpam/
H A Dopenpam_readword.c58 int ch, escape, quote; local
64 escape = quote = 0;
96 while ((ch = fgetc(f)) != EOF && (!is_ws(ch) || quote || escape)) {
97 if (ch == '\\' && !escape && quote != '\'') {
100 } else if ((ch == '\'' || ch == '"') && !quote && !escape) {
101 /* begin quote */
102 quote = ch;
106 } else if (ch == quote && !escape) {
107 /* end quote */
108 quote
[all...]
/freebsd-11-stable/contrib/gcc/
H A Doptc-gen.awk31 quote = "\042"
61 print "#include " quote headers[i] quote
62 print "#include " quote "opts.h" quote
63 print "#include " quote "intl.h" quote
117 print " " quote langs[i] quote ","
176 hlp = quote hel
[all...]
H A Dcppspec.c78 int i, j, quote = 0; local
90 if (quote == 1)
92 quote = 0;
113 quote = 1;
116 quote = 1;
121 quote = 1;
/freebsd-11-stable/lib/libedit/
H A Dtokenizer.c81 quote_t quote; /* Quoting state */ local
141 tok->quote = Q_none;
158 tok->quote = Q_none;
185 * 2 Unmatched double quote
186 * 1 Unmatched single quote
214 switch (tok->quote) {
216 tok->quote = Q_single; /* Enter single quote
220 case Q_single: /* Exit single quote mode */
221 tok->quote
[all...]
/freebsd-11-stable/contrib/ee/
H A Dgenstr29 \$quote "
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/
H A DReproduce.h28 std::string quote(StringRef s);
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A Dsel-lex.l94 int quote = 0;
96 if(quote) {
99 quote = 0;
108 quote++;
/freebsd-11-stable/crypto/heimdal/lib/sl/
H A Dslc-lex.l129 int quote = 0;
131 if(quote) {
134 quote = 0;
143 quote++;
/freebsd-11-stable/contrib/file/src/
H A Dis_csv.c69 int quote = 0; local
75 if (quote) {
80 if (quote) {
81 // quote-quote escapes
82 quote = 0;
85 // first quote
86 quote = 1;
100 // Eat until the matching quote
/freebsd-11-stable/contrib/binutils/binutils/
H A Ddllwrap.c822 /* Re-create the command lines as a string, taking care to quote stuff. */
835 int quote = (strchr (arg, ' ') || strchr (arg, '\t')); local
837 (quote) ? " \"" : " ");
840 (quote) ? "\"" : "");
910 int quote = (strchr (arg, ' ') || strchr (arg, '\t')); local
912 (quote) ? " \"" : " ");
915 (quote) ? "\"" : "");
948 int quote = (strchr (arg, ' ') || strchr (arg, '\t')); local
950 (quote) ? " \"" : " ");
953 (quote)
994 int quote; local
1040 int quote; local
1085 int quote; local
1126 int quote; local
1178 int quote; local
[all...]
/freebsd-11-stable/contrib/gcc/cp/
H A Dg++spec.c74 const char *quote = NULL; local
121 if (quote)
123 quote = NULL;
157 quote = arg = argv[i+1];
171 quote = argv[i];
183 quote = argv[i];
237 if (quote)
238 fatal ("argument to '%s' missing\n", quote);
/freebsd-11-stable/contrib/llvm-project/lld/Common/
H A DReproduce.cpp45 std::string lld::quote(StringRef s) { function in class:lld
57 std::string v = quote(arg.getValue());
/freebsd-11-stable/contrib/nvi/vi/
H A Dv_replace.c53 int quote, rval; local
99 quote = 0;
113 if (!quote) {
115 quote = 1;
156 if ((!quote && vip->rvalue == K_CR) || vip->rvalue == K_NL) {
/freebsd-11-stable/contrib/libxo/xolint/
H A Dxolint.pl168 my $quote = "";
180 print "'$ch' ($quote) ($#open) [" . join("", @open) . "]\n"
185 if ($ch eq "," && $quote eq "" && $#open < 0) {
192 next if $ch =~ /[ \t\n\r]/ && $quote eq "" && $#open < 0;
196 if ($quote) {
197 if ($ch eq $quote) {
198 $quote = "";
203 $quote = $quotes{$ch};
/freebsd-11-stable/usr.bin/gencat/
H A Dgencat.c303 getmsg(int fd, char *cptr, char quote) argument
310 if (quote && *cptr == quote) {
325 if (quote && *cptr == quote) {
329 warning(cptr, "unexpected quote character, ignoring");
364 if (quote && *cptr == quote) {
395 char quote = 0; local
413 } else if (strncmp(cptr, "quote",
[all...]
/freebsd-11-stable/crypto/heimdal/appl/telnet/telnet/
H A Dutilities.c253 qprintf(int quote, FILE *f, const char *fmt, ...)
257 if (quote)
744 int quote = 0;
748 qprintf(quote, NetTrace, "VAR ");
749 quote = 0;
753 qprintf(quote, NetTrace, "VALUE");
754 quote = 0;
758 qprintf(quote, NetTrace, "ESC ");
759 quote = 0;
763 qprintf(quote, NetTrac
252 qprintf(int quote, FILE *f, const char *fmt, ...) argument
743 int quote = 0; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DArgs.h38 char quote; member in struct:lldb_private::Args::ArgEntry
44 ArgEntry(llvm::StringRef str, char quote);
50 bool IsQuoted() const { return quote != '\0'; }
51 char GetQuoteChar() const { return quote; }
175 /// If the argument was originally quoted, put in the quote char here.
191 /// If the argument was originally quoted, put in the quote char here.
205 /// If the argument was originally quoted, put in the quote char here.
223 // FIXME: Handle the quote character somehow.
247 /// If the argument was originally quoted, put in the quote char here.
/freebsd-11-stable/contrib/gdb/gdb/cli/
H A Dcli-setshow.c262 int quote;
276 quote = 0;
285 quote = 1;
293 quote = 1;
338 if (quote)
341 if (quote)
260 int quote; local
/freebsd-11-stable/lib/libfigpar/
H A Dfigpar.c99 uint8_t quote; local
259 quote = 0;
326 quote = !quote;
334 if (!quote)
346 if (!quote && bsemicolon)
/freebsd-11-stable/sys/kern/
H A Dtty_ttydisc.c627 ttydisc_echo_force(struct tty *tp, char c, int quote) argument
630 if (CMP_FLAG(o, OPOST) && CTL_ECHO(c, quote)) {
636 } else if (CMP_FLAG(l, ECHOCTL) && CTL_PRINT(c, quote)) {
649 if (!quote && CMP_CC(VEOF, c)) {
663 ttydisc_echo(struct tty *tp, char c, int quote) argument
671 (!CMP_FLAG(l, ECHONL) || c != CNL || quote))
674 return ttydisc_echo_force(tp, c, quote);
678 ttydisc_reprint_char(void *d, char c, int quote) argument
682 ttydisc_echo(tp, c, quote);
706 ttydisc_recalc_charlength(void *d, char c, int quote) argument
735 int quote; local
808 int quote, alnum; local
839 int signal, quote = 0; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DArgs.cpp20 // Parses the initial part of the first argument using normal double quote
21 // rules: backslash escapes the double quote and itself. The parsed string is
23 // of the string, starting at the closing quote.
34 // If we have reached the end of string or the closing quote, we're done.
77 // The function returns a tuple consisting of the parsed argument, the quote
91 // we remember the first quote character we encounter and use that for the
92 // quote character.
135 // We found the start of a quote scope.
142 // For single quotes, we simply skip ahead to the matching quote
149 // If we found a closing quote, ski
160 ArgEntry(llvm::StringRef str, char quote) argument
244 char quote; local
357 char quote = local
633 char quote; local
[all...]
/freebsd-11-stable/crypto/heimdal/appl/telnet/telnetd/
H A Dutility.c916 int quote = 0; local
920 if (quote)
923 quote = 0;
927 if (quote)
930 quote = 0;
934 if (quote)
937 quote = 0;
941 if (quote)
944 quote = 0;
949 if (!quote) {
[all...]
/freebsd-11-stable/lib/libc/gen/
H A Dwordexp.c305 bool quote = false, dollar = false; local
316 quote = !quote;
319 if (quote)
320 quote = false;
325 if (!quote && !have_sq && !have_dq)
332 if (!quote && !have_sq && !have_dq)
339 if (!quote && !have_sq && !have_cmd)
346 if (!quote && !dollar && !have_sq && !have_dq &&
350 if (!quote
[all...]

Completed in 188 milliseconds

12345