Home
last modified time | relevance | path

Searched defs:Command (Results 1 – 25 of 152) sorted by relevance

1234567

/third_party/skia/tools/sk_app/
DCommandSet.h58 struct Command { struct
59 enum CommandType { argument
64 Command(SkUnichar c, const char* group, const char* description, in Command() argument
73 Command(skui::Key k, const char* keyName, const char* group, const char* description, in Command() function
82 CommandType fType; argument
101 static bool compareCommandKey(const Command& first, const Command& second); argument
/third_party/rust/crates/clap/clap_mangen/tests/
Dcommon.rs3 pub fn basic_command(name: &'static str) -> clap::Command { in basic_command()
26 pub fn feature_sample_command(name: &'static str) -> clap::Command { in feature_sample_command()
56 pub fn special_commands_command(name: &'static str) -> clap::Command { in special_commands_command()
71 pub fn quoting_command(name: &'static str) -> clap::Command { in quoting_command()
121 pub fn aliases_command(name: &'static str) -> clap::Command { in aliases_command()
146 pub fn sub_subcommands_command(name: &'static str) -> clap::Command { in sub_subcommands_command()
164 pub fn value_hint_command(name: &'static str) -> clap::Command { in value_hint_command()
248 pub fn hidden_option_command(name: &'static str) -> clap::Command { in hidden_option_command()
263 pub fn env_value_command(name: &'static str) -> clap::Command { in env_value_command()
275 pub fn assert_matches_path(expected_path: impl AsRef<std::path::Path>, cmd: clap::Command) { in assert_matches_path()
[all …]
/third_party/skia/m133/tools/sk_app/
DCommandSet.h63 struct Command { struct
64 enum CommandType { argument
69 Command(SkUnichar c, const char* group, const char* description, in Command() function
78 Command(skui::Key k, const char* keyName, const char* group, const char* description, in Command() function
87 CommandType fType; argument
106 static bool compareCommandKey(const Command& first, const Command& second); argument
/third_party/rust/crates/clap/clap_complete/tests/
Dcommon.rs3 pub fn basic_command(name: &'static str) -> clap::Command { in basic_command()
26 pub fn feature_sample_command(name: &'static str) -> clap::Command { in feature_sample_command()
56 pub fn special_commands_command(name: &'static str) -> clap::Command { in special_commands_command()
75 pub fn quoting_command(name: &'static str) -> clap::Command { in quoting_command()
125 pub fn aliases_command(name: &'static str) -> clap::Command { in aliases_command()
150 pub fn sub_subcommands_command(name: &'static str) -> clap::Command { in sub_subcommands_command()
171 pub fn value_hint_command(name: &'static str) -> clap::Command { in value_hint_command()
255 pub fn value_terminator_command(name: &'static str) -> clap::Command { in value_terminator_command()
264 pub fn two_multi_valued_arguments_command(name: &'static str) -> clap::Command { in two_multi_valued_arguments_command()
281 mut cmd: clap::Command, in assert_matches_path()
/third_party/rust/crates/clap/clap_complete_fig/tests/
Dcommon.rs1 pub fn basic_command(name: &'static str) -> clap::Command { in basic_command()
24 pub fn feature_sample_command(name: &'static str) -> clap::Command { in feature_sample_command()
54 pub fn special_commands_command(name: &'static str) -> clap::Command { in special_commands_command()
73 pub fn quoting_command(name: &'static str) -> clap::Command { in quoting_command()
123 pub fn aliases_command(name: &'static str) -> clap::Command { in aliases_command()
148 pub fn sub_subcommands_command(name: &'static str) -> clap::Command { in sub_subcommands_command()
166 pub fn value_hint_command(name: &'static str) -> clap::Command { in value_hint_command()
253 mut cmd: clap::Command, in assert_matches_path()
/third_party/ncurses/Ada95/samples/
Dsample-keyboard_handler.adb72 function Command return Real_Key_Code; subprogspec
74 function Command return Real_Key_Code subprogram
86 (Make (0, 0, "Command:"), argument
90 K : Real_Key_Code := Key_None;
91 N : Natural := 0;
93 function My_Driver (F : Form;
/third_party/rust/rust/compiler/rustc_codegen_ssa/src/back/
Dcommand.rs13 pub struct Command { struct
27 impl Command { impl
28 pub fn new<P: AsRef<OsStr>>(program: P) -> Command { in new()
32 pub fn bat_script<P: AsRef<OsStr>>(program: P) -> Command { in bat_script()
36 pub fn lld<P: AsRef<OsStr>>(program: P, flavor: LldFlavor) -> Command { in lld()
40 fn _new(program: Program) -> Command { in _new()
44 pub fn arg<P: AsRef<OsStr>>(&mut self, arg: P) -> &mut Command { in arg() method
92 pub fn command(&self) -> process::Command { in command()
174 impl fmt::Debug for Command { implementation
/third_party/rust/rust/tests/ui/uninhabited/
Dissue-107505.rs6 struct Command<'s> { struct
11 fn command(_: &()) -> Command<'_> { in command() argument
15 fn with_session<'s>(a: &std::process::Command, b: &'s ()) -> Command<'s> { in with_session()
/third_party/rust/rust/src/tools/rustfmt/tests/target/
Dreorder-impl-items.rs4 impl<'a> Command<'a> { implementation
12 pub fn parse(arg: &[u8]) -> Result<Command, ParseError> { in parse()
/third_party/rust/rust/src/tools/rustfmt/tests/source/
Dreorder-impl-items.rs4 impl<'a> Command<'a> { impl
12 pub fn parse(arg: &[u8]) -> Result<Command, ParseError> { in parse()
/third_party/rust/rust/compiler/rustc_codegen_cranelift/build_system/
Dutils.rs77 fn base_cmd(&self, command: &str, cargo: &Path, dirs: &Dirs) -> Command { in base_cmd()
95 fn build_cmd(&self, command: &str, compiler: &Compiler, dirs: &Dirs) -> Command { in build_cmd()
119 pub(crate) fn build(&self, compiler: &Compiler, dirs: &Dirs) -> Command { in build()
124 pub(crate) fn test(&self, compiler: &Compiler, dirs: &Dirs) -> Command { in test()
129 pub(crate) fn run(&self, compiler: &Compiler, dirs: &Dirs) -> Command { in run()
140 ) -> Command { in hyperfine_command()
161 pub(crate) fn git_command<'a>(repo_dir: impl Into<Option<&'a Path>>, cmd: &str) -> Command { in git_command()
187 pub(crate) fn spawn_and_wait(mut cmd: Command) { in spawn_and_wait()
195 pub(crate) fn retry_spawn_and_wait(tries: u64, mut cmd: Command) { in retry_spawn_and_wait()
210 pub(crate) fn spawn_and_wait_with_input(mut cmd: Command, input: String) -> String { in spawn_and_wait_with_input()
[all …]
/third_party/rust/rust/tests/ui/threads-sendsync/
Dsend-type-inference.rs10 struct Command<K, V> { struct
15 fn cache_server<K:Send+'static,V:Send+'static>(mut tx: Sender<Sender<Command<K, V>>>) { in cache_server() argument
/third_party/rust/crates/clap/src/builder/
Dcommand.rs71 pub struct Command { struct
72 name: Str,
73 long_flag: Option<Str>,
74 short_flag: Option<char>,
75 display_name: Option<String>,
76 bin_name: Option<String>,
100 subcommands: Vec<Command>, argument
112 impl Command { argument
133 fn new_inner(name: Str) -> Command { in new()
919 impl Command { implementation
[all …]
/third_party/rust/rust/library/std/src/sys/unix/process/
Dprocess_common.rs86 pub struct Command { struct
95 env: CommandEnv, argument
116 // pointers to memory owned by `Command.args` argument
178 impl Command { implementation
180 pub fn new(program: &OsStr) -> Command { in new()
204 pub fn new(program: &OsStr) -> Command { in new()
513 impl fmt::Debug for Command { implementation
/third_party/brotli/c/enc/
Dcommand.h108 typedef struct Command { struct
118 } Command; argument
/third_party/skia/third_party/externals/brotli/c/enc/
Dcommand.h107 typedef struct Command { struct
117 } Command; argument
/third_party/rust/crates/clap/tests/derive/
Ddoc_comments_help.rs179 struct Command { in verbatim_doc_comment_field() struct
182 foo: bool, in verbatim_doc_comment_field()
185 bar: bool, in verbatim_doc_comment_field()
197 struct Command { in multiline_separates_default() struct
202 x: String, in multiline_separates_default()
217 struct Command { in value_enum_multiline_doc_comment() struct
218 x: LoremIpsum, in value_enum_multiline_doc_comment()
/third_party/rust/rust/src/tools/x/src/
Dmain.rs54 fn x_command(dir: &Path) -> Command { in x_command()
70 fn x_command(dir: &Path) -> Command { in x_command()
75 fn x_command(_dir: &Path) -> Command { in x_command()
90 fn handle_result(result: io::Result<ExitStatus>, cmd: Command) { in handle_result()
/third_party/rust/rust/library/std/src/os/windows/
Dprocess.rs140 fn creation_flags(&mut self, flags: u32) -> &mut process::Command; in creation_flags()
156 fn force_quotes(&mut self, enabled: bool) -> &mut process::Command; in force_quotes()
215 fn raw_arg<S: AsRef<OsStr>>(&mut self, text_to_append_as_is: S) -> &mut process::Command; in raw_arg()
246 fn async_pipes(&mut self, always_async: bool) -> &mut process::Command; in async_pipes()
250 impl CommandExt for process::Command { implementation
251 fn creation_flags(&mut self, flags: u32) -> &mut process::Command { in creation_flags()
256 fn force_quotes(&mut self, enabled: bool) -> &mut process::Command { in force_quotes()
261 fn raw_arg<S: AsRef<OsStr>>(&mut self, raw_text: S) -> &mut process::Command { in raw_arg()
266 fn async_pipes(&mut self, always_async: bool) -> &mut process::Command { in async_pipes()
/third_party/rust/crates/clap/clap_mangen/src/
Drender.rs11 pub(crate) fn about(roff: &mut Roff, cmd: &clap::Command) { in about()
19 pub(crate) fn description(roff: &mut Roff, cmd: &clap::Command) { in description()
31 pub(crate) fn synopsis(roff: &mut Roff, cmd: &clap::Command) { in synopsis()
89 pub(crate) fn options(roff: &mut Roff, cmd: &clap::Command) { in options()
224 pub(crate) fn subcommands(roff: &mut Roff, cmd: &clap::Command, section: &str) { in subcommands()
253 pub(crate) fn after_help(roff: &mut Roff, cmd: &clap::Command) { in after_help()
/third_party/rust/rust/src/tools/jsondocck/src/
Dmain.rs41 pub struct Command { struct
43 kind: CommandKind, argument
49 pub enum CommandKind { argument
118 fn get_commands(template: &str) -> Result<Vec<Command>, ()> { in get_commands()
192 fn check_command(command: Command, cache: &mut Cache) -> Result<(), CkError> { in check_command()
/third_party/rust/crates/clap/src/
Dderive.rs292 fn augment_args(cmd: Command) -> Command; in augment_args()
298 fn augment_args_for_update(cmd: Command) -> Command; in augment_args_for_update()
334 fn augment_subcommands(cmd: Command) -> Command; in augment_subcommands()
340 fn augment_subcommands_for_update(cmd: Command) -> Command; in augment_subcommands_for_update()
424 fn command<'help>() -> Command { in command()
427 fn command_for_update<'help>() -> Command { in command_for_update()
448 fn augment_args(cmd: Command) -> Command { in augment_args()
451 fn augment_args_for_update(cmd: Command) -> Command { in augment_args_for_update()
457 fn augment_subcommands(cmd: Command) -> Command { in augment_subcommands()
460 fn augment_subcommands_for_update(cmd: Command) -> Command { in augment_subcommands_for_update()
/third_party/rust/crates/clap/clap_complete/src/generator/
Dmod.rs66 fn generate(&self, cmd: &Command, buf: &mut dyn Write); in generate()
167 cmd: &mut clap::Command, in generate_to()
223 pub fn generate<G, S>(gen: G, cmd: &mut clap::Command, bin_name: S, buf: &mut dyn Write) in generate()
232 fn _generate<G, S>(gen: G, cmd: &mut clap::Command, buf: &mut dyn Write) in _generate()
/third_party/rust/crates/clap/src/error/
Dmod.rs279 fn for_app(kind: ErrorKind, cmd: &Command, styled: StyledStr) -> Self { in for_app()
331 pub(crate) fn display_help(cmd: &Command, styled: StyledStr) -> Self { in display_help()
335 pub(crate) fn display_help_error(cmd: &Command, styled: StyledStr) -> Self { in display_help_error()
343 pub(crate) fn display_version(cmd: &Command, styled: StyledStr) -> Self { in display_version()
348 cmd: &Command, in argument_conflict()
375 pub(crate) fn empty_value(cmd: &Command, good_vals: &[String], arg: String) -> Self { in empty_value()
379 pub(crate) fn no_equals(cmd: &Command, arg: String, usage: Option<StyledStr>) -> Self { in no_equals()
396 cmd: &Command, in invalid_value()
426 cmd: &Command, in invalid_subcommand()
466 cmd: &Command, in unrecognized_subcommand()
[all …]
/third_party/rust/crates/clap/clap_complete/src/shells/
Dbash.rs16 fn generate(&self, cmd: &Command, buf: &mut dyn Write) { in generate()
80 cmd: &Command, in all_subcommands()
160 fn option_details_for_path(cmd: &Command, path: &str) -> String { in option_details_for_path()
214 fn all_options_for_path(cmd: &Command, path: &str) -> String { in all_options_for_path()

1234567