Home
last modified time | relevance | path

Searched refs:get_occurrences (Results 1 – 5 of 5) sorted by relevance

/external/rust/crates/clap/3.2.23/src/parser/
Dvalidator.rs337 ma.get_occurrences() in validate_arg_num_occurs()
341 if ma.get_occurrences() > 1 && !a.is_multiple_occurrences_set() && !a.is_positional() { in validate_arg_num_occurs()
356 let occurs = ma.get_occurrences() as usize; in validate_arg_num_occurs()
/external/rust/crates/clap_derive/src/derives/
Dargs.rs645 let get_occurrences = quote_spanned!(span=> remove_occurrences::<#convert_type>); in gen_parsers() localVariable
694 #arg_matches.#get_occurrences(#id) in gen_parsers()
700 #arg_matches.#get_occurrences(#id) in gen_parsers()
/external/rust/crates/clap/3.2.23/src/parser/matches/
Dmatched_arg.rs81 pub(crate) fn get_occurrences(&self) -> u64 { in get_occurrences() method
Darg_matches.rs747 .map_or(0, |a| a.get_occurrences()) in occurrences_of()
/external/rust/crates/clap/src/parser/matches/
Darg_matches.rs249 pub fn get_occurrences<T: Any + Clone + Send + Sync + 'static>( in get_occurrences() method