Lines Matching refs:with_value
69 .with_value(&2usize) in fields()
70 .and(expect::field("arg2").with_value(&false)) in fields()
71 .and(expect::field("arg3").with_value(&"Cool".to_string())) in fields()
81 .with_value(&3usize) in fields()
82 .and(expect::field("arg2").with_value(&true)) in fields()
83 .and(expect::field("arg3").with_value(&"Still Cool".to_string())) in fields()
129 .with_fields(expect::field("arg1").with_value(&2usize).only()), in skip()
137 .with_fields(expect::field("arg1").with_value(&3usize).only()), in skip()
176 .with_value(&format_args!("Foo")) in generics()
177 .and(expect::field("arg2").with_value(&format_args!("false"))), in generics()
209 .with_value(&format_args!("Foo")) in methods()
210 .and(expect::field("arg1").with_value(&42usize)), in methods()
239 .with_fields(expect::field("x").with_value(&10usize).only()), in impl_trait_return_type()