Lines Matching refs:get
43 fn get(self, slice: *mut T) -> Option<*mut Self::Output>; in get() method
48 Self::get(self, slice).unwrap_or_else(|| build_error!()) in index()
62 fn get(self, slice: *mut [T; N]) -> Option<*mut Self::Output> { in get() function
63 <I as ProjectIndex<[T]>>::get(self, slice)
78 fn get(self, slice: *mut [T]) -> Option<*mut T> { in get() method
93 fn get(self, slice: *mut [T]) -> Option<*mut [T]> { in get() method
110 fn get(self, slice: *mut [T]) -> Option<*mut [T]> { in get() method
111 (0..self.end).get(slice) in get()
120 fn get(self, slice: *mut [T]) -> Option<*mut [T]> { in get() method
121 (self.start..slice.len()).get(slice) in get()
130 fn get(self, slice: *mut [T]) -> Option<*mut [T]> { in get() method
284 let $ptr = $crate::ptr::projection::ProjectIndex::get($index, $ptr)