Lines Matching defs:or

34     let or = OwningRef::new(v);  localVariable
35 let or = or.map(|v| &v[1..3]); localVariable
92 let or = BoxRef::new(Box::new(foo)).map(|foo| { localVariable
1172 let or: OwningRef<Box<()>, ()> = OwningRef::new(Box::new(())); in new_deref() localVariable
1178 let or: OwningRef<Box<()>, ()> = Box::new(()).into(); in into() localVariable
1184 let or: BoxRef<Example> = Box::new(example()).into(); in map_offset_ref() localVariable
1185 let or: BoxRef<_, u32> = or.map(|x| &x.0); in map_offset_ref() localVariable
1188 let or: BoxRef<Example> = Box::new(example()).into(); in map_offset_ref() localVariable
1189 let or: BoxRef<_, u8> = or.map(|x| &x.2[1]); in map_offset_ref() localVariable
1195 let or: BoxRef<Example> = Box::new(example()).into(); in map_heap_ref() localVariable
1196 let or: BoxRef<_, str> = or.map(|x| &x.1[..5]); in map_heap_ref() localVariable
1202 let or: BoxRef<()> = Box::new(()).into(); in map_static_ref() localVariable
1203 let or: BoxRef<_, str> = or.map(|_| "hello"); in map_static_ref() localVariable
1209 let or: BoxRef<String> = Box::new(example().1).into(); in map_chained() localVariable
1210 let or: BoxRef<_, str> = or.map(|x| &x[1..5]); in map_chained() localVariable
1211 let or: BoxRef<_, str> = or.map(|x| &x[..2]); in map_chained() localVariable
1217 let or = BoxRef::new(Box::new(example().1)) in map_chained_inference() localVariable
1225 let or: BoxRef<String> = Box::new(example().1).into(); in owner() localVariable
1226 let or = or.map(|x| &x[..5]); in owner() localVariable
1233 let or: BoxRef<String> = Box::new(example().1).into(); in into_inner() localVariable
1234 let or = or.map(|x| &x[..5]); in into_inner() localVariable
1242 let or: BoxRef<String> = Box::new(example().1).into(); in fmt_debug() localVariable
1243 let or = or.map(|x| &x[..5]); in fmt_debug() localVariable
1548 let or: OwningRefMut<Box<()>, ()> = OwningRefMut::new(Box::new(())); in new_deref() localVariable
1554 let mut or: OwningRefMut<Box<()>, ()> = OwningRefMut::new(Box::new(())); in new_deref_mut() localVariable
1560 let mut or: OwningRefMut<Box<usize>, usize> = OwningRefMut::new(Box::new(0)); in mutate() localVariable
1568 let or: OwningRefMut<Box<()>, ()> = Box::new(()).into(); in into() localVariable
1574 let or: BoxRefMut<Example> = Box::new(example()).into(); in map_offset_ref() localVariable
1575 let or: BoxRef<_, u32> = or.map(|x| &mut x.0); in map_offset_ref() localVariable
1578 let or: BoxRefMut<Example> = Box::new(example()).into(); in map_offset_ref() localVariable
1579 let or: BoxRef<_, u8> = or.map(|x| &mut x.2[1]); in map_offset_ref() localVariable
1585 let or: BoxRefMut<Example> = Box::new(example()).into(); in map_heap_ref() localVariable
1586 let or: BoxRef<_, str> = or.map(|x| &mut x.1[..5]); in map_heap_ref() localVariable
1592 let or: BoxRefMut<()> = Box::new(()).into(); in map_static_ref() localVariable
1593 let or: BoxRef<_, str> = or.map(|_| "hello"); in map_static_ref() localVariable
1599 let or: BoxRefMut<Example> = Box::new(example()).into(); in map_mut_offset_ref() localVariable
1600 let or: BoxRefMut<_, u32> = or.map_mut(|x| &mut x.0); in map_mut_offset_ref() localVariable
1603 let or: BoxRefMut<Example> = Box::new(example()).into(); in map_mut_offset_ref() localVariable
1604 let or: BoxRefMut<_, u8> = or.map_mut(|x| &mut x.2[1]); in map_mut_offset_ref() localVariable
1610 let or: BoxRefMut<Example> = Box::new(example()).into(); in map_mut_heap_ref() localVariable
1611 let or: BoxRefMut<_, str> = or.map_mut(|x| &mut x.1[..5]); in map_mut_heap_ref() localVariable
1621 let or: BoxRefMut<()> = Box::new(()).into(); in map_mut_static_ref() localVariable
1622 let or: BoxRefMut<_, [u8]> = or.map_mut(move |_| mut_s); in map_mut_static_ref() localVariable
1628 let or: BoxRefMut<String> = Box::new(example().1).into(); in map_mut_chained() localVariable
1629 let or: BoxRefMut<_, str> = or.map_mut(|x| &mut x[1..5]); in map_mut_chained() localVariable
1630 let or: BoxRefMut<_, str> = or.map_mut(|x| &mut x[..2]); in map_mut_chained() localVariable
1636 let or = BoxRefMut::new(Box::new(example().1)) in map_chained_inference() localVariable
1644 let or: BoxRefMut<String> = Box::new(example().1).into(); in try_map_mut() localVariable
1645 let or: Result<BoxRefMut<_, str>, ()> = or.try_map_mut(|x| Ok(&mut x[1..5])); in try_map_mut() localVariable
1648 let or: BoxRefMut<String> = Box::new(example().1).into(); in try_map_mut() localVariable
1649 let or: Result<BoxRefMut<_, str>, ()> = or.try_map_mut(|_| Err(())); in try_map_mut() localVariable
1655 let or: BoxRefMut<String> = Box::new(example().1).into(); in owner() localVariable
1656 let or = or.map_mut(|x| &mut x[..5]); in owner() localVariable
1663 let or: BoxRefMut<String> = Box::new(example().1).into(); in into_inner() localVariable
1664 let or = or.map_mut(|x| &mut x[..5]); in into_inner() localVariable
1672 let or: BoxRefMut<String> = Box::new(example().1).into(); in fmt_debug() localVariable
1673 let or = or.map_mut(|x| &mut x[..5]); in fmt_debug() localVariable
1862 let or: BoxRefMut<()> = Box::new(()).into(); in into_owning_ref() localVariable
1863 let or: BoxRef<()> = or.into(); in into_owning_ref() localVariable