| /netbsd/src/external/bsd/kyua-cli/dist/utils/format/ |
| D | formatter.cpp | 66 const std::string& expansion, in find_next_placeholder() argument 69 begin = expansion.find('%', begin); in find_next_placeholder() 70 while (begin != std::string::npos && expansion[begin + 1] == '%') in find_next_placeholder() 71 begin = expansion.find('%', begin + 2); in find_next_placeholder() 73 return std::make_pair(expansion.length(), ""); in find_next_placeholder() 74 if (begin == expansion.length() - 1) in find_next_placeholder() 78 while (end < expansion.length() && expansion[end] != 's') in find_next_placeholder() 80 const std::string placeholder = expansion.substr(begin, end - begin + 1); in find_next_placeholder() 81 if (end == expansion.length() || in find_next_placeholder() 210 const std::string& expansion, in formatter() argument [all …]
|
| /netbsd/src/external/ibm-public/postfix/dist/src/global/ |
| D | maps.c | 182 const char *expansion; in maps_find() local 206 if ((expansion = dict_get(dict, name)) != 0) { in maps_find() 207 if (*expansion == 0) { in maps_find() 217 *map_name, name, expansion, in maps_find() 218 strlen(expansion) > 100 ? "..." : ""); in maps_find() 219 return (expansion); in maps_find() 238 const char *expansion; in maps_file_find() local 267 if ((expansion = dict_get(dict, name)) != 0) { in maps_file_find() 268 if (*expansion == 0) { in maps_file_find() 278 *map_name, name, expansion, in maps_file_find() [all …]
|
| D | dict_mongodb.c | 195 int *expansion, const char *key) in expand_value() argument 205 && ++(*expansion) > dict_mongodb->expansion_limit) { in expand_value() 229 int *expansion, in get_result_string() argument 251 resultString, expansion, key); in get_result_string() 257 resultString, expansion, key); in get_result_string() 278 lookup_name, expansion, key)) != 0) { in get_result_string() 342 int expansion = 0; in dict_mongodb_lookup() local 464 name, &expansion, name); in dict_mongodb_lookup()
|
| /netbsd/src/external/gpl3/binutils/dist/gas/ |
| D | input-scrub.c | 83 static enum expansion from_sb_expansion = expanding_none; 124 enum expansion from_sb_expansion; /* Should we do a conditional check? */ 269 input_scrub_include_sb (sb *from, char *position, enum expansion expansion) in input_scrub_include_sb() argument 278 if (expansion == expanding_macro) in input_scrub_include_sb() 291 from_sb_expansion = expansion; in input_scrub_include_sb() 512 enum expansion expansion = from_sb_expansion; in as_report_context() local 520 if (expansion != expanding_macro) in as_report_context() 530 expansion = saved->from_sb_expansion; in as_report_context() 564 enum expansion expansion = from_sb_expansion; in as_where() local 568 if (expansion != expanding_macro) in as_where() [all …]
|
| D | sb.h | 68 enum expansion { enum 73 extern void input_scrub_include_sb (sb *, char *, enum expansion);
|
| /netbsd/src/usr.sbin/tcpdchk/ |
| D | percent_x.c | 39 char *expansion; local 56 expansion = 69 for (cp = expansion; *(cp += strspn(cp, ok_chars)); /* */ ) 71 expansion_len = cp - expansion; 73 expansion = str++; 81 memcpy(bp, expansion, expansion_len);
|
| /netbsd/src/lib/libwrap/ |
| D | percent_x.c | 44 char *expansion; in percent_x() local 61 expansion = in percent_x() 75 for (cp = expansion; *(cp += strspn(cp, ok_chars)); /* */ ) in percent_x() 77 expansion_len = cp - expansion; in percent_x() 79 expansion = str++; in percent_x() 87 memcpy(bp, expansion, expansion_len); in percent_x()
|
| /netbsd/src/lib/libedit/TEST/ |
| D | fuzz1.c | 39 char *expansion; in LLVMFuzzerTestOneInput() local 45 result = history_expand(s, &expansion); in LLVMFuzzerTestOneInput() 50 add_history(expansion); in LLVMFuzzerTestOneInput() 52 free(expansion); in LLVMFuzzerTestOneInput()
|
| /netbsd/src/sys/arch/evbarm/gumstix/ |
| D | gxio.c | 334 gxio_config_expansion(const char *expansion) in gxio_config_expansion() argument 347 if (expansion == NULL) { in gxio_config_expansion() 352 if (strncasecmp(gxioconflist[i].name, expansion, in gxio_config_expansion() 356 printf("unknown expansion specified: %s\n", expansion); in gxio_config_expansion() 373 expansion = GXIO_DEFAULT_EXPANSION; in gxio_config_expansion() 382 printf("configure %s expansion (%s)\n", toconfigure, expansion); in gxio_config_expansion()
|
| D | gumstix_machdep.c | 590 char expansion[256], c; in process_kernel_args_liner() local 597 expansion[i++] = c; in process_kernel_args_liner() 598 } while (c != '\0' && i < sizeof(expansion)); in process_kernel_args_liner() 599 gxio_config_expansion(expansion); in process_kernel_args_liner()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/doc/ |
| D | cppinternals.texi | 96 * Macro Expansion:: Macro expansion algorithm. 189 token might be a macro, and the tokens of a macro expansion do not have 190 the @code{BOL} flag set. The macro expansion may even be empty, and the 196 in the middle of a macro expansion. Therefore, if the state variable 288 macro expansion we don't want to complain with each use of the macro. 293 using @code{__VA_ARGS__} in the expansion of a variable-argument macro. 373 the pointers to the tokens of its expansion that are returned will always 433 and its expansion. Built-in macros are flagged as special, and instead 464 each identifier in the macro's expansion, lookup to see if it is an 471 @cindex macro expansion [all …]
|
| D | cppinternals.info | 71 * Macro Expansion:: Macro expansion algorithm. 165 macro, and the tokens of a macro expansion do not have the 'BOL' flag 166 set. The macro expansion may even be empty, and the next token on the 172 in the middle of a macro expansion. Therefore, if the state variable 258 expansion we don't want to complain with each use of the macro. It is 263 '__VA_ARGS__' in the expansion of a variable-argument macro. Therefore 341 pointers to the tokens of its expansion that are returned will always 398 takes, and its expansion. Built-in macros are flagged as special, 430 identifier in the macro's expansion, lookup to see if it is an argument, 441 Macro expansion is a tricky operation, fraught with nasty corner cases [all …]
|
| /netbsd/src/usr.bin/make/unit-tests/ |
| D | posix-varassign.mk | 25 VAR::= posix-immediate-expansion 35 VAR:::= posix-delayed-expansion
|
| /netbsd/src/external/ibm-public/postfix/dist/src/local/ |
| D | Musings | 13 messages into the mail system. Since recipient expansion uses a 20 expansion, but only one initial recipient at a time. It delivers 23 recipient. Because alias expansion does not look in .forward files,
|
| /netbsd/src/external/gpl3/gdb/dist/libiberty/ |
| D | cp-demangle.c | 319 int expansion; member 1509 di->expansion += 3; in d_name() 1571 di->expansion += sizeof "this"; in d_nested_name() 1758 di->expansion += sizeof "operator" + ret->u.s_operator.op->len - 2; in d_unqualified_name() 1926 di->expansion -= len - sizeof "(anonymous namespace)"; in d_identifier() 2196 di->expansion += 20; in d_special_name() 2202 di->expansion -= 5; in d_special_name() 2206 di->expansion -= 10; in d_special_name() 2251 di->expansion += 5; in d_special_name() 2385 di->expansion += di->last_name->u.s_name.len; in d_ctor_dtor_name() [all …]
|
| /netbsd/src/external/gpl3/binutils/dist/libiberty/ |
| D | cp-demangle.c | 319 int expansion; member 1509 di->expansion += 3; in d_name() 1571 di->expansion += sizeof "this"; in d_nested_name() 1758 di->expansion += sizeof "operator" + ret->u.s_operator.op->len - 2; in d_unqualified_name() 1926 di->expansion -= len - sizeof "(anonymous namespace)"; in d_identifier() 2196 di->expansion += 20; in d_special_name() 2202 di->expansion -= 5; in d_special_name() 2206 di->expansion -= 10; in d_special_name() 2251 di->expansion += 5; in d_special_name() 2385 di->expansion += di->last_name->u.s_name.len; in d_ctor_dtor_name() [all …]
|
| /netbsd/src/crypto/dist/ipsec-tools/misc/ |
| D | cvs2cl.pl | 2125 my $expansion = ''; 2126 ($expansion) = split (',', $gecos) 2130 $expansions{$username} = "$expansion <$mailname>"; 2158 my ($username, $expansion) = split ':'; 2159 chomp $expansion; 2160 $expansion =~ s/^'(.*)'$/$1/; 2161 $expansion =~ s/^"(.*)"$/$1/; 2167 if ($expansion =~ /^\s*<{0,1}\S+@.*/) { 2169 if (! ($expansion =~ /<\S+@\S+>/)) { 2170 $expansions{$username} = "$username <$expansion>"; [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libiberty/ |
| D | cp-demangle.c | 319 int expansion; member 1450 di->expansion += 3; in d_name() 1652 di->expansion += sizeof "operator" + ret->u.s_operator.op->len - 2; in d_unqualified_name() 1791 di->expansion -= len - sizeof "(anonymous namespace)"; in d_identifier() 2060 di->expansion += 20; in d_special_name() 2066 di->expansion -= 5; in d_special_name() 2070 di->expansion -= 10; in d_special_name() 2115 di->expansion += 5; in d_special_name() 2241 di->expansion += di->last_name->u.s_name.len; in d_ctor_dtor_name() 2243 di->expansion += di->last_name->u.s_string.len; in d_ctor_dtor_name() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libcpp/ |
| D | location-example.txt | 191 test.c:7:11: note: expansion point is location 287555 222 test.c:6:11: note: expansion point is location 283459 254 /usr/include/stdc-predef.h:45:6: note: expansion point is location 180564 264 /usr/include/stdc-predef.h:37:6: note: expansion point is location 147788
|
| /netbsd/src/usr.sbin/rpc.pcnfsd/ |
| D | pcnfsd_print.c | 1290 static char expansion[512]; in expand_alias() local 1294 strlcpy(expansion, alias[i].a_command, in expand_alias() 1295 sizeof(expansion)); in expand_alias() 1296 substitute(expansion, "$FILE", file); in expand_alias() 1297 substitute(expansion, "$USER", user); in expand_alias() 1298 substitute(expansion, "$HOST", host); in expand_alias() 1299 return (expansion); in expand_alias()
|
| /netbsd/src/external/gpl3/binutils/dist/opcodes/ |
| D | mep-asm.c | 576 char *expansion; member 634 char *e = mac->expansion; in expand_macro() 682 char *expansion = 0; in expand_string() local 731 expansion = 0; in expand_string() 732 expansion = expand_macro (args, narg, pmacro); in expand_string() 734 if (expansion) in expand_string() 736 result = str_append (result, expansion, strlen (expansion)); in expand_string() 737 free (expansion); in expand_string()
|
| /netbsd/src/external/gpl3/gdb/dist/opcodes/ |
| D | mep-asm.c | 578 char *expansion; member 636 char *e = mac->expansion; in expand_macro() 684 char *expansion = 0; in expand_string() local 733 expansion = 0; in expand_string() 734 expansion = expand_macro (args, narg, pmacro); in expand_string() 736 if (expansion) in expand_string() 738 result = str_append (result, expansion, strlen (expansion)); in expand_string() 739 free (expansion); in expand_string()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/cp/ |
| D | cp-tree.def | 318 /* Represents an 'offsetof' expression during template expansion. */ 322 expansion. This is similar to ADDR_EXPR, but it doesn't invoke 326 /* Represents the -> operator during template expansion. */ 330 expansion. */ 334 expansion. */ 338 expansion. This is the GCC extension { ( ... ) }. The 385 PACK_EXPANSION_PATTERN retrieves the expansion pattern. This is 389 SET_PACK_EXPANSION_PATTERN sets the expansion pattern. 392 packs that are used in this pack expansion. 424 /* Fold expressions allow the expansion of a template argument pack [all …]
|
| /netbsd/src/external/gpl3/gdb/dist/include/ |
| D | hp-symtab.h | 398 unsigned int expansion: 1; member 1045 unsigned int expansion: 1; /* 1=template expansion. */ member 1290 unsigned int expansion: 1; /* 1 = function expansion */ member 1839 unsigned int expansion : 1;/* template expansion */ member
|
| /netbsd/src/external/gpl3/binutils/dist/include/ |
| D | hp-symtab.h | 398 unsigned int expansion: 1; member 1045 unsigned int expansion: 1; /* 1=template expansion. */ member 1290 unsigned int expansion: 1; /* 1 = function expansion */ member 1839 unsigned int expansion : 1;/* template expansion */ member
|