Home
last modified time | relevance | path

Searched refs:CommandName (Results 1 – 21 of 21) sorted by relevance

/third_party/skia/third_party/externals/dawn/generator/templates/dawn_wire/server/
DServerPrototypes.inc36 {% for CommandName in server_custom_pre_handler_commands %}
37 bool PreHandle{{CommandName}}(const {{CommandName}}Cmd& cmd);
/third_party/rust/crates/clap/src/builder/
Dvalue_hint.rs44 CommandName, enumerator
85 "commandname" => ValueHint::CommandName, in from_str()
/third_party/rust/crates/clap/clap_complete/tests/snapshots/
Dvalue_terminator.ps15 Register-ArgumentCompleter -Native -CommandName 'my-app' -ScriptBlock {
Daliases.ps15 Register-ArgumentCompleter -Native -CommandName 'my-app' -ScriptBlock {
Dbasic.ps15 Register-ArgumentCompleter -Native -CommandName 'my-app' -ScriptBlock {
Dfeature_sample.ps15 Register-ArgumentCompleter -Native -CommandName 'my-app' -ScriptBlock {
Dvalue_hint.ps15 Register-ArgumentCompleter -Native -CommandName 'my-app' -ScriptBlock {
Dsub_subcommands.ps15 Register-ArgumentCompleter -Native -CommandName 'my-app' -ScriptBlock {
Dspecial_commands.ps15 Register-ArgumentCompleter -Native -CommandName 'my-app' -ScriptBlock {
Dquoting.ps15 Register-ArgumentCompleter -Native -CommandName 'my-app' -ScriptBlock {
/third_party/mesa3d/src/gallium/drivers/svga/svgadump/
Dsvga_dump.c1487 #define SVGA3D_DUMP_HEADER(CommandName) \ argument
1489 dump_SVGA3dCmdDX##CommandName(const SVGA3dCmdDX##CommandName *cmd)
2059 #define SVGA3D_DUMP_CASE_BASIC(CommandName, CommandCode) \ argument
2063 const SVGA3dCmdDX##CommandName *cmd = (const SVGA3dCmdDX##CommandName *)body; \
2064 dump_SVGA3dCmdDX##CommandName(cmd); \
2069 #define SVGA3D_DUMP_CASE_LIST(CommandName, CommandCode, ElementType) \ argument
2073 const SVGA3dCmdDX##CommandName *cmd = (const SVGA3dCmdDX##CommandName *)body; \
2074 dump_SVGA3dCmdDX##CommandName(cmd); \
/third_party/rust/crates/clap/clap_complete/examples/
Dcompletion.rs55 .value_hint(ValueHint::CommandName), in build_cli()
Dcompletion-derive.rs52 #[arg(long, value_hint = ValueHint::CommandName)]
/third_party/mesa3d/src/gallium/drivers/svga/
Dsvga_cmd_vgpu10.c81 #define SVGA3D_CREATE_COMMAND(CommandName, CommandCode) \ argument
82 SVGA3dCmdDX##CommandName *cmd; \
85 sizeof(SVGA3dCmdDX##CommandName), 0); \
90 #define SVGA3D_CREATE_CMD_COUNT(CommandName, CommandCode, ElementClassName) \ argument
91 SVGA3dCmdDX##CommandName *cmd; \
95 sizeof(SVGA3dCmdDX##CommandName) + \
/third_party/rust/crates/clap/clap_complete/src/shells/
Dfish.rs189 ValueHint::CommandString | ValueHint::CommandName => { in value_completion()
Dzsh.rs404 ValueHint::CommandName => "_command_names -e",
/third_party/rust/crates/clap/clap_complete/tests/
Dcommon.rs216 .value_hint(clap::ValueHint::CommandName), in value_hint_command()
/third_party/rust/crates/clap/clap_complete_fig/tests/
Dcommon.rs211 .value_hint(clap::ValueHint::CommandName), in value_hint_command()
/third_party/rust/crates/clap/clap_mangen/tests/
Dcommon.rs209 .value_hint(clap::ValueHint::CommandName), in value_hint_command()
/third_party/rust/crates/clap/clap_complete_fig/src/
Dfig.rs456 ValueHint::CommandString | ValueHint::CommandName | ValueHint::CommandWithArguments => { in gen_args()
/third_party/rust/crates/clap/clap_complete/src/
Ddynamic.rs467 clap::ValueHint::CommandName in complete_arg_value()