| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | optc-save-gen.awk | 36 print "#include " quote headers[i] quote 37 print "#include " quote "opts.h" quote 38 print "#include " quote "intl.h" quote 40 print "#include " quote "flags.h" quote 41 print "#include " quote "target.h" quote 42 print "#include " quote "inchash.h" quote 43 print "#include " quote "hash-set.h" quote 44 print "#include " quote "vec.h" quote 45 print "#include " quote "input.h" quote 46 print "#include " quote "alias.h" quote [all …]
|
| H A D | optc-gen.awk | 114 print "#include " quote headers[i] quote 115 print "#include " quote "opts.h" quote 116 print "#include " quote "intl.h" quote 117 print "#include " quote "insn-attr-common.h" quote 122 print "#include " quote extra_c_includes[i] quote 158 ehelp = quote ehelp quote 163 unknown_error = quote unknown_error quote 243 print " " quote langs[i] quote "," 309 hlp = quote help[i] quote; 315 missing_arg_error = quote missing_arg_error quote [all …]
|
| /netbsd-src/lib/libedit/ |
| H A D | tokenizer.c | 92 quote_t quote; /* Quoting state */ in TYPE() local 152 tok->quote = Q_none; in TYPE() 169 tok->quote = Q_none; in FUN() 225 switch (tok->quote) { in FUN() 227 tok->quote = Q_single; /* Enter single quote in FUN() 232 tok->quote = Q_none; in FUN() 236 tok->quote = Q_none; in FUN() 245 tok->quote = Q_double; in FUN() 257 switch (tok->quote) { in FUN() 259 tok->quote = Q_double; in FUN() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | optc-gen.awk | 163 print "#include " quote headers[i] quote 164 print "#include " quote "opts.h" quote 165 print "#include " quote "intl.h" quote 166 print "#include " quote "insn-attr-common.h" quote 171 print "#include " quote extra_c_includes[i] quote 207 ehelp = quote ehelp quote 212 unknown_error = quote unknown_error quote 296 print " " quote langs[i] quote "," 365 hlp = quote help[i] quote; 371 missing_arg_error = quote missing_arg_error quote [all …]
|
| H A D | optc-save-gen.awk | 36 print "#include " quote headers[i] quote 37 print "#include " quote "opts.h" quote 38 print "#include " quote "intl.h" quote 40 print "#include " quote "flags.h" quote 41 print "#include " quote "target.h" quote 42 print "#include " quote "inchash.h" quote 43 print "#include " quote "hash-set.h" quote 44 print "#include " quote "vec.h" quote 45 print "#include " quote "input.h" quote 46 print "#include " quote "alias.h" quote [all …]
|
| /netbsd-src/external/bsd/openpam/dist/lib/libpam/ |
| H A D | openpam_readword.c | 61 int ch, escape, quote; in openpam_readword() local 67 escape = quote = 0; in openpam_readword() 99 while ((ch = fgetc(f)) != EOF && (!is_ws(ch) || quote || escape)) { in openpam_readword() 100 if (ch == '\\' && !escape && quote != '\'') { in openpam_readword() 103 } else if ((ch == '\'' || ch == '"') && !quote && !escape) { in openpam_readword() 105 quote = ch; in openpam_readword() 109 } else if (ch == quote && !escape) { in openpam_readword() 111 quote = 0; in openpam_readword() 116 if (escape && quote && ch != '\\' && ch != quote && in openpam_readword() 138 if (ch == EOF && (escape || quote)) { in openpam_readword()
|
| /netbsd-src/external/gpl3/binutils/dist/binutils/ |
| H A D | dllwrap.c | 869 int quote = (strchr (arg, ' ') || strchr (arg, '\t')); in main() local 871 (quote) ? " \"" : " "); in main() 874 (quote) ? "\"" : ""); in main() 960 int quote = (strchr (arg, ' ') || strchr (arg, '\t')); in main() local 962 (quote) ? " \"" : " "); in main() 965 (quote) ? "\"" : ""); in main() 997 int quote = (strchr (arg, ' ') || strchr (arg, '\t')); in main() local 999 (quote) ? " \"" : " "); in main() 1002 (quote) ? "\"" : ""); in main() 1043 int quote; in main() local [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/binutils/ |
| H A D | dllwrap.c | 869 int quote = (strchr (arg, ' ') || strchr (arg, '\t')); in main() local 871 (quote) ? " \"" : " "); in main() 874 (quote) ? "\"" : ""); in main() 960 int quote = (strchr (arg, ' ') || strchr (arg, '\t')); in main() local 962 (quote) ? " \"" : " "); in main() 965 (quote) ? "\"" : ""); in main() 997 int quote = (strchr (arg, ' ') || strchr (arg, '\t')); in main() local 999 (quote) ? " \"" : " "); in main() 1002 (quote) ? "\"" : ""); in main() 1043 int quote; in main() local [all …]
|
| /netbsd-src/external/gpl2/gettext/dist/gnulib-local/modules/ |
| H A D | quote.diff | 1 *** quote.bak 2006-10-12 19:55:25.000000000 +0200 2 --- quote 2006-10-12 21:55:51.000000000 +0200 modifiedFile 10 "quote.h" 15 + lib_SOURCES += quote.h quote.c 18 "quote.h"
|
| /netbsd-src/lib/libc/gen/ |
| H A D | wordexp.c | 256 int dquote, level, quote, squote; in we_check() local 258 quote = squote = dquote = 0; in we_check() 262 quote ^= 1; in we_check() 265 if (quote + dquote == 0) in we_check() 269 if (quote + squote == 0) in we_check() 273 if (quote + squote == 0 && flags & WRDE_NOCMD) in we_check() 283 if (quote + squote + dquote == 0) in we_check() 289 else if (quote + squote == 0 && c == '(') { in we_check() 304 } else if (quote + squote == 0 && c == '{') { in we_check() 323 quote = 0; in we_check() [all …]
|
| /netbsd-src/external/bsd/kyua-cli/dist/utils/text/ |
| H A D | operations_test.cpp | 71 ATF_REQUIRE_EQ("''", text::quote("", '\'')); in ATF_TEST_CASE_BODY() 72 ATF_REQUIRE_EQ("##", text::quote("", '#')); in ATF_TEST_CASE_BODY() 79 ATF_REQUIRE_EQ("'Some text\"'", text::quote("Some text\"", '\'')); in ATF_TEST_CASE_BODY() 80 ATF_REQUIRE_EQ("#Another'string#", text::quote("Another'string", '#')); in ATF_TEST_CASE_BODY() 87 ATF_REQUIRE_EQ("'Some\\'text'", text::quote("Some'text", '\'')); in ATF_TEST_CASE_BODY() 88 ATF_REQUIRE_EQ("#Some\\#text#", text::quote("Some#text", '#')); in ATF_TEST_CASE_BODY() 91 text::quote("More than one' quote'", '\'')); in ATF_TEST_CASE_BODY() 93 text::quote("Multiple quotes ''' together", '\'')); in ATF_TEST_CASE_BODY() 96 text::quote("'escape at the beginning", '\'')); in ATF_TEST_CASE_BODY() 98 text::quote("escape at the end'", '\'')); in ATF_TEST_CASE_BODY()
|
| H A D | operations.cpp | 46 text::quote(const std::string& text, const char quote) in quote() function in text 49 quoted << quote; in quote() 52 std::string::size_type last_pos = text.find(quote); in quote() 56 last_pos = text.find(quote, start_pos + 1); in quote() 60 quoted << quote; in quote()
|
| /netbsd-src/external/gpl2/gettext/dist/gnulib-local/m4/ |
| H A D | quote.m4.diff | 1 *** gnulib/m4/quote.m4 2005-03-21 23:06:27.000000000 +0100 2 --- gettext-tools/m4/quote.m4 2005-03-09 00:49:02.000000000 +0100 8 - AC_LIBOBJ([quote]) 10 dnl Prerequisites of lib/quote.c.
|
| /netbsd-src/external/gpl3/gcc/dist/libcody/ |
| H A D | buffer.cc | 50 void MessageBuffer::Append (char const *str, bool quote, size_t len) in Append() argument 55 if (!len && !quote) in Append() 60 if (quote && len) in Append() 62 quote = false; in Append() 74 quote = true; in Append() 81 buffer.reserve (buffer.size () + len * (quote ? 3 : 1) + 2); in Append() 83 if (quote) in Append() 90 if (quote) in Append() 138 if (quote) in Append()
|
| /netbsd-src/external/bsd/file/dist/src/ |
| H A D | is_csv.c | 75 int quote = 0; in eatquote() local 81 if (quote) { in eatquote() 86 if (quote) { in eatquote() 88 quote = 0; in eatquote() 92 quote = 1; in eatquote()
|
| /netbsd-src/external/bsd/pcc/dist/pcc/cc/driver/ |
| H A D | strlist.c | 78 int quote, first = 1; in strlist_print() local 84 quote = 0; in strlist_print() 93 quote = 1; in strlist_print() 97 if (quote) in strlist_print() 100 if (quote && (*p == '"' || *p == '$' in strlist_print() 105 if (quote) in strlist_print()
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/com_err/ |
| H A D | lex.l | 90 int quote = 0; 92 if(quote) { 94 quote = 0; 103 quote++;
|
| /netbsd-src/sys/arch/ia64/stand/common/ |
| H A D | interp_parse.c | 88 char token, tmp, quote, *buf; in parse() local 92 quote = 0; in parse() 111 quote = quote ? 0 : *p; in parse() 114 else if (isspace(*p) && !quote) { in parse()
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/sl/ |
| H A D | slc-lex.l | 133 int quote = 0; in handle_string() local 135 if(quote) { in handle_string() 138 quote = 0; in handle_string() 147 quote++; in handle_string()
|
| /netbsd-src/external/bsd/openldap/dist/libraries/librewrite/ |
| H A D | parse.c | 38 char quote = '\0'; in parse_line() local 50 if ( in_quoted_field && p[ 0 ] == quote ) { in parse_line() 52 quote = '\0'; in parse_line() 69 quote = p[ 0 ]; in parse_line()
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/hx509/ |
| H A D | sel-lex.l | 102 int quote = 0; variable 104 if(quote) { 107 quote = 0; 116 quote++;
|
| /netbsd-src/external/gpl3/gcc.old/dist/libcpp/ |
| H A D | traditional.c | 385 unsigned int c, paren_depth = 0, quote; in _cpp_scan_out_logical_line() local 398 quote = 0; in _cpp_scan_out_logical_line() 471 quote = '>'; in _cpp_scan_out_logical_line() 474 if (c == quote) in _cpp_scan_out_logical_line() 475 quote = 0; in _cpp_scan_out_logical_line() 480 if (c == quote) in _cpp_scan_out_logical_line() 481 quote = 0; in _cpp_scan_out_logical_line() 482 else if (!quote) in _cpp_scan_out_logical_line() 483 quote = c; in _cpp_scan_out_logical_line() 495 if (!quote && *cur == '*') in _cpp_scan_out_logical_line() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libcpp/ |
| H A D | traditional.cc | 390 unsigned int c, paren_depth = 0, quote; in _cpp_scan_out_logical_line() local 403 quote = 0; in _cpp_scan_out_logical_line() 476 quote = '>'; in _cpp_scan_out_logical_line() 479 if (c == quote) in _cpp_scan_out_logical_line() 480 quote = 0; in _cpp_scan_out_logical_line() 485 if (c == quote) in _cpp_scan_out_logical_line() 486 quote = 0; in _cpp_scan_out_logical_line() 487 else if (!quote) in _cpp_scan_out_logical_line() 488 quote = c; in _cpp_scan_out_logical_line() 500 if (!quote && *cur == '*') in _cpp_scan_out_logical_line() [all …]
|
| /netbsd-src/external/bsd/nvi/dist/vi/ |
| H A D | v_replace.c | 59 int quote, rval; in v_replace() local 105 quote = 0; in v_replace() 119 if (!quote) { in v_replace() 121 quote = 1; in v_replace() 165 if ((!quote && vip->rvalue == K_CR) || vip->rvalue == K_NL) { in v_replace()
|
| /netbsd-src/usr.bin/gencat/ |
| H A D | gencat.c | 344 getmsg(int fd, char *cptr, char quote) in getmsg() argument 352 if (quote && *cptr == quote) { in getmsg() 368 if (quote && *cptr == quote) { in getmsg() 434 if (quote && *cptr == quote) { in getmsg() 471 char quote = 0; in MCParse() local 490 quote = 0; in MCParse() 494 quote = 0; in MCParse() 496 quote = *cptr; in MCParse() 547 str = getmsg(fd, cptr, quote); in MCParse()
|