Searched refs:Subcommand (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/clang/tools/clang-refactor/ |
D | ClangRefactor.cpp | 223 cl::OptionCategory &Category, cl::SubCommand &Subcommand, in CommandLineRefactoringOptionCreator() argument 225 : Category(Category), Subcommand(Subcommand), Options(Options) {} in CommandLineRefactoringOptionCreator() 242 cl::cat(Category), cl::sub(Subcommand)); in create() 248 cl::SubCommand &Subcommand; member in __anon62a38a960111::CommandLineRefactoringOptionCreator 373 auto Subcommand = getSelectedSubcommand(); in Init() local 374 if (!Subcommand) in Init() 375 return Subcommand.takeError(); in Init() 376 auto Rule = getMatchingRule(**Subcommand); in Init() 380 SelectedSubcommand = *Subcommand; in Init() 518 void logInvocation(RefactoringActionSubcommand &Subcommand, in logInvocation() argument [all …]
|
/external/rust/crates/structopt-derive/src/ |
D | attrs.rs | 25 Subcommand(Sp<Ty>), enumerator 282 Subcommand(ident) => { in push_attrs() 284 let kind = Sp::new(Kind::Subcommand(ty), ident.span()); in push_attrs() 416 Kind::Subcommand(_) => abort!(res.kind.span(), "subcommand is only allowed on fields"), in from_struct() 462 Kind::Subcommand(_) => { in from_field() 493 res.kind = Sp::new(Kind::Subcommand(ty), res.kind.span()); in from_field()
|
D | parse.rs | 18 Subcommand(Ident), enumerator 171 "subcommand" => Ok(Subcommand(name)), in parse()
|
D | lib.rs | 77 if let Kind::Subcommand(ty) = &*kind { in gen_augmentation() 126 Kind::Subcommand(_) | Kind::Skip(_) => None, in gen_augmentation() 270 Kind::Subcommand(ty) => { in gen_constructor()
|
/external/llvm-project/llvm/tools/llvm-lto2/ |
D | llvm-lto2.cpp | 473 StringRef Subcommand = argv[1]; in main() local 476 if (Subcommand == "dump-symtab") in main() 478 if (Subcommand == "run") in main()
|
/external/rust/crates/structopt/ |
D | CHANGELOG.md | 511 * Subcommand support by [@williamyaoh](https://github.com/williamyaoh)
|
/external/rust/crates/clap/ |
D | CHANGELOG.md | 732 * **Help Subcommand:** fixes a bug where the help subcommand couldn't be overriden ([d34ec3e0](htt… 1130 * **Help Subcommand:** fixes misleading usage string when using multi-level subcommmands ([e203515… 1338 * **Subcommand Aliases**: fixes lifetime issue when setting multiple aliases at once ([ac42f6cf0](h… 1459 * **Help Subcommand:** fixes issue where help and version flags weren't properly displayed ([205b0… 1491 * **Help Subcommand:** adds support passing additional subcommands to help subcommand ([2c12757b](…
|