| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gcc/ |
| attributes.d | 28 A arguments; 57 * any arguments separated by commas enclosed in parentheses. 67 auto attribute(A...)(A arguments) 70 return Attribute!A(arguments); 84 * by the function argument at `sizeArgIdx`, or by the product of the arguments 121 auto alloc_size(A...)(A arguments) 239 * line. Valid `arguments` are constant non-negative integers and strings. 240 * Multiple arguments can be provided, separated by commas to specify multiple 265 auto optimize(A...)(A arguments) 266 if (allSatisfy!(isStringOrIntValue, arguments)) [all...] |
| /src/usr.bin/make/unit-tests/ |
| directive-endif.exp | 1 make: directive-endif.mk:16: The .endif directive does not take arguments 2 make: directive-endif.mk:21: The .endif directive does not take arguments 3 make: directive-endif.mk:32: The .endif directive does not take arguments 4 make: directive-endif.mk:39: The .endif directive does not take arguments
|
| directive-else.exp | 1 make: directive-else.mk:14: The .else directive does not take arguments 4 make: directive-else.mk:23: The .else directive does not take arguments 8 make: directive-else.mk:51: The .else directive does not take arguments
|
| directive-for-break.exp | 2 make: directive-for-break.mk:65: The .break directive does not take arguments
|
| directive-unexport-env.mk | 5 # Before 2020-12-13, the directive unexport-env wrongly accepted arguments 23 # expect+1: The directive .unexport-env does not take arguments
|
| /src/lib/libc/arch/vax/sys/ |
| __syscall.S | 45 subl3 $2,-8(%ap),(%ap) # two fewer arguments
|
| syscall.S | 44 subl3 $1,(%ap)+,(%ap) # one fewer arguments
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| builtin.d | 31 public extern (C++) Expression eval_builtin(const ref Loc loc, FuncDeclaration fd, Expressions* arguments);
|
| /src/external/gpl2/gettext/dist/gettext-runtime/intl/ |
| printf-parse.h | 67 arguments and the needed count of arguments. */ 73 int printf_parse (const char *format, char_directives *d, arguments *a);
|
| wprintf-parse.h | 67 arguments and the needed count of arguments. */ 73 int wprintf_parse (const wchar_t *format, wchar_t_directives *d, arguments *a);
|
| printf-args.h | 126 arguments; typedef in typeref:struct:__anon9166 129 /* Fetch the arguments, putting them into a. */ 135 int printf_fetchargs (va_list args, arguments *a);
|
| /src/external/gpl2/gettext/dist/gettext-runtime/libasprintf/ |
| printf-parse.h | 67 arguments and the needed count of arguments. */ 73 int printf_parse (const char *format, char_directives *d, arguments *a);
|
| printf-args.h | 126 arguments; typedef in typeref:struct:__anon9174 129 /* Fetch the arguments, putting them into a. */ 135 int printf_fetchargs (va_list args, arguments *a);
|
| /src/external/gpl2/texinfo/dist/intl/ |
| printf-parse.h | 69 arguments and the needed count of arguments. */ 75 int printf_parse (const char *format, char_directives *d, arguments *a);
|
| wprintf-parse.h | 69 arguments and the needed count of arguments. */ 75 int wprintf_parse (const wchar_t *format, wchar_t_directives *d, arguments *a);
|
| printf-args.h | 128 arguments; typedef in typeref:struct:__anon9549 131 /* Fetch the arguments, putting them into a. */ 137 int printf_fetchargs (va_list args, arguments *a);
|
| /src/external/gpl2/xcvs/dist/lib/ |
| printf-parse.h | 66 arguments and the needed count of arguments. */ 72 int printf_parse (const char *format, char_directives *d, arguments *a);
|
| printf-args.h | 125 arguments; typedef in typeref:struct:__anon9594 128 /* Fetch the arguments, putting them into a. */ 134 int printf_fetchargs (va_list args, arguments *a);
|
| /src/external/bsd/kyua-cli/dist/utils/cmdline/ |
| parser_test.cpp | 243 ATF_REQUIRE(cmdline.arguments().empty()); 265 ATF_REQUIRE(cmdline.arguments().empty()); 279 ATF_REQUIRE_EQ(4, cmdline.arguments().size()); 280 ATF_REQUIRE_EQ("foo", cmdline.arguments()[0]); 281 ATF_REQUIRE_EQ("-c", cmdline.arguments()[1]); 282 ATF_REQUIRE_EQ("--opt", cmdline.arguments()[2]); 283 ATF_REQUIRE_EQ("bar", cmdline.arguments()[3]); 299 ATF_REQUIRE_EQ(4, cmdline.arguments().size()); 300 ATF_REQUIRE_EQ("foo", cmdline.arguments()[0]); 301 ATF_REQUIRE_EQ("-c", cmdline.arguments()[1]) [all...] |
| parser.hpp | 30 /// Routines and data types to parse command line options and arguments. 63 /// methods to query the values of the options and the value of the arguments. 65 /// arguments to the options and the arguments to the command are valid), as all 71 /// Collection of arguments with all options removed. 89 const args_vector& arguments(void) const;
|
| /src/libexec/ld.elf_so/arch/m68k/ |
| rtld_start.S | 50 addql #8,%sp | pop arguments 55 addql #8,%sp | pop arguments
|
| /src/external/bsd/atf/dist/atf-sh/ |
| integration_test.sh | 55 atf_test_case arguments 88 atf_add_test_case arguments
|
| /src/external/bsd/kyua-cli/dist/cli/ |
| cmd_config.cpp | 116 if (cmdline.arguments().empty()) 119 return print_some(ui, properties, cmdline.arguments());
|
| /src/external/gpl3/gcc.old/dist/gcc/d/ |
| d-frontend.cc | 51 /* Evaluate builtin D function FD whose argument list is ARGUMENTS. 55 eval_builtin (const Loc &loc, FuncDeclaration *fd, Expressions *arguments) 68 tree result = d_build_call (tf, decl, NULL, arguments);
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/container/ |
| util.d | 28 T make(Args...)(Args arguments) 29 if (is(T == struct) && __traits(compiles, T(arguments))) 31 // constructing an std.container.Array without arguments, 36 static if (arguments.length == 0) 43 return T(arguments); 46 T make(Args...)(Args arguments) 47 if (is(T == class) && __traits(compiles, new T(arguments))) 49 return new T(arguments);
|