Home
last modified time | relevance | path

Searched refs:has_arg (Results 1 – 25 of 3386) sorted by relevance

12345678910>>...136

/dports/devel/py-xdis/xdis-5.0.13/test_unit/
H A Dtest_dis34.py598 …, opcode=100, optype='const', inst_size=3, arg=1, argval=3, argrepr='3', has_arg=True, offset=0, s…
599 …, opcode=100, optype='const', inst_size=3, arg=2, argval=4, argrepr='4', has_arg=True, offset=3, s…
605 …URE', opcode=134, optype=None, inst_size=3, arg=2, argval=2, argrepr='', has_arg=True, offset=21, …
613 …', opcode=105, optype='vargs', inst_size=3, arg=0, argval=0, argrepr='', has_arg=True, offset=45, …
616 …, opcode=1, optype=None, inst_size=1, arg=None, argval=None, argrepr='', has_arg=False, offset=54,…
617 …opcode=124, optype='local', inst_size=3, arg=2, argval='f', argrepr='f', has_arg=True, offset=55, …
622 …, opcode=100, optype='const', inst_size=3, arg=1, argval=5, argrepr='5', has_arg=True, offset=0, s…
631 …URE', opcode=134, optype=None, inst_size=3, arg=2, argval=2, argrepr='', has_arg=True, offset=27, …
639 …, opcode=1, optype=None, inst_size=1, arg=None, argval=None, argrepr='', has_arg=False, offset=51,…
676 …opcode=124, optype='local', inst_size=3, arg=0, argval='i', argrepr='i', has_arg=True, offset=47, …
[all …]
/dports/databases/pgbackrest/pgbackrest-release-2.35/src/config/
H A Dparse.auto.c6626 .has_arg = required_argument,
6653 .has_arg = required_argument,
6680 .has_arg = required_argument,
6689 .has_arg = required_argument,
6701 .has_arg = required_argument,
6728 .has_arg = required_argument,
6755 .has_arg = required_argument,
6763 .has_arg = required_argument,
6790 .has_arg = required_argument,
6802 .has_arg = required_argument,
[all …]
/dports/textproc/groff/groff-1.22.4/contrib/glilypond/
H A Dargs.pl123 my $has_arg = FALSE;
215 $has_arg = $transopt;
272 $has_arg = $transopt;
296 if ( $has_arg ) {
298 $has_arg = EMPTYSTRING;
343 if ( $has_arg );
409 my $has_arg = FALSE;
416 if ( $has_arg ) {
419 $has_arg . "'." );
424 $has_arg = FALSE;
[all …]
/dports/java/java-getopt/java-getopt-1.0.14/gnu/getopt/
H A DLongOpt.java84 protected int has_arg; field in LongOpt
123 LongOpt(String name, int has_arg, in LongOpt() argument
127 if ((has_arg != NO_ARGUMENT) && (has_arg != REQUIRED_ARGUMENT) in LongOpt()
128 && (has_arg != OPTIONAL_ARGUMENT)) in LongOpt()
130 Object[] msgArgs = { new Integer(has_arg).toString() }; in LongOpt()
137 this.has_arg = has_arg; in LongOpt()
165 return(has_arg); in getHasArg()
/dports/x11/wofi/wofi-v1.2.4/src/
H A Dmain.c228 .has_arg = no_argument, in main()
234 .has_arg = no_argument, in main()
258 .has_arg = no_argument, in main()
300 .has_arg = no_argument, in main()
306 .has_arg = no_argument, in main()
312 .has_arg = no_argument, in main()
336 .has_arg = no_argument, in main()
342 .has_arg = no_argument, in main()
354 .has_arg = no_argument, in main()
360 .has_arg = no_argument, in main()
[all …]
/dports/devel/aws-c-common/aws-c-common-0.6.15/tests/
H A Dcommand_line_parser_test.c17 {.name = NULL, .has_arg = AWS_CLI_OPTIONS_NO_ARGUMENT, .flag = NULL, .val = 'a'}, in s_test_short_argument_parse_fn()
18 {.name = "beeee", .has_arg = AWS_CLI_OPTIONS_REQUIRED_ARGUMENT, .flag = NULL, .val = 'b'}, in s_test_short_argument_parse_fn()
19 {.name = NULL, .has_arg = AWS_CLI_OPTIONS_OPTIONAL_ARGUMENT, .flag = NULL, .val = 'c'}, in s_test_short_argument_parse_fn()
20 {.name = NULL, .has_arg = 0, .flag = NULL, .val = 0}, in s_test_short_argument_parse_fn()
56 {.name = "aaee", .has_arg = AWS_CLI_OPTIONS_NO_ARGUMENT, .flag = NULL, .val = 'a'}, in AWS_TEST_CASE()
57 {.name = "beeee", .has_arg = AWS_CLI_OPTIONS_REQUIRED_ARGUMENT, .flag = NULL, .val = 'b'}, in AWS_TEST_CASE()
59 {.name = NULL, .has_arg = 0, .flag = NULL, .val = 0}, in AWS_TEST_CASE()
96 {.name = "aaee", .has_arg = AWS_CLI_OPTIONS_NO_ARGUMENT, .flag = NULL, .val = 'a'}, in AWS_TEST_CASE()
99 {.name = NULL, .has_arg = 0, .flag = NULL, .val = 0}, in AWS_TEST_CASE()
132 {.name = "aaee", .has_arg = AWS_CLI_OPTIONS_NO_ARGUMENT, .flag = NULL, .val = 'a'}, in AWS_TEST_CASE()
[all …]
/dports/emulators/qemu42/qemu-4.2.1/roms/ipxe/src/core/
H A Dgetopt.c131 if ( ( longopt->has_arg != no_argument ) && ( ! argument ) ) in match_long_option()
135 if ( ( longopt->has_arg == required_argument ) && ( ! argument ) ) { in match_long_option()
143 if ( ( longopt->has_arg == no_argument ) && argument ) { in match_long_option()
172 enum getopt_argument_requirement has_arg, in match_short_option() argument
184 if ( has_arg != no_argument ) { in match_short_option()
199 if ( ( has_arg != no_argument ) && ( ! argument ) ) in match_short_option()
203 if ( ( has_arg == required_argument ) && ( ! argument ) ) { in match_short_option()
234 enum getopt_argument_requirement has_arg; in getopt_long() local
270 has_arg = no_argument; in getopt_long()
272 has_arg++; in getopt_long()
[all …]
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/roms/ipxe/src/core/
H A Dgetopt.c131 if ( ( longopt->has_arg != no_argument ) && ( ! argument ) ) in match_long_option()
135 if ( ( longopt->has_arg == required_argument ) && ( ! argument ) ) { in match_long_option()
143 if ( ( longopt->has_arg == no_argument ) && argument ) { in match_long_option()
172 enum getopt_argument_requirement has_arg, in match_short_option() argument
184 if ( has_arg != no_argument ) { in match_short_option()
199 if ( ( has_arg != no_argument ) && ( ! argument ) ) in match_short_option()
203 if ( ( has_arg == required_argument ) && ( ! argument ) ) { in match_short_option()
234 enum getopt_argument_requirement has_arg; in getopt_long() local
270 has_arg = no_argument; in getopt_long()
272 has_arg++; in getopt_long()
[all …]
/dports/emulators/qemu5/qemu-5.2.0/roms/ipxe/src/core/
H A Dgetopt.c131 if ( ( longopt->has_arg != no_argument ) && ( ! argument ) ) in match_long_option()
135 if ( ( longopt->has_arg == required_argument ) && ( ! argument ) ) { in match_long_option()
143 if ( ( longopt->has_arg == no_argument ) && argument ) { in match_long_option()
172 enum getopt_argument_requirement has_arg, in match_short_option() argument
184 if ( has_arg != no_argument ) { in match_short_option()
199 if ( ( has_arg != no_argument ) && ( ! argument ) ) in match_short_option()
203 if ( ( has_arg == required_argument ) && ( ! argument ) ) { in match_short_option()
234 enum getopt_argument_requirement has_arg; in getopt_long() local
270 has_arg = no_argument; in getopt_long()
272 has_arg++; in getopt_long()
[all …]
/dports/net/ipxe/ipxe-2265a65/src/core/
H A Dgetopt.c131 if ( ( longopt->has_arg != no_argument ) && ( ! argument ) ) in match_long_option()
135 if ( ( longopt->has_arg == required_argument ) && ( ! argument ) ) { in match_long_option()
143 if ( ( longopt->has_arg == no_argument ) && argument ) { in match_long_option()
172 enum getopt_argument_requirement has_arg, in match_short_option() argument
184 if ( has_arg != no_argument ) { in match_short_option()
199 if ( ( has_arg != no_argument ) && ( ! argument ) ) in match_short_option()
203 if ( ( has_arg == required_argument ) && ( ! argument ) ) { in match_short_option()
234 enum getopt_argument_requirement has_arg; in getopt_long() local
270 has_arg = no_argument; in getopt_long()
272 has_arg++; in getopt_long()
[all …]
/dports/emulators/qemu-utils/qemu-4.2.1/roms/ipxe/src/core/
H A Dgetopt.c131 if ( ( longopt->has_arg != no_argument ) && ( ! argument ) ) in match_long_option()
135 if ( ( longopt->has_arg == required_argument ) && ( ! argument ) ) { in match_long_option()
143 if ( ( longopt->has_arg == no_argument ) && argument ) { in match_long_option()
172 enum getopt_argument_requirement has_arg, in match_short_option() argument
184 if ( has_arg != no_argument ) { in match_short_option()
199 if ( ( has_arg != no_argument ) && ( ! argument ) ) in match_short_option()
203 if ( ( has_arg == required_argument ) && ( ! argument ) ) { in match_short_option()
234 enum getopt_argument_requirement has_arg; in getopt_long() local
270 has_arg = no_argument; in getopt_long()
272 has_arg++; in getopt_long()
[all …]
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/ipxe/src/core/
H A Dgetopt.c131 if ( ( longopt->has_arg != no_argument ) && ( ! argument ) ) in match_long_option()
135 if ( ( longopt->has_arg == required_argument ) && ( ! argument ) ) { in match_long_option()
143 if ( ( longopt->has_arg == no_argument ) && argument ) { in match_long_option()
172 enum getopt_argument_requirement has_arg, in match_short_option() argument
184 if ( has_arg != no_argument ) { in match_short_option()
199 if ( ( has_arg != no_argument ) && ( ! argument ) ) in match_short_option()
203 if ( ( has_arg == required_argument ) && ( ! argument ) ) { in match_short_option()
234 enum getopt_argument_requirement has_arg; in getopt_long() local
270 has_arg = no_argument; in getopt_long()
272 has_arg++; in getopt_long()
[all …]
/dports/emulators/qemu/qemu-6.2.0/roms/ipxe/src/core/
H A Dgetopt.c131 if ( ( longopt->has_arg != no_argument ) && ( ! argument ) ) in match_long_option()
135 if ( ( longopt->has_arg == required_argument ) && ( ! argument ) ) { in match_long_option()
143 if ( ( longopt->has_arg == no_argument ) && argument ) { in match_long_option()
172 enum getopt_argument_requirement has_arg, in match_short_option() argument
184 if ( has_arg != no_argument ) { in match_short_option()
199 if ( ( has_arg != no_argument ) && ( ! argument ) ) in match_short_option()
203 if ( ( has_arg == required_argument ) && ( ! argument ) ) { in match_short_option()
234 enum getopt_argument_requirement has_arg; in getopt_long() local
270 has_arg = no_argument; in getopt_long()
272 has_arg++; in getopt_long()
[all …]
/dports/emulators/qemu60/qemu-6.0.0/roms/ipxe/src/core/
H A Dgetopt.c131 if ( ( longopt->has_arg != no_argument ) && ( ! argument ) ) in match_long_option()
135 if ( ( longopt->has_arg == required_argument ) && ( ! argument ) ) { in match_long_option()
143 if ( ( longopt->has_arg == no_argument ) && argument ) { in match_long_option()
172 enum getopt_argument_requirement has_arg, in match_short_option() argument
184 if ( has_arg != no_argument ) { in match_short_option()
199 if ( ( has_arg != no_argument ) && ( ! argument ) ) in match_short_option()
203 if ( ( has_arg == required_argument ) && ( ! argument ) ) { in match_short_option()
234 enum getopt_argument_requirement has_arg; in getopt_long() local
270 has_arg = no_argument; in getopt_long()
272 has_arg++; in getopt_long()
[all …]
/dports/sysutils/syslinux/syslinux-6.03/gpxe/src/core/
H A Dgetopt.c126 if ( ( longopt->has_arg != no_argument ) && ( ! argument ) ) in match_long_option()
130 if ( ( longopt->has_arg == required_argument ) && ( ! argument ) ) { in match_long_option()
138 if ( ( longopt->has_arg == no_argument ) && argument ) { in match_long_option()
167 enum getopt_argument_requirement has_arg, in match_short_option() argument
179 if ( has_arg != no_argument ) { in match_short_option()
194 if ( ( has_arg != no_argument ) && ( ! argument ) ) in match_short_option()
198 if ( ( has_arg == required_argument ) && ( ! argument ) ) { in match_short_option()
229 enum getopt_argument_requirement has_arg; in getopt_long() local
260 has_arg = no_argument; in getopt_long()
262 has_arg++; in getopt_long()
[all …]
/dports/databases/p5-Prophet/Prophet-0.751/lib/Prophet/CLI/Command/
H A DAliases.pm26 $self->print_usage if $self->has_arg('h');
34 if ( $self->context->has_arg('add') && !$self->has_arg('set') ) {
40 $self->has_arg('set')
41 || $self->has_arg('delete')
42 || $self->has_arg('edit')
50 if $self->has_arg('set');
52 if $self->has_arg('delete');
63 $self->context->has_arg('edit')
73 $self->has_arg('edit')
81 } elsif ( !$self->has_arg('edit') ) {
/dports/security/silktools/silk-3.19.1/src/libsilk/
H A Doptions-parse-test.c69 filter_options[i].has_arg ? filter_options[i].has_arg == 1 in filterUsage()
84 fglob_options[i].has_arg ? fglob_options[i].has_arg == 1 in fglobUsage()
101 conffile_option[i].has_arg ? conffile_option[i].has_arg == 1 in conffileUsage()
129 (filter_options[opt_index].has_arg == 0 in filterHandler()
131 : (filter_options[opt_index].has_arg == 1 in filterHandler()
159 (fglob_options[opt_index-1].has_arg == 0 in fglobHandler()
161 : (fglob_options[opt_index-1].has_arg == 1 in fglobHandler()
188 conffile_option[opt_index-1].has_arg == 0 ? "No Arg" : in conffileHandler()
189 (conffile_option[opt_index-1].has_arg == 1 ? in conffileHandler()
/dports/sysutils/nitrogen/nitrogen-1.6.1/src/
H A DArgParser.h35 bool has_arg = false) {
37 set_has_arg (has_arg);
45 return has_arg; in get_has_arg()
52 void set_has_arg (bool has_arg) { in set_has_arg() argument
53 this->has_arg = has_arg; in set_has_arg()
60 bool has_arg; variable
71 inline void register_option (std::string name, std::string desc = "", bool has_arg = false) {
72 expected_args[name] = Arg(desc, has_arg);
/dports/devel/boost-docs/boost_1_72_0/boost/lockfree/detail/
H A Dparameter.hpp28 struct has_arg struct
38 static const bool has_capacity = has_arg<bound_args, tag::capacity>::value;
41 typename has_arg<bound_args, tag::capacity>::type,
52 static const bool has_allocator = has_arg<bound_args, tag::allocator>::value;
55 typename has_arg<bound_args, tag::allocator>::type,
65 static const bool has_fixed_sized = has_arg<bound_args, tag::fixed_sized>::value;
68 typename has_arg<bound_args, tag::fixed_sized>::type,
/dports/devel/hyperscan/boost_1_75_0/boost/lockfree/detail/
H A Dparameter.hpp28 struct has_arg struct
38 static const bool has_capacity = has_arg<bound_args, tag::capacity>::value;
41 typename has_arg<bound_args, tag::capacity>::type,
52 static const bool has_allocator = has_arg<bound_args, tag::allocator>::value;
55 typename has_arg<bound_args, tag::allocator>::type,
65 static const bool has_fixed_sized = has_arg<bound_args, tag::fixed_sized>::value;
68 typename has_arg<bound_args, tag::fixed_sized>::type,
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/lockfree/detail/
H A Dparameter.hpp21 struct has_arg struct
31 static const bool has_capacity = has_arg<bound_args, tag::capacity>::value;
34 typename has_arg<bound_args, tag::capacity>::type,
45 static const bool has_allocator = has_arg<bound_args, tag::allocator>::value;
48 typename has_arg<bound_args, tag::allocator>::type,
58 static const bool has_fixed_sized = has_arg<bound_args, tag::fixed_sized>::value;
61 typename has_arg<bound_args, tag::fixed_sized>::type,
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/lockfree/detail/
H A Dparameter.hpp28 struct has_arg struct
38 static const bool has_capacity = has_arg<bound_args, tag::capacity>::value;
41 typename has_arg<bound_args, tag::capacity>::type,
52 static const bool has_allocator = has_arg<bound_args, tag::allocator>::value;
55 typename has_arg<bound_args, tag::allocator>::type,
65 static const bool has_fixed_sized = has_arg<bound_args, tag::fixed_sized>::value;
68 typename has_arg<bound_args, tag::fixed_sized>::type,
/dports/databases/xtrabackup/boost_1_59_0/boost/lockfree/detail/
H A Dparameter.hpp21 struct has_arg struct
31 static const bool has_capacity = has_arg<bound_args, tag::capacity>::value;
34 typename has_arg<bound_args, tag::capacity>::type,
45 static const bool has_allocator = has_arg<bound_args, tag::allocator>::value;
48 typename has_arg<bound_args, tag::allocator>::type,
58 static const bool has_fixed_sized = has_arg<bound_args, tag::fixed_sized>::value;
61 typename has_arg<bound_args, tag::fixed_sized>::type,
/dports/databases/percona57-server/boost_1_59_0/boost/lockfree/detail/
H A Dparameter.hpp21 struct has_arg struct
31 static const bool has_capacity = has_arg<bound_args, tag::capacity>::value;
34 typename has_arg<bound_args, tag::capacity>::type,
45 static const bool has_allocator = has_arg<bound_args, tag::allocator>::value;
48 typename has_arg<bound_args, tag::allocator>::type,
58 static const bool has_fixed_sized = has_arg<bound_args, tag::fixed_sized>::value;
61 typename has_arg<bound_args, tag::fixed_sized>::type,
/dports/devel/concurrentqueue/concurrentqueue-1.0.3-15-g0753496/benchmarks/boost/lockfree/detail/
H A Dparameter.hpp21 struct has_arg struct
31 static const bool has_capacity = has_arg<bound_args, tag::capacity>::value;
34 typename has_arg<bound_args, tag::capacity>::type,
45 static const bool has_allocator = has_arg<bound_args, tag::allocator>::value;
48 typename has_arg<bound_args, tag::allocator>::type,
58 static const bool has_fixed_sized = has_arg<bound_args, tag::fixed_sized>::value;
61 typename has_arg<bound_args, tag::fixed_sized>::type,

12345678910>>...136