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

12345

/freebsd-current/contrib/openpam/lib/libpam/
H A Dopenpam_readword.c56 int ch, escape, quote; local
62 escape = quote = 0;
94 while ((ch = fgetc(f)) != EOF && (!is_ws(ch) || quote || escape)) {
95 if (ch == '\\' && !escape && quote != '\'') {
98 } else if ((ch == '\'' || ch == '"') && !quote && !escape) {
99 /* begin quote */
100 quote = ch;
104 } else if (ch == quote && !escape) {
105 /* end quote */
106 quote
[all...]
/freebsd-current/contrib/libedit/
H A Dtokenizer.c92 quote_t quote; /* Quoting state */ local
152 tok->quote = Q_none;
169 tok->quote = Q_none;
196 * 2 Unmatched double quote
197 * 1 Unmatched single quote
225 switch (tok->quote) {
227 tok->quote = Q_single; /* Enter single quote
231 case Q_single: /* Exit single quote mode */
232 tok->quote
[all...]
/freebsd-current/contrib/ee/
H A Dgenstr29 \$quote "
/freebsd-current/contrib/llvm-project/lld/include/lld/Common/
H A DReproduce.h28 std::string quote(StringRef s);
/freebsd-current/crypto/heimdal/lib/hx509/
H A Dsel-lex.l94 int quote = 0;
96 if(quote) {
99 quote = 0;
108 quote++;
/freebsd-current/crypto/heimdal/lib/sl/
H A Dslc-lex.l129 int quote = 0;
131 if(quote) {
134 quote = 0;
143 quote++;
/freebsd-current/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;
99 // Eat until the matching quote
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DArgs.cpp19 // Parses the initial part of the first argument using normal double quote
20 // rules: backslash escapes the double quote and itself. The parsed string is
22 // of the string, starting at the closing quote.
33 // If we have reached the end of string or the closing quote, we're done.
76 // The function returns a tuple consisting of the parsed argument, the quote
90 // we remember the first quote character we encounter and use that for the
91 // quote character.
134 // We found the start of a quote scope.
141 // For single quotes, we simply skip ahead to the matching quote
148 // If we found a closing quote, ski
159 ArgEntry(llvm::StringRef str, char quote) argument
217 char quote = m_entries[i].quote; local
253 char quote; local
364 char quote = local
640 char quote; local
[all...]
/freebsd-current/contrib/kyua/model/
H A Dtest_result.cpp136 % text::quote(result_name, '\'');
139 % text::quote(result_name, '\'') % text::quote(reason, '\'');
/freebsd-current/contrib/llvm-project/lld/Common/
H A DReproduce.cpp45 std::string lld::quote(StringRef s) { function in class:lld
61 v += quote(arg.getValue(i));
/freebsd-current/contrib/nvi/vi/
H A Dv_replace.c49 int quote, rval; local
95 quote = 0;
109 if (!quote) {
111 quote = 1;
152 if ((!quote && vip->rvalue == K_CR) || vip->rvalue == K_NL) {
/freebsd-current/contrib/libxo/xolint/
H A Dxolint.pl170 my $quote = "";
182 print "'$ch' ($quote) ($#open) [" . join("", @open) . "]\n"
187 if ($ch eq "," && $quote eq "" && $#open < 0) {
194 next if $ch =~ /[ \t\n\r]/ && $quote eq "" && $#open < 0;
198 if ($quote) {
199 if ($ch eq $quote) {
200 $quote = "";
205 $quote = $quotes{$ch};
/freebsd-current/usr.bin/gencat/
H A Dgencat.c301 getmsg(int fd, char *cptr, char quote) argument
308 if (quote && *cptr == quote) {
323 if (quote && *cptr == quote) {
327 warning(cptr, "unexpected quote character, ignoring");
362 if (quote && *cptr == quote) {
393 char quote = 0; local
411 } else if (strncmp(cptr, "quote",
[all...]
/freebsd-current/contrib/kyua/utils/fs/
H A Ddirectory.cpp105 output << F("directory_entry{name=%s}") % text::quote(entry.name, '\'');
/freebsd-current/contrib/kyua/utils/text/
H A Doperations.hpp44 std::string quote(const std::string&, const char);
/freebsd-current/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-current/contrib/arm-optimized-routines/string/test/
H A Dstringtest.h52 quote (const char *prefix, const void *p, int len) function
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DArgs.h40 char quote = '\0'; member in struct:lldb_private::Args::ArgEntry
46 ArgEntry(llvm::StringRef str, char quote);
52 bool IsQuoted() const { return quote != '\0'; }
53 char GetQuoteChar() const { return quote; }
179 /// If the argument was originally quoted, put in the quote char here.
195 /// If the argument was originally quoted, put in the quote char here.
209 /// If the argument was originally quoted, put in the quote char here.
227 // FIXME: Handle the quote character somehow.
251 /// If the argument was originally quoted, put in the quote char here.
/freebsd-current/sys/kern/
H A Dtty_ttydisc.c725 ttydisc_echo_force(struct tty *tp, char c, int quote) argument
731 if (CMP_FLAG(o, OPOST) && CTL_ECHO(c, quote)) {
737 } else if (CMP_FLAG(l, ECHOCTL) && CTL_PRINT(c, quote)) {
750 if (!quote && CMP_CC(VEOF, c)) {
764 ttydisc_echo(struct tty *tp, char c, int quote) argument
772 (!CMP_FLAG(l, ECHONL) || c != CNL || quote))
775 return ttydisc_echo_force(tp, c, quote);
779 ttydisc_reprint_char(void *d, char c, int quote) argument
783 ttydisc_echo(tp, c, quote);
807 ttydisc_recalc_charlength(void *d, char c, int quote) argument
836 int quote; local
983 int quote, alnum; local
1014 int signal, quote = 0; local
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarmod-quote-dollar.mk1 # $NetBSD: varmod-quote-dollar.mk,v 1.4 2022/05/08 10:14:40 rillig Exp $
/freebsd-current/contrib/llvm-project/lld/MachO/
H A DDriverUtils.cpp148 os << quote(rewriteInputPath(arg->getValue())) << "\n";
151 os << "-o " << quote(path::filename(arg->getValue())) << "\n";
156 os << quote(rewriteInputPath(path)) << "\n";
162 << quote(rewriteInputPath(arg->getValue())) << "\n";
171 os << arg->getSpelling() << " " << quote(rewritePath(arg->getValue()))
175 os << arg->getSpelling() << " " << quote(arg->getValue(0)) << " "
176 << quote(arg->getValue(1)) << " "
177 << quote(rewritePath(arg->getValue(2))) << "\n";
/freebsd-current/lib/libfigpar/
H A Dfigpar.c96 uint8_t quote; local
256 quote = 0;
323 quote = !quote;
331 if (!quote)
343 if (!quote && bsemicolon)
/freebsd-current/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-current/lib/libc/gen/
H A Dwordexp.c303 bool quote = false, dollar = false; local
314 quote = !quote;
317 if (quote)
318 quote = false;
323 if (!quote && !have_sq && !have_dq)
330 if (!quote && !have_sq && !have_dq)
337 if (!quote && !have_sq && !have_cmd)
344 if (!quote && !dollar && !have_sq && !have_dq &&
348 if (!quote
[all...]
/freebsd-current/sys/sys/
H A Dttyqueue.h77 int quote);
79 int quote);
85 int ttyinq_peekchar(struct ttyinq *ti, char *c, int *quote);

Completed in 435 milliseconds

12345