Home
last modified time | relevance | path

Searched refs:long (Results 1 - 25 of 322) sorted by relevance

12345678910>>...13

/third_party/rust/crates/bindgen/bindgen-cli/
H A Doptions.rs52 #[arg(long)]
55 #[arg(long, value_name = "VARIANT")]
58 #[arg(long, value_name = "REGEX")]
61 #[arg(long, value_name = "REGEX")]
64 #[arg(long, value_name = "REGEX")]
67 #[arg(long, value_name = "REGEX")]
70 #[arg(long, value_name = "REGEX")]
73 #[arg(long, value_name = "REGEX")]
76 #[arg(long, value_name = "VARIANT")]
79 #[arg(long, value_nam
[all...]
/third_party/rust/crates/clap/tests/builder/
H A Drequire.rs270 .long("config"), in required_unless_present()
272 .arg(Arg::new("dbg").long("debug").action(ArgAction::SetTrue)) in required_unless_present()
288 .long("config"), in required_unless_present_err()
290 .arg(Arg::new("dbg").long("debug")) in required_unless_present_err()
300 .arg(Arg::new("opt").long("opt").num_args(0..=1)) in required_unless_present_with_optional_value()
305 .long("config"), in required_unless_present_with_optional_value()
307 .arg(Arg::new("dbg").long("debug")) in required_unless_present_with_optional_value()
323 .long("config"), in required_unless_present_all()
325 .arg(Arg::new("dbg").long("debug").action(ArgAction::SetTrue)) in required_unless_present_all()
343 .long("confi in required_unless_all_err()
[all...]
H A Dderive_order.rs26 .long("flag_b") in no_derive_order()
30 .long("option_b") in no_derive_order()
34 .long("flag_a") in no_derive_order()
38 .long("option_a") in no_derive_order()
62 .long("flag_b") in derive_order()
66 .long("option_b") in derive_order()
70 .long("flag_a") in derive_order()
74 .long("option_a") in derive_order()
101 .long("flag_a") in derive_order_next_order()
107 .long("option_ in derive_order_next_order()
[all...]
H A Darg_aliases.rs10 .long("alias") in single_alias_of_option()
29 .long("aliases") in multiple_aliases_of_option()
34 let long = a in multiple_aliases_of_option()
37 assert!(long.is_ok(), "{}", long.unwrap_err()); in multiple_aliases_of_option()
38 let long = long.unwrap(); in multiple_aliases_of_option()
58 assert!(long.contains_id("aliases")); in multiple_aliases_of_option()
63 long.get_one::<String>("aliases") in multiple_aliases_of_option()
91 .long("aliase in get_aliases()
[all...]
H A Darg_aliases_short.rs10 .long("alias") in single_short_alias_of_option()
29 .long("aliases") in multiple_short_aliases_of_option()
34 let long = a in multiple_short_aliases_of_option()
37 assert!(long.is_ok(), "{}", long.unwrap_err()); in multiple_short_aliases_of_option()
38 let long = long.unwrap(); in multiple_short_aliases_of_option()
52 assert!(long.contains_id("aliases")); in multiple_short_aliases_of_option()
57 long.get_one::<String>("aliases") in multiple_short_aliases_of_option()
87 .long("fla in single_short_alias_of_flag()
[all...]
H A Daction.rs11 let cmd = Command::new("test").arg(Arg::new("mammal").long("mammal").action(ArgAction::Set)); in set()
44 let cmd = Command::new("test").arg(Arg::new("mammal").long("mammal").action(ArgAction::Append)); in append()
84 Command::new("test").arg(Arg::new("mammal").long("mammal").action(ArgAction::SetTrue)); in set_true()
119 .long("mammal") in set_true_with_explicit_default_value()
143 .long("mammal") in set_true_with_default_value_if_present()
147 .arg(Arg::new("dog").long("dog").action(ArgAction::SetTrue)); in set_true_with_default_value_if_present()
170 .long("mammal") in set_true_with_default_value_if_value()
174 .arg(Arg::new("dog").long("dog").action(ArgAction::SetTrue)); in set_true_with_default_value_if_value()
197 .long("mammal") in set_true_with_required_if_eq()
201 .arg(Arg::new("dog").long("do in set_true_with_required_if_eq()
[all...]
H A Dflag_subcommands.rs12 .long("test") in flag_subcommand_normal()
36 .long("test") in flag_subcommand_normal_with_alias()
58 .long("test") in flag_subcommand_short()
79 .long("test") in flag_subcommand_short_with_args()
102 .long("test") in flag_subcommand_short_with_alias()
148 .long("test") in flag_subcommand_short_with_aliases_vis_and_hidden()
176 .long("test") in flag_subcommand_short_with_aliases()
201 .long("test") in flag_subcommand_short_with_alias_hyphen()
220 .long("test") in flag_subcommand_short_with_aliases_hyphen()
237 .arg(Arg::new("arg").long("ar in flag_subcommand_short_after_long_arg()
[all...]
/third_party/python/Lib/distutils/
H A Dfancy_getopt.py5 * short and long options are tied together
25 # This is used to translate long options to legitimate Python identifiers
32 * short and long options are tied together
49 # must have long options.
52 # 'option_index' maps long option names to entries in the option
101 option with long name 'long_option'."""
105 """Translate long option name 'long_option' to the form it
145 long, short, help = option
148 long, short, help, repeat = option
155 if not isinstance(long, st
[all...]
/third_party/rust/crates/clap/clap_complete/examples/
H A Dcompletion.rs24 .long("unknown") in build_cli()
27 .arg(Arg::new("other").long("other").value_hint(ValueHint::Other)) in build_cli()
30 .long("path") in build_cli()
36 .long("file") in build_cli()
42 .long("dir") in build_cli()
48 .long("exe") in build_cli()
54 .long("cmd-name") in build_cli()
59 .long("cmd") in build_cli()
73 .long("user") in build_cli()
78 .long("hos in build_cli()
[all...]
H A Dcompletion-derive.rs25 #[arg(long = "generate", value_enum)]
40 #[arg(long, value_hint = ValueHint::Unknown)]
42 #[arg(long, value_hint = ValueHint::Other)]
44 #[arg(short, long, value_hint = ValueHint::AnyPath)]
46 #[arg(short, long, value_hint = ValueHint::FilePath)]
48 #[arg(short, long, value_hint = ValueHint::DirPath)]
50 #[arg(short, long, value_hint = ValueHint::ExecutablePath)]
52 #[arg(long, value_hint = ValueHint::CommandName)]
54 #[arg(short, long, value_hint = ValueHint::CommandString)]
59 #[arg(short, long, value_hin
[all...]
/third_party/rust/crates/clap/tests/derive/
H A Dhelp.rs7 #[arg(long)] in arg_help_heading_applied()
11 #[arg(long)] in arg_help_heading_applied()
35 #[arg(long)] in app_help_heading_applied()
39 #[arg(long)] in app_help_heading_applied()
77 #[arg(long)] in app_help_heading_flattened()
84 #[arg(long)] in app_help_heading_flattened()
91 #[arg(long)] in app_help_heading_flattened()
177 #[arg(long)] in flatten_field_with_help_heading()
199 #[arg(long)] in derive_generated_error_has_full_context()
209 #[arg(short, long, actio in derive_generated_error_has_full_context()
[all...]
H A Dnaming.rs9 #[arg(long)] in test_standalone_long_generates_kebab_case()
23 #[arg(long = "foo")] in test_custom_long_overwrites_default_name()
37 #[arg(id = "foo", long)] in test_standalone_long_uses_previous_defined_custom_name()
51 #[arg(long, id = "foo")] in test_standalone_long_ignores_afterwards_defined_custom_name()
65 #[arg(id = "foo", long)] in test_standalone_long_uses_previous_defined_custom_id()
79 #[arg(long, id = "foo")] in test_standalone_long_ignores_afterwards_defined_custom_id()
178 #[arg(rename_all = "screaming_snake", long)] in test_standalone_long_uses_previous_defined_casing()
207 #[arg(rename_all = "verbatim", long)] in test_standalone_long_works_with_verbatim_casing()
236 #[arg(long)] in test_rename_all_is_propagated_from_struct_to_fields()
257 #[arg(long)] in test_rename_all_is_not_propagated_from_struct_into_flattened()
[all...]
/third_party/mesa3d/src/nouveau/codegen/lib/
H A Dgk104.asm16 long xor b32 $r2 $r2 0x1f
17 long mov b32 $r3 0x1
19 long cvt u32 $r1 neg u32 $r1
20 long mul $r3 u32 $r1 u32 $r2
34 long cvt u32 $r2 neg u32 $r1
35 long add $r1 (mul u32 $r1 u32 $r0) $r3
43 long ret
55 long cvt s32 $r0 abs s32 $r0
56 long cvt s32 $r1 abs s32 $r1
58 long xo
101 long ret global() label
117 long ret global() label
133 long ret global() label
144 long ret global() label
156 long ret global() label
167 long ret global() label
174 long mov b32 $r2 0x00000000 global() label
175 long mov b32 $r3 0x3f800000 global() label
176 long ret global() label
183 long mov b32 $r2 0x00000000 global() label
184 long mov b32 $r3 0x00000001 global() label
185 long ret global() label
193 long mov b32 $r3 0x3f800000 global() label
195 long and b32 $r0 $r0 0x3ff global() label
203 long ret global() label
211 long mov b32 $r3 0x00000001 global() label
213 long and b32 $r0 $r0 0x3ff global() label
214 long ret global() label
230 long ret global() label
246 long ret global() label
257 long ret global() label
269 long ret global() label
277 long mov b32 $r3 0x3f800000 global() label
279 long and b32 $r0 $r0 0x1f global() label
287 long ret global() label
296 long and b32 $r0 $r0 0x1f global() label
297 long mov b32 $r3 0x3f800000 global() label
305 long ret global() label
316 long mov b32 $r2 0x00000000 global() label
317 long mov b32 $r3 0x3f800000 global() label
319 long ret global() label
332 long ret global() label
343 long ret global() label
355 long ret global() label
366 long ret global() label
373 long mov b32 $r3 0x3f800000 global() label
374 long mov b32 $r2 0x00000000 global() label
375 long mov b32 $r1 0x00000000 global() label
376 long ret global() label
383 long mov b32 $r3 0x00000001 global() label
384 long mov b32 $r2 0x00000000 global() label
385 long mov b32 $r1 0x00000000 global() label
386 long ret global() label
400 long ret global() label
407 long mov b32 $r3 0x3f800000 global() label
409 long mov b32 $r2 0x00000000 global() label
413 long ret global() label
420 long mov b32 $r3 0x00000001 global() label
422 long mov b32 $r2 0x00000000 global() label
425 long ret global() label
431 long mov b32 $r3 0x00000001 global() label
434 long mov b32 $r2 0x00000000 global() label
436 long ret global() label
443 long mov b32 $r3 0x3f800000 global() label
445 long mov b32 $r2 0x00000000 global() label
446 long mov b32 $r1 0x00000000 global() label
448 long ret global() label
457 long mov b32 $r2 0x00000000 global() label
459 long mov b32 $r1 0x00000000 global() label
461 long ret global() label
468 long mov b32 $r3 0x00000001 global() label
469 long mov b32 $r2 0x00000000 global() label
470 long mov b32 $r1 0x00000000 global() label
471 long ret global() label
478 long mov b32 $r3 0x00000001 global() label
479 long mov b32 $r2 0x00000000 global() label
480 long mov b32 $r1 0x00000000 global() label
481 long ret global() label
488 long mov b32 $r3 0x3f800000 global() label
489 long mov b32 $r2 0x00000000 global() label
492 long ret global() label
505 long ret global() label
517 long ret global() label
524 long mov b32 $r3 0x00000001 global() label
525 long mov b32 $r2 0x00000000 global() label
526 long mov b32 $r1 0x00000000 global() label
527 long ret global() label
534 long mov b32 $r3 0x00000001 global() label
535 long mov b32 $r2 0x00000000 global() label
536 long mov b32 $r1 0x00000000 global() label
538 long ret global() label
544 long mov b32 $r3 0x3f800000 global() label
545 long nop global() label
547 long nop global() label
548 long ret global() label
792 long mov b32 $r1 $trapstat global() label
793 long mov b32 $r3 $warperr global() label
798 long mov b32 $r3 16 global() label
815 long mov b32 $r2 $trapstat global() label
816 long mov b32 $r3 $warperr global() label
839 long mov b32 $r2 $tidx global() label
840 long mov b32 $r3 $tidy global() label
842 long mov b32 $r2 $tidz global() label
843 long mov b32 $r3 $ctaidx global() label
845 long mov b32 $r2 $ctaidy global() label
846 long mov b32 $r3 $ctaidz global() label
849 long mov b32 $r3 $smemsz global() label
855 long ld b32 $r2 s[$r3] global() label
856 long st b32 wb g[$r0d+0x140] $r2 global() label
[all...]
/third_party/rust/crates/clap/clap_derive/src/utils/
H A Ddoc_comments.rs58 let (short, long) = if preprocess { in format_doc_comment()
61 let long = paragraphs.join("\n\n"); in format_doc_comment()
62 (remove_period(short), long) in format_doc_comment()
65 let long = lines.join("\n"); in format_doc_comment()
66 (short, long) in format_doc_comment()
69 (Some(short), Some(long)) in format_doc_comment()
71 let (short, long) = if preprocess { in format_doc_comment()
73 let long = force_long.then(|| short.clone()); in format_doc_comment()
75 (short, long) in format_doc_comment()
78 let long in format_doc_comment()
[all...]
/third_party/curl/docs/cmdline-opts/
H A Dgen.pl71 # get the long name version, return the man page string
76 # quote "bare" minuses in the long name
79 # both short + long
83 # only long
328 my $long;
363 $long=$1;
432 if(!$long) {
481 if(defined($short) && $long) {
482 $opt = "-$short, --$long";
484 elsif($short && !$long) {
[all...]
/third_party/rust/crates/clap/clap_mangen/tests/
H A Dcommon.rs42 .long("config") in basic_command()
49 .long("case") in basic_command()
63 .long("config") in basic_command()
76 .long("single-quotes") in basic_command()
82 .long("double-quotes") in basic_command()
88 .long("backticks") in basic_command()
94 .long("backslash") in basic_command()
100 .long("brackets") in basic_command()
106 .long("expansions") in basic_command()
129 .long("fla in basic_command()
[all...]
/third_party/rust/crates/clap/clap_bench/benches/
H A D06_rustup.rs33 .long("verbose") in build_cli()
56 .long("no-self-update") in build_cli()
112 .long("toolchain") in build_cli()
122 .long("toolchain") in build_cli()
132 .long("toolchain") in build_cli()
142 .long("toolchain") in build_cli()
152 .long("toolchain") in build_cli()
165 .long("toolchain") in build_cli()
175 .long("toolchain") in build_cli()
178 .arg(Arg::new("target").long("targe in build_cli()
[all...]
/third_party/node/deps/openssl/openssl/crypto/sha/asm/
H A Dsha512-sparcv9.pl415 .long 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5
416 .long 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5
417 .long 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3
418 .long 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174
419 .long 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc
420 .long 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da
421 .long 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7
422 .long 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967
423 .long 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13
424 .long
[all...]
/third_party/openssl/crypto/sha/asm/
H A Dsha512-sparcv9.pl415 .long 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5
416 .long 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5
417 .long 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3
418 .long 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174
419 .long 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc
420 .long 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da
421 .long 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7
422 .long 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967
423 .long 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13
424 .long
[all...]
/third_party/node/deps/openssl/openssl/crypto/
H A Dppccpuid.pl42 .long 0
51 .long 0
58 .long 0x10000484 # vor v0,v0,v0
60 .long 0
70 .long 0
81 .long 0
113 .long 0
126 .long 0
128 .long 0
136 .long
[all...]
/third_party/openssl/crypto/
H A Dppccpuid.pl42 .long 0
51 .long 0
58 .long 0x10000484 # vor v0,v0,v0
60 .long 0
70 .long 0
81 .long 0
113 .long 0
126 .long 0
128 .long 0
136 .long
[all...]
/third_party/node/deps/openssl/openssl/crypto/aes/asm/
H A Dvpaes-ppc.pl78 .long 0x01020300, 0x05060704, 0x090a0b08, 0x0d0e0f0c ?inv
79 .long 0x05060704, 0x090a0b08, 0x0d0e0f0c, 0x01020300 ?inv
80 .long 0x090a0b08, 0x0d0e0f0c, 0x01020300, 0x05060704 ?inv
81 .long 0x0d0e0f0c, 0x01020300, 0x05060704, 0x090a0b08 ?inv
83 .long 0x03000102, 0x07040506, 0x0b08090a, 0x0f0c0d0e ?inv
84 .long 0x0f0c0d0e, 0x03000102, 0x07040506, 0x0b08090a ?inv
85 .long 0x0b08090a, 0x0f0c0d0e, 0x03000102, 0x07040506 ?inv
86 .long 0x07040506, 0x0b08090a, 0x0f0c0d0e, 0x03000102 ?inv
88 .long 0x00010203, 0x04050607, 0x08090a0b, 0x0c0d0e0f ?inv
89 .long
[all...]
/third_party/openssl/crypto/aes/asm/
H A Dvpaes-ppc.pl78 .long 0x01020300, 0x05060704, 0x090a0b08, 0x0d0e0f0c ?inv
79 .long 0x05060704, 0x090a0b08, 0x0d0e0f0c, 0x01020300 ?inv
80 .long 0x090a0b08, 0x0d0e0f0c, 0x01020300, 0x05060704 ?inv
81 .long 0x0d0e0f0c, 0x01020300, 0x05060704, 0x090a0b08 ?inv
83 .long 0x03000102, 0x07040506, 0x0b08090a, 0x0f0c0d0e ?inv
84 .long 0x0f0c0d0e, 0x03000102, 0x07040506, 0x0b08090a ?inv
85 .long 0x0b08090a, 0x0f0c0d0e, 0x03000102, 0x07040506 ?inv
86 .long 0x07040506, 0x0b08090a, 0x0f0c0d0e, 0x03000102 ?inv
88 .long 0x00010203, 0x04050607, 0x08090a0b, 0x0c0d0e0f ?inv
89 .long
[all...]
/third_party/rust/crates/clap/clap_complete_fig/tests/
H A Dcommon.rs40 .long("config") in basic_command()
47 .long("case") in basic_command()
61 .long("config") in basic_command()
78 .long("single-quotes") in basic_command()
84 .long("double-quotes") in basic_command()
90 .long("backticks") in basic_command()
96 .long("backslash") in basic_command()
102 .long("brackets") in basic_command()
108 .long("expansions") in basic_command()
131 .long("fla in basic_command()
[all...]
/third_party/rust/crates/clap/clap_complete/tests/
H A Dcommon.rs42 .long("config") in basic_command()
49 .long("case") in basic_command()
63 .long("config") in basic_command()
80 .long("single-quotes") in basic_command()
86 .long("double-quotes") in basic_command()
92 .long("backticks") in basic_command()
98 .long("backslash") in basic_command()
104 .long("brackets") in basic_command()
110 .long("expansions") in basic_command()
133 .long("fla in basic_command()
[all...]

Completed in 12 milliseconds

12345678910>>...13