HomeSort by: relevance | last modified time | path
    Searched refs:quoted (Results 1 - 25 of 172) sorted by relevancy

1 2 3 4 5 6 7

  /src/external/gpl2/diffutils/dist/lib/
quotesys.c 30 /* Place into QUOTED a quoted version of ARG suitable for `system'.
32 If QUOTED is null, return the length without any side effects. */
35 quote_system_arg (quoted, arg)
36 char *quoted;
42 /* Scan ARG, copying it to QUOTED if QUOTED is not null,
76 if (quoted)
78 quoted[len] = '-';
79 quoted[len + 1] = c
    [all...]
  /src/usr.bin/make/unit-tests/
cond-token-string.exp 17 CondParser_Eval: "quoted" == quoted
18 Comparing "quoted" == "quoted"
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.]
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"
deptgt-makeflags.exp 9 make: Unterminated quoted string [make VAR=initial UNBALANCED=']
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
  /src/external/ibm-public/postfix/dist/src/global/
xtext.c 11 /* VSTRING *xtext_quote(quoted, unquoted, special)
12 /* VSTRING *quoted;
16 /* VSTRING *xtext_quote_append(unquoted, quoted, special)
18 /* const char *quoted;
21 /* VSTRING *xtext_unquote(unquoted, quoted)
23 /* const char *quoted;
25 /* VSTRING *xtext_unquote_append(unquoted, quoted)
27 /* const char *quoted;
78 /* xtext_quote_append - append unquoted data to quoted data */
80 VSTRING *xtext_quote_append(VSTRING *quoted, const char *unquoted
169 VSTRING *quoted = vstring_alloc(100); local
    [all...]
uxtext.c 11 /* VSTRING *uxtext_quote(quoted, unquoted, special)
12 /* VSTRING *quoted;
16 /* VSTRING *uxtext_quote_append(unquoted, quoted, special)
18 /* const char *quoted;
21 /* VSTRING *uxtext_unquote(unquoted, quoted)
23 /* const char *quoted;
25 /* VSTRING *uxtext_unquote_append(unquoted, quoted)
27 /* const char *quoted;
81 /* uxtext_quote_append - append unquoted data to quoted data */
83 VSTRING *uxtext_quote_append(VSTRING *quoted, const char *unquoted
248 VSTRING *quoted = vstring_alloc(100); local
    [all...]
  /src/external/gpl2/groff/dist/src/libs/libgroff/
quotearg.c 97 char *quoted, *p, *q; local
100 /* Need to create a quoted copy of `string';
105 if ((quoted = (char *)malloc(2 * strlen(string) + 3)) == NULL) {
106 /* Couldn't get a buffer for the quoted string,
119 *quoted = '"';
120 for (backslashes = 0, p = string, q = quoted; *p; p++) {
169 * add the closing quote, terminate the quoted string,
176 if ((string = (char *)realloc(quoted, strlen(quoted) + 1)) == NULL) {
185 * quoted and escaped, as required
    [all...]
  /src/external/bsd/pkg_install/dist/lib/
file.c 294 size_t remaining, quoted; local
311 quoted = shquote(name, bufp, remaining);
312 if (quoted >= remaining) {
316 bufp += quoted;
317 remaining -= quoted;
321 quoted = shquote(dir, bufp, remaining);
322 if (quoted >= remaining) {
326 bufp += quoted;
327 remaining -= quoted;
334 quoted = shquote(tmp, bufp, remaining)
    [all...]
  /src/external/bsd/unbound/dist/sldns/
parse.c 37 int com, quoted, only_blank; local
54 quoted = 0;
59 quoted = 1;
64 if (c == '(' && prev_c != '\\' && !quoted) {
73 if (c == ')' && prev_c != '\\' && !quoted) {
89 if (c == ';' && quoted == 0) {
95 quoted = 1 - quoted;
291 int com, quoted; local
308 quoted = 0
    [all...]
  /src/external/bsd/kyua-cli/dist/utils/text/
operations.cpp 44 /// \return The quoted string.
48 std::ostringstream quoted; local
49 quoted << quote;
54 quoted << text.substr(start_pos, last_pos - start_pos) << '\\';
58 quoted << text.substr(start_pos);
60 quoted << quote;
61 return quoted.str();
  /src/external/gpl2/lvm2/dist/include/
report.h 41 int quoted, int columns_as_rows);
  /src/external/gpl2/lvm2/dist/lib/report/
report.h 41 int quoted, int columns_as_rows);
  /src/external/gpl3/gcc.old/dist/gcc/c/
c-objc-common.cc 186 print_type (c_pretty_printer *cpp, tree t, bool *quoted)
227 if (*quoted)
233 if (*quoted)
236 if (*quoted)
240 *quoted = false;
260 bool *quoted, const char **)
301 print_type (cpp, t, quoted);
337 bool quoted = false; local
338 print_type (&cpp, m_labelled_type, &quoted);
  /src/external/bsd/dhcpcd/dist/src/
common.c 164 bool quoted; local
186 /* Strip embedded comments unless in a quoted string or escaped */
187 quoted = false;
194 quoted = !quoted;
195 else if (*c == '#' && !quoted) {
  /src/external/gpl3/gcc/dist/gcc/c/
c-objc-common.cc 223 print_type (c_pretty_printer *cpp, tree t, bool *quoted)
264 if (*quoted)
270 if (*quoted)
273 if (*quoted)
277 *quoted = false;
297 bool *quoted, const char **)
338 print_type (cpp, t, quoted);
374 bool quoted = false; local
375 print_type (&cpp, m_labelled_type, &quoted);
  /src/external/bsd/unbound/dist/util/
configlexer.lex 612 /* Quoted strings. Strip leading and ending quotes */
615 yyerror("EOF inside quoted string");
620 <quotedstring>{NEWLINE} { yyerror("newline inside quoted string, no end \"");
633 /* Single Quoted strings. Strip leading and ending quotes */
636 yyerror("EOF inside quoted string");
641 <singlequotedstr>{NEWLINE} { yyerror("newline inside quoted string, no end '");
670 yyerror("EOF inside quoted string");
713 yyerror("EOF inside quoted string");
  /src/sbin/cgdconfig/
cgdlex.l 64 BEGIN(quoted); \
88 %x quoted
113 \\\n /* ignore a quoted nl */
119 <quoted>[^\"]+ { QUOTEDADD(); }
120 <quoted>\" { RETQUOTED(STRINGLIT); }
  /src/external/apache2/llvm/dist/llvm/utils/lit/lit/
ShCommands.py 19 quoted = "'%s'" % arg
21 quoted = '"%s"' % arg
24 file.write(quoted)
28 dequoted = list(ShUtil.ShLexer(quoted).lex())
  /src/external/bsd/nsd/dist/simdzone/src/generic/
scanner.h 39 // can correctly identify quoted and comment regions where a quoted region
42 // directly following a non-escaped, non-quoted semicolon must be included
134 uint64_t quoted; member in struct:block
148 // special meaning in quoted
155 block->quoted = simd_find_8x64(&block->input, '"') & ~block->escaped;
163 block->quoted,
168 &block->quoted,
171 block->in_quoted ^= prefix_xor(block->quoted);
176 block->in_quoted ^= prefix_xor(block->quoted);
    [all...]
  /src/external/gpl2/groff/dist/src/preproc/eqn/
lex.cpp 752 int quoted = 0; local
761 lex_error("newline before end of quoted text");
765 if (!quoted)
768 quoted = 0;
772 quoted = quoted ? 0 : c == '\\';
788 int quoted = 0; local
791 quoted = 1;
797 if (!quoted && lookup_flag != 0 && c == '(') {
808 if (quoted) {
    [all...]
  /src/crypto/external/bsd/openssh/dist/
authfile.c 470 int quoted = 0; local
472 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
476 quoted = !quoted;
480 return (*cp == '\0' && quoted) ? -1 : 0;
  /src/external/gpl2/xcvs/dist/contrib/
rcs2log.sh 464 quoted = ""
475 quoted = quoted substr(rest, 1, p-1) "\\" substr(rest, p, 1)
479 printf "fullname[\"%s\"] = \"%s%s\"\n", $1, quoted, rest
  /src/external/bsd/am-utils/dist/fsinfo/
fsi_lex.l 123 static int quoted;
180 <F>\" { BEGIN Q; optr = ostr; quoted = 1; }
193 <Q>\" { BEGIN F; quoted = 0;

Completed in 33 milliseconds

1 2 3 4 5 6 7