| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| quote.c | 0 /* quote.c - quote arguments for output 25 #include "quote.h" 38 quote (char const *name) function
|
| /src/external/apache2/llvm/dist/clang/utils/ |
| module-deps-to-rsp.py | 42 def quote(str): function 66 print(" ".join(map(quote, cmd)))
|
| FuzzTest | 98 def quote(str): function 106 'inputs' : ' '.join(quote(f) for f in input_files) }
|
| /src/external/gpl3/gdb.old/dist/gdbsupport/ |
| common-inferior.cc | 40 static const char quote = '"'; local 46 static const char quote = '\''; 56 result += quote; 57 result += quote; 67 result += quote; 77 result += quote; 79 result += quote; 84 if (*cp == quote) 94 result += quote;
|
| /src/external/bsd/openpam/dist/lib/libpam/ |
| openpam_readword.c | 61 int ch, escape, quote; local 67 escape = quote = 0; 99 while ((ch = fgetc(f)) != EOF && (!is_ws(ch) || quote || escape)) { 100 if (ch == '\\' && !escape && quote != '\'') { 103 } else if ((ch == '\'' || ch == '"') && !quote && !escape) { 104 /* begin quote */ 105 quote = ch; 109 } else if (ch == quote && !escape) { 110 /* end quote */ 111 quote = 0 [all...] |
| /src/external/gpl3/gdb/dist/gdbsupport/ |
| common-inferior.cc | 42 static const char quote = '"'; local 44 static const char quote = '\''; local 50 result += quote; 51 result += quote; 65 result += quote; 74 result += quote; 76 result += quote; 81 if (*cp == quote) 91 result += quote; 117 /* Return a version of ARG that has quote characters and white spac [all...] |
| /src/external/bsd/kyua-cli/dist/utils/text/ |
| operations.cpp | 39 /// Surrounds a string with quotes, escaping the quote itself if needed. 41 /// \param text The string to quote. 42 /// \param quote The quote character to use. 46 text::quote(const std::string& text, const char quote) function in class:text 49 quoted << quote; local 52 std::string::size_type last_pos = text.find(quote); 56 last_pos = text.find(quote, start_pos + 1); 60 quoted << quote; local [all...] |
| /src/external/bsd/nvi/dist/vi/ |
| v_replace.c | 59 int quote, rval; local 105 quote = 0; 119 if (!quote) { 121 quote = 1; 165 if ((!quote && vip->rvalue == K_CR) || vip->rvalue == K_NL) {
|
| /src/external/bsd/openldap/dist/libraries/librewrite/ |
| parse.c | 38 char quote = '\0'; local 50 if ( in_quoted_field && p[ 0 ] == quote ) { 52 quote = '\0'; 69 quote = p[ 0 ];
|
| /src/external/apache2/llvm/dist/llvm/utils/lit/lit/ |
| BooleanExpression.py | 61 def quote(self, token): member in class:BooleanExpression 80 (self.quote(t), self.quote(self.token))) 98 self.quote(self.token))
|
| /src/external/bsd/file/dist/src/ |
| is_csv.c | 75 int quote = 0; local 81 if (quote) { 86 if (quote) { 87 // quote-quote escapes 88 quote = 0; 91 // first quote 92 quote = 1; 105 // Eat until the matching quote
|
| /src/lib/libc/gen/ |
| wordexp.c | 256 int dquote, level, quote, squote; local 258 quote = squote = dquote = 0; 262 quote ^= 1; 265 if (quote + dquote == 0) 269 if (quote + squote == 0) 273 if (quote + squote == 0 && flags & WRDE_NOCMD) 283 if (quote + squote + dquote == 0) 289 else if (quote + squote == 0 && c == '(') { 304 } else if (quote + squote == 0 && c == '{') { 323 quote = 0 [all...] |
| /src/lib/libperfuse/ |
| debug.c | 212 const char *quote = pt->pt_path[0] != '\0' ? "\"" : ""; local 217 quote, pt->pt_path, quote,
|
| /src/sys/arch/ia64/stand/common/ |
| interp_parse.c | 88 char token, tmp, quote, *buf; local 92 quote = 0; 111 quote = quote ? 0 : *p; 114 else if (isspace(*p) && !quote) {
|
| /src/external/bsd/kyua-testers/dist/ |
| atf_list.c | 148 const char quote = *quoteptr; local 150 fprintf(output, "%s\\%c", line, quote);
|
| /src/external/bsd/pcc/dist/pcc/cc/driver/ |
| strlist.c | 78 int quote, first = 1; local 84 quote = 0; 93 quote = 1; 97 if (quote) 100 if (quote && (*p == '"' || *p == '$' 105 if (quote)
|
| /src/external/bsd/tradcpp/dist/ |
| output.c | 108 char quote = '\0'; local 146 quote = buf[pos]; 147 } else if (inquote && buf[pos] == quote) {
|
| /src/lib/libedit/ |
| tokenizer.c | 92 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 = Q_none [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_flag_parser.cc | 88 char quote = buf_[pos_++]; local 89 while (buf_[pos_] != 0 && buf_[pos_] != quote) ++pos_; 92 ++pos_; // consume the closing quote
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_flag_parser.cpp | 100 char quote = buf_[pos_++]; local 101 while (buf_[pos_] != 0 && buf_[pos_] != quote) ++pos_; 104 ++pos_; // consume the closing quote
|
| /src/bin/csh/ |
| misc.c | 376 quote(Char *cp) function 384 *dp++ |= QUOTE;
|
| /src/sbin/restore/ |
| interactive.c | 414 char quote; local 442 quote = *cp++; 443 while (*cp != quote && *cp != '\0') 446 fprintf(stderr, "missing %c\n", quote);
|
| /src/usr.bin/mail/ |
| names.c | 172 int quote; local 174 quote = ntype & GSMOPTS; 188 if (quote && need_quotes(p->n_name)) 200 do_quotes = (quote && need_quotes(p->n_name)); 441 goto quote; 443 goto quote; 448 quote:
|
| /src/crypto/external/apache2/openssl/dist/crypto/property/ |
| property_parse.c | 622 char quote = '\0'; local 636 if (quote == '\0') 637 quote = '\''; 640 quote = '"'; 643 quotes = quote != '\0'; 650 put_char(quote, buf, remain, needed); 662 put_char(quote, buf, remain, needed);
|
| /src/crypto/external/bsd/heimdal/dist/kadmin/ |
| util.c | 566 int quote = 0; local 569 if(quote) { 570 quote = 0; 574 quote++;
|