/third_party/rust/crates/clap/clap_complete/src/shells/ |
H A D | shell.rs | 8 use crate::shells; 75 Shell::Bash => shells::Bash.file_name(name), in file_name() 76 Shell::Elvish => shells::Elvish.file_name(name), in file_name() 77 Shell::Fish => shells::Fish.file_name(name), in file_name() 78 Shell::PowerShell => shells::PowerShell.file_name(name), in file_name() 79 Shell::Zsh => shells::Zsh.file_name(name), in file_name() 85 Shell::Bash => shells::Bash.generate(cmd, buf), in generate() 86 Shell::Elvish => shells::Elvish.generate(cmd, buf), in generate() 87 Shell::Fish => shells::Fish.generate(cmd, buf), in generate() 88 Shell::PowerShell => shells in generate() [all...] |
/third_party/rust/crates/clap/clap_complete/tests/ |
H A D | powershell.rs | 9 clap_complete::shells::PowerShell, in basic() 21 clap_complete::shells::PowerShell, in feature_sample() 33 clap_complete::shells::PowerShell, in special_commands() 45 clap_complete::shells::PowerShell, in quoting() 57 clap_complete::shells::PowerShell, in aliases() 69 clap_complete::shells::PowerShell, in sub_subcommands() 81 clap_complete::shells::PowerShell, in value_hint() 93 clap_complete::shells::PowerShell, in value_terminator() 105 clap_complete::shells::PowerShell, in two_multi_valued_arguments()
|
H A D | elvish.rs | 9 clap_complete::shells::Elvish, in basic() 21 clap_complete::shells::Elvish, in feature_sample() 33 clap_complete::shells::Elvish, in special_commands() 45 clap_complete::shells::Elvish, in quoting() 57 clap_complete::shells::Elvish, in aliases() 69 clap_complete::shells::Elvish, in sub_subcommands() 81 clap_complete::shells::Elvish, in value_hint() 93 clap_complete::shells::Elvish, in value_terminator() 105 clap_complete::shells::Elvish, in two_multi_valued_arguments()
|
H A D | fish.rs | 9 clap_complete::shells::Fish, in basic() 21 clap_complete::shells::Fish, in feature_sample() 33 clap_complete::shells::Fish, in special_commands() 45 clap_complete::shells::Fish, in quoting() 57 clap_complete::shells::Fish, in aliases() 69 clap_complete::shells::Fish, in sub_subcommands() 81 clap_complete::shells::Fish, in value_hint() 93 clap_complete::shells::Fish, in value_terminator() 105 clap_complete::shells::Fish, in two_multi_valued_arguments()
|
H A D | zsh.rs | 9 clap_complete::shells::Zsh, in basic() 21 clap_complete::shells::Zsh, in feature_sample() 33 clap_complete::shells::Zsh, in special_commands() 45 clap_complete::shells::Zsh, in quoting() 57 clap_complete::shells::Zsh, in aliases() 69 clap_complete::shells::Zsh, in sub_subcommands() 81 clap_complete::shells::Zsh, in value_hint() 93 clap_complete::shells::Zsh, in value_terminator() 105 clap_complete::shells::Zsh, in two_multi_valued_arguments()
|
H A D | bash.rs | 9 clap_complete::shells::Bash, in basic() 21 clap_complete::shells::Bash, in feature_sample() 33 clap_complete::shells::Bash, in special_commands() 45 clap_complete::shells::Bash, in quoting() 57 clap_complete::shells::Bash, in aliases() 69 clap_complete::shells::Bash, in sub_subcommands() 81 clap_complete::shells::Bash, in value_hint() 93 clap_complete::shells::Bash, in value_terminator() 121 clap_complete::shells::Bash, in two_multi_valued_arguments()
|
/third_party/rust/crates/clap/clap_complete/src/ |
H A D | lib.rs | 66 pub mod shells; modules 71 pub use shells::Shell;
|
/third_party/curl/scripts/ |
H A D | completion.pl | 156 completion.pl - Generates tab-completion files for various shells
|
/third_party/python/Lib/test/ |
H A D | test_subprocess.py | 2321 shells = [] 2326 shells.append(sh) 2327 if not shells: # Will probably work for any shell but csh. 2332 shells.append(sh) 2333 for sh in shells:
|