Searched refs:me (Results 1 – 3 of 3) sorted by relevance
938 let mut me = ManuallyDrop::new(self); in into_raw_parts() localVariable939 (me.as_mut_ptr(), me.len(), me.capacity()) in into_raw_parts()982 let mut me = ManuallyDrop::new(self); in into_raw_parts_with_alloc() localVariable983 let len = me.len(); in into_raw_parts_with_alloc()984 let capacity = me.capacity(); in into_raw_parts_with_alloc()985 let ptr = me.as_mut_ptr(); in into_raw_parts_with_alloc()986 let alloc = unsafe { ptr::read(me.allocator()) }; in into_raw_parts_with_alloc()1220 let me = ManuallyDrop::new(self); in into_boxed_slice() localVariable1221 let buf = ptr::read(&me.buf); in into_boxed_slice()1222 let len = me.len(); in into_boxed_slice()[all …]
624 let mut me = self.to_vec(); in to_ascii_uppercase() localVariable625 me.make_ascii_uppercase(); in to_ascii_uppercase()626 me in to_ascii_uppercase()645 let mut me = self.to_vec(); in to_ascii_lowercase() localVariable646 me.make_ascii_lowercase(); in to_ascii_lowercase()647 me in to_ascii_lowercase()
169 let me = ManuallyDrop::new(self); in into_box() localVariable171 let slice = slice::from_raw_parts_mut(me.ptr() as *mut MaybeUninit<T>, len); in into_box()172 Box::from_raw_in(slice, ptr::read(&me.alloc)) in into_box()