Home
last modified time | relevance | path

Searched refs:quoted (Results 1 – 25 of 159) sorted by relevance

1234567

/freebsd-14-stable/contrib/diff/lib/
HDquotesys.c33 quote_system_arg (quoted, arg) in quote_system_arg() argument
34 char *quoted; in quote_system_arg()
74 if (quoted)
76 quoted[len] = '-';
77 quoted[len + 1] = c;
85 if (quoted)
86 quoted[len] = c;
94 if (quoted)
95 quoted[len] = '\'';
102 if (quoted)
[all …]
/freebsd-14-stable/usr.bin/m4/tests/
HDregress.quotes.out4 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 …]
HDquotes.m45 `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-14-stable/contrib/dialog/
HDdialog.pl62 sub quoted($) { subroutine
90 . &quoted($message)
107 . &quoted($title)
123 . &quoted($title)
125 . &quoted($message)
145 . &quoted($title)
147 . &quoted($message)
161 . &quoted($title)
163 . &quoted($message)
187 . &quoted($title)
[all …]
HDargv.c62 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()
HDversion.c25 #define quoted(a) #a macro
26 #define concat(a,b) a "-" quoted(b)
/freebsd-14-stable/contrib/kyua/utils/text/
HDoperations.cpp50 std::ostringstream quoted; in escape_xml() local
56 quoted << "&quot;"; in escape_xml()
58 quoted << "&amp;"; in escape_xml()
60 quoted << "&lt;"; in escape_xml()
62 quoted << "&gt;"; in escape_xml()
64 quoted << "&apos;"; in escape_xml()
74 quoted << "&amp;#" << static_cast< std::string::size_type >(*it) in escape_xml()
77 quoted << *it; in escape_xml()
80 return quoted.str(); in escape_xml()
93 std::ostringstream quoted; in quote() local
[all …]
/freebsd-14-stable/contrib/unbound/sldns/
HDparse.c37 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 …]
HDstr2wire.c549 int* quoted, int* parens, size_t* pre_data_pos, in sldns_parse_rdf_token() argument
555 while(sldns_buffer_remaining(strbuf) > 0 && !*quoted && in sldns_parse_rdf_token()
562 if(sldns_bget_token_par(strbuf, token, (*quoted)?"\"":delimiters, in sldns_parse_rdf_token()
563 token_len, parens, (*quoted)?NULL:" \t") == -1) { in sldns_parse_rdf_token()
568 if(!*quoted && sldns_rdf_type_maybe_quoted(rdftype) && in sldns_parse_rdf_token()
576 *quoted = 1; in sldns_parse_rdf_token()
577 } else if(!*quoted && sldns_rdf_type_maybe_quoted(rdftype) && in sldns_parse_rdf_token()
585 *quoted = 1; in sldns_parse_rdf_token()
606 int* quoted, int* parens, size_t* pre_data_pos, in sldns_affix_token() argument
622 if(!sldns_parse_rdf_token(strbuf, token+*token_strlen, addlen, quoted, in sldns_affix_token()
[all …]
/freebsd-14-stable/contrib/ldns/
HDparse.c41 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-14-stable/contrib/llvm-project/lldb/source/Utility/
HDArgs.cpp23 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.empty()) { in ParseDoubleQuotes()
48 if (strchr(k_escapable_characters, quoted.front()) == nullptr) in ParseDoubleQuotes()
51 result += quoted.front(); in ParseDoubleQuotes()
52 quoted = quoted.drop_front(); in ParseDoubleQuotes()
[all …]
/freebsd-14-stable/contrib/sendmail/libsm/
HDutil.c266 bool quoted; local
268 quoted = false;
272 if ((*ip & 0377) == METAQUOTE && !quoted)
274 quoted = true;
282 quoted = false;
HDuxtext_unquote.c96 uxtext_unquote(quoted, unquoted, olen) in uxtext_unquote() argument
97 const char *quoted; in uxtext_unquote()
114 SM_REQUIRE(NULL != quoted);
116 for (cp = (const unsigned char *) quoted; (ch = *cp) != 0; cp++)
/freebsd-14-stable/contrib/bmake/
HDcond.c399 bool doEval, bool quoted, in CondParser_StringExpr() argument
406 emode = doEval && quoted ? VARE_WANTRES in CondParser_StringExpr()
449 bool quoted; in CondParser_Leaf() local
454 *out_quoted = quoted = par->p[0] == '"'; in CondParser_Leaf()
456 if (quoted) in CondParser_Leaf()
470 if (quoted) in CondParser_Leaf()
481 if (!quoted) in CondParser_Leaf()
488 start, doEval, quoted, &buf, &str)) in CondParser_Leaf()
492 if (!unquotedOK && !quoted && *start != '$' && in CondParser_Leaf()
519 EvalTruthy(CondParser *par, const char *value, bool quoted) in EvalTruthy() argument
[all …]
/freebsd-14-stable/contrib/one-true-awk/testdir/
HDt.null09 $1 == "0" {print "$1 = quoted 0"}
12 $5 == "0" {print "$5 = quoted 0"}
/freebsd-14-stable/crypto/openssh/
HDauthfile.c480 int quoted = 0; in sshkey_advance_past_options() local
482 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) { in sshkey_advance_past_options()
486 quoted = !quoted; in sshkey_advance_past_options()
490 return (*cp == '\0' && quoted) ? -1 : 0; in sshkey_advance_past_options()
/freebsd-14-stable/contrib/sendmail/src/
HDutil.c166 bool quoted = false; local
183 quoted = !quoted;
184 else if (!quoted)
204 return !quoted && commentlev == 0;
232 bool quoted = false; local
258 if (!quoted)
269 quoted = !quoted;
275 (quoted ? 1 : 0)))
280 else if (*ptr == '(' && !quoted)
283 quoted = false;
[all …]
/freebsd-14-stable/contrib/sendmail/praliases/
HDpraliases.c183 bool quoted = false; local
193 quoted = !quoted;
194 else if (*p == ',' && !quoted)
/freebsd-14-stable/tools/tools/notescheck/
HDnotescheck.py232 quoted = False
235 if quoted:
237 quoted = False
241 quoted = True
/freebsd-14-stable/usr.bin/rpcgen/
HDrpc_main.c272 int idx = 0, quoted; in prepend_cpp() local
286 quoted = 0; in prepend_cpp()
289 switch (quoted) { in prepend_cpp()
305 quoted = 1; in prepend_cpp()
310 quoted = 2; in prepend_cpp()
336 quoted = 0; in prepend_cpp()
348 quoted = 0; in prepend_cpp()
374 if (quoted) in prepend_cpp()
376 quoted == 1 ? '\'' : '"'); in prepend_cpp()
/freebsd-14-stable/contrib/mandoc/
HDeqn.c382 int diff, i, quoted; in eqn_next() local
393 quoted = mode == MODE_QUOTED; in eqn_next()
400 quoted = 1; in eqn_next()
406 if (quoted) in eqn_next()
413 if (quoted) { in eqn_next()
427 if (quoted && *ep->end != '\0') in eqn_next()
431 if (quoted) /* Cannot return, may have to strndup. */ in eqn_next()
457 return quoted ? EQN_TOK_QUOTED : EQN_TOK__MAX; in eqn_next()
458 if (quoted) { in eqn_next()
/freebsd-14-stable/contrib/dma/
HDTODO1 - unquote/handle quoted local recipients
/freebsd-14-stable/contrib/llvm-project/libcxx/include/
HDiomanip31 T11 quoted(const charT* s, charT delim=charT('"'), charT escape=charT('\\')); // C++14
34 T12 quoted(const basic_string<charT, traits, Allocator>& s,
38 T13 quoted(basic_string<charT, traits, Allocator>& s,
511 _LIBCPP_HIDE_FROM_ABI auto quoted(const _CharT* __s, _CharT __delim = _CharT('"'), _CharT __escape …
520 quoted(const basic_string<_CharT, _Traits, _Allocator>& __s,
528 quoted(basic_string<_CharT, _Traits, _Allocator>& __s, _CharT __delim = _CharT('"'), _CharT __escap…
534 quoted(basic_string_view<_CharT, _Traits> __sv, _CharT __delim = _CharT('"'), _CharT __escape = _Ch…
/freebsd-14-stable/contrib/libucl/tests/basic/
HDcomments.in19 key = quotes # quoted
/freebsd-14-stable/contrib/bmake/unit-tests/
HDdeptgt-makeflags.exp9 make: Unterminated quoted string [make VAR=initial UNBALANCED=']

1234567