/freebsd/usr.bin/m4/tests/ |
H A D | regress.quotes.out | 4 quoted string 5 [quoted STRING] 7 half quoted string 11 `quoted STRING' 12 [quoted STRING] 14 `half quoted STRING 18 `quoted STRING' 19 quoted string 21 `half quoted STRING 25 `quoted STRING' [all …]
|
H A D | quotes.m4 | 5 `quoted string' 6 [quoted string] 8 `half quoted string 13 `quoted string' 14 [quoted string] 16 `half quoted string 21 `quoted string' 22 [quoted string] 24 `half quoted string 29 `quoted string' [all …]
|
/freebsd/contrib/diff/lib/ |
H A D | quotesys.c | 28 /* Place into QUOTED a quoted version of ARG suitable for `system'. 30 If QUOTED is null, return the length without any side effects. */ 33 quote_system_arg (quoted, arg) in quote_system_arg() argument 34 char *quoted; in quote_system_arg() 40 /* Scan ARG, copying it to QUOTED if QUOTED is not null, 74 if (quoted) 76 quoted[len] = '-'; 77 quoted[len + 1] = c; 85 if (quoted) 86 quoted[len] = c; [all …]
|
/freebsd/contrib/dialog/ |
H A D | dialog.pl | 62 sub quoted($) { subroutine 90 . "ed($message) 107 . "ed($title) 123 . "ed($title) 125 . "ed($message) 145 . "ed($title) 147 . "ed($message) 161 . "ed($title) 163 . "ed($message) 187 . "ed($title) [all …]
|
H A D | argv.c | 62 bool quoted = FALSE; in dlg_string_to_argv() local 67 if (quoted && blob[n] == '"') { in dlg_string_to_argv() 68 quoted = FALSE; in dlg_string_to_argv() 70 quoted = TRUE; in dlg_string_to_argv() 78 } else if (!quoted && isspace(UCH(blob[n]))) { in dlg_string_to_argv()
|
/freebsd/contrib/kyua/utils/text/ |
H A D | operations.cpp | 46 /// \return A quoted string without any XML special characters. 50 std::ostringstream quoted; in escape_xml() local 56 quoted << """; in escape_xml() 58 quoted << "&"; in escape_xml() 60 quoted << "<"; in escape_xml() 62 quoted << ">"; in escape_xml() 64 quoted << "'"; in escape_xml() 74 quoted << "&#" << static_cast< std::string::size_type >(*it) in escape_xml() 77 quoted << *it; in escape_xml() 80 return quoted.str(); in escape_xml() [all …]
|
/freebsd/contrib/openpam/doc/man/ |
H A D | openpam_readword.3 | 23 However, whitespace characters can be included in a word if quoted or 27 An unescaped single or double quote introduces a quoted string, 32 Within a single- or double-quoted string, all whitespace characters, 35 Outside a quoted string, a backslash escapes the next character, 41 Within a single-quoted string, double quotes and backslashes are 44 Within a double-quoted string, a single quote is preserved as-is, 60 incremented every time a quoted or escaped newline character is read.
|
/freebsd/contrib/unbound/sldns/ |
H A D | parse.c | 37 int com, quoted, only_blank; in sldns_fget_token_l() local 54 quoted = 0; in sldns_fget_token_l() 59 quoted = 1; in sldns_fget_token_l() 64 if (c == '(' && prev_c != '\\' && !quoted) { in sldns_fget_token_l() 73 if (c == ')' && prev_c != '\\' && !quoted) { in sldns_fget_token_l() 89 if (c == ';' && quoted == 0) { in sldns_fget_token_l() 95 quoted = 1 - quoted; in sldns_fget_token_l() 291 int com, quoted; in sldns_bget_token_par() local 308 quoted = 0; in sldns_bget_token_par() 312 quoted = 1; in sldns_bget_token_par() [all …]
|
/freebsd/share/doc/usd/13.viref/ |
H A D | ref.so | 67 .\" paren quoted (typewriter font) 71 .\" quoted bold 75 .\" quoted command 79 .\" quoted option 83 .\" quoted (no font change) 87 .\" quoted (typewriter font)
|
/freebsd/contrib/ldns/ |
H A D | parse.c | 41 int com, quoted; in ldns_fget_token_l_st_file_type() local 71 quoted = 0; in ldns_fget_token_l_st_file_type() 75 quoted = 1; in ldns_fget_token_l_st_file_type() 80 if (c == '(' && prev_c != '\\' && !quoted) { in ldns_fget_token_l_st_file_type() 89 if (c == ')' && prev_c != '\\' && !quoted) { in ldns_fget_token_l_st_file_type() 108 && quoted == 0) { in ldns_fget_token_l_st_file_type() 114 quoted = 1 - quoted; in ldns_fget_token_l_st_file_type() 305 int com, quoted; in ldns_bget_token() local 322 quoted = 0; in ldns_bget_token() 326 quoted = 1; in ldns_bget_token() [all …]
|
/freebsd/crypto/openssh/regress/ |
H A D | sftp-glob.sh | 60 sftp_ls "${DIR}/g-wild\"*\"" "quoted glob" "g-wild*" "g-wildx" 63 sftp_ls "\"${DIR}/g-quote\\\"\"" "quoted quote" "g-quote\"" "" 64 sftp_ls "'${DIR}/g-quote\"'" "single-quoted quote" "g-quote\"" "" 66 sftp_ls "'${DIR}/g-q space'" "quoted space" "g-q space" "" 68 sftp_ls "'${DIR}/g-sl\\\\ash'" "quoted slash" "g-sl\\ash" "" "$nobs" 70 sftp_ls "'${DIR}/g-slash\\\\'" "quoted slash at EOL" "g-slash\\" "" "$nobs" 72 sftp_ls "'${DIR}/g-qs\\\\\"'" "quoted slash+quote" "g-qs\\\"" "" "$nobs"
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | Args.cpp | 23 static llvm::StringRef ParseDoubleQuotes(llvm::StringRef quoted, in ParseDoubleQuotes() argument 29 size_t regular = quoted.find_first_of(k_escapable_characters); in ParseDoubleQuotes() 30 result += quoted.substr(0, regular); in ParseDoubleQuotes() 31 quoted = quoted.substr(regular); in ParseDoubleQuotes() 34 if (quoted.empty() || quoted.front() == '"') in ParseDoubleQuotes() 38 quoted = quoted.drop_front(); in ParseDoubleQuotes() 40 if (quoted in ParseDoubleQuotes() 143 size_t quoted = command.find(special); ParseSingleArgument() local [all...] |
/freebsd/contrib/openpam/lib/libpam/ |
H A D | openpam_readword.c | 101 /* edge case: empty quoted string */ in openpam_readword() 150 * However, whitespace characters can be included in a word if quoted or 153 * - An unescaped single or double quote introduces a quoted string, 158 * - Within a single- or double-quoted string, all whitespace characters, 161 * - Outside a quoted string, a backslash escapes the next character, 167 * - Within a single-quoted string, double quotes and backslashes are 170 * - Within a double-quoted string, a single quote is preserved as-is, 181 * incremented every time a quoted or escaped newline character is read.
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | cond-token-string.exp | 17 CondParser_Eval: "quoted" == quoted 18 Comparing "quoted" == "quoted"
|
H A D | cond-token-string.mk | 3 # Tests for quoted string literals in .if conditions. 29 # quoted string literal or a number that starts with a digit. 38 # double-quoted string literals. See CondParser_String. 101 .if "quoted" == quoted
|
H A D | varmod-order-string.mk | 15 QUOTED_WORDS= none "double quoted" 'single quoted' `in backticks` 16 .if ${QUOTED_WORDS:O} != "\"double quoted\" 'single quoted' `in backticks` none"
|
H A D | opt-debug-file.exp | 6 make: Unterminated quoted string [make 'This goes to stdout only, once.] 7 make: Unterminated quoted string [make 'This goes to stderr only, once.] 8 make: Unterminated quoted string [make 'This goes to stderr, and in addition to the debug log.]
|
H A D | cond-token-plain.exp | 49 CondParser_Eval: "unquoted\"quoted" != unquoted"quoted 50 Comparing "unquoted"quoted" != "unquoted"quoted"
|
/freebsd/usr.bin/env/ |
H A D | envopts.c | 135 * few special characters. It recognizes both single and double-quoted 143 * Within a single-quoted string, the two characters "\'" are treated as 148 * Within a double-quoted string, many more "\"-style escape sequences 155 * Within a double-quoted string "\_" is turned into a literal blank. 156 * (Inside of a single-quoted string, the two characters are just copied) 157 * Outside of a quoted string, "\_" is treated as both a blank, and the 173 * original, due to quoted strings and '\'-processing. in split_spaces() 212 * argument is created, even if this quoted in split_spaces() 237 * argument is created, even if this quoted in split_spaces() 249 * Inside single-quoted strings, only the in split_spaces() [all …]
|
/freebsd/contrib/ntp/sntp/libopts/ |
H A D | tokenize.c | 3 * Tokenize a string, accommodating quoted strings. 123 * Take an approximate count of tokens. If no quoted strings are used, in alloc_token_list() 124 * it will be accurate. If quoted strings are used, it will be a little in alloc_token_list() 182 * There are two types of quoted strings: single quoted (@code{'}) and 183 * double quoted (@code{"}). Singly quoted strings are fairly raw in that 210 * @code{EINVAL} - There was an unterminated quoted string.
|
H A D | cook.c | 4 * This file contains the routines that deal with processing quoted strings 127 default: /* quoted character is result character */; in ao_string_cook_escape_char() 148 * A quoted string has been found. 200 * The series of quoted strings has come to an end. in contiguous_quote() 225 * A series of one or more quoted strings are concatenated together. 226 * If they are quoted with double quotes (@code{"}), then backslash 240 * It is a quoted string. Process the escape sequence characters in ao_string_cook() 264 * We are inside a quoted string. Copy text. in ao_string_cook()
|
/freebsd/bin/sh/ |
H A D | expand.c | 368 case CTLESC: /* This means CTL* are always considered quoted. */ in exptilde() 414 int quoted; in expari() local 417 quoted = *p++ == '"'; in expari() 436 * If this is quoted, a '-' must not indicate a range in [...]. in expari() 437 * If this is not quoted, splitting may occur. in expari() 439 if (quoted ? in expari() 442 reprocess(expdest - adj - stackblock(), flag, VSNORMAL, quoted, in expari() 452 expbackq(union node *cmd, int quoted, int flag, struct worddest *dst) in expbackq() argument 460 char const *syntax = quoted? DQSYNTAX : BASESYNTAX; in expbackq() 474 if (!quoted && flag & EXP_SPLIT) in expbackq() [all …]
|
/freebsd/share/man/man9/ |
H A D | devctl_safe_quote_sb.9 | 29 .Nd Insert a string, properly quoted, into a sbuf 47 protocol requires quoted string to be quoted thus.
|
/freebsd/crypto/openssl/util/ |
H A D | lang-compress.pl | 134 " # Double quoted string start 136 " # Double quoted string end 142 ' # Single quoted string start 144 ' # Single quoted string end
|
/freebsd/contrib/netbsd-tests/bin/sh/ |
H A D | t_varquote.sh | 75 # weird, in the following there is not one quoted string being 76 # assigned to foo (with internally quoted sub-strings), rather 77 # it is a mixed quoted/unquoted string, with parts that are 78 # quoted, separated by 2 unquoted sections...
|