Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/rust/topshim/macros/src/
Dlib.rs14 arg_pairs: Vec<(Type, Option<Type>)>, field
29 let mut arg_pairs: Vec<(Type, Option<Type>)> = Vec::new(); in parse() localVariable
57 arg_pairs.push((start_type, None)); in parse()
60 arg_pairs.push((start_type, Some(end_type))); in parse()
63 arg_pairs.push((start_type.clone(), Some(start_type))); in parse()
68 Ok(CbVariant { dispatcher, fn_pair: (name, rpath), arg_pairs, stmts }) in parse()
102 for (i, (start, end)) in parsed_cptr.arg_pairs.iter().enumerate() { in cb_variant()