Searched refs:VecMap (Results 1 – 13 of 13) sorted by relevance
/external/rust/crates/clap/src/ |
D | map.rs | 2 pub use vec_map::{Values, VecMap}; 5 pub use self::vec_map::{Values, VecMap}; 14 pub struct VecMap<V> { struct 18 impl<V> VecMap<V> { impl 20 VecMap { in new()
|
D | usage_parser.rs | 4 use map::VecMap; 106 let mut v = VecMap::new(); in name()
|
/external/rust/crates/clap/src/args/arg_builder/ |
D | valued.rs | 4 use map::VecMap; 15 pub val_names: Option<VecMap<&'b str>>, 23 pub default_vals_ifs: Option<VecMap<(&'a str, Option<&'b OsStr>, &'b OsStr)>>,
|
D | positional.rs | 11 use map::{self, VecMap}; 153 fn val_names(&self) -> Option<&VecMap<&'e str>> { in val_names() 240 use map::VecMap; 261 let mut vm = VecMap::new(); in display_val_names() 273 let mut vm = VecMap::new(); in display_val_names_req()
|
D | option.rs | 10 use map::{self, VecMap}; 132 fn val_names(&self) -> Option<&VecMap<&'e str>> { in val_names() 231 use map::VecMap; 244 let mut v_names = VecMap::new(); in optbuilder_display2() 257 let mut v_names = VecMap::new(); in optbuilder_display3()
|
D | flag.rs | 11 use map::{self, VecMap}; 94 fn val_names(&self) -> Option<&VecMap<&'e str>> { in val_names()
|
/external/rust/crates/clap/src/args/ |
D | any_arg.rs | 8 use map::{self, VecMap}; 32 fn val_names(&self) -> Option<&VecMap<&'e str>>; in val_names() 107 fn val_names(&self) -> Option<&VecMap<&'e str>> { in val_names()
|
D | arg.rs | 11 use map::VecMap; 3112 let mut vm = VecMap::new(); in value_names() 3173 let mut vm = VecMap::new(); in value_name() 3376 let mut vm = VecMap::new(); in default_value_if_os()
|
/external/rust/crates/clap/src/app/ |
D | help.rs | 16 use map::VecMap; 244 let mut ord_m = VecMap::new(); in write_args() 662 let mut ord_m = VecMap::new(); in write_subcommands()
|
D | mod.rs | 29 use map::{self, VecMap}; 1820 fn val_names(&self) -> Option<&VecMap<&'e str>> { in val_names()
|
D | parser.rs | 35 use map::{self, VecMap}; 66 pub positionals: VecMap<PosBuilder<'a, 'b>>,
|
/external/rust/crates/clap/ |
D | README.md | 367 * **"vec_map"**: Use [`VecMap`](https://crates.io/crates/vec_map) internally instead of a [`BTreeMa…
|
D | CHANGELOG.md | 590 * changes internal use of `VecMap` to `Vec` for matched values of `Arg`s ([22bf137a](https://gith… 1772 …* changes BTreeMap to VecMap in some instances ([64b921d0](https://github.com/kbknapp/clap-rs/com…
|