Lines Matching refs:other
1284 fn eq(&self, other: &Self) -> bool { in eq()
1285 PartialEq::eq(&**self, &**other) in eq()
1288 fn ne(&self, other: &Self) -> bool { in ne()
1289 PartialEq::ne(&**self, &**other) in ne()
1295 fn partial_cmp(&self, other: &Self) -> Option<Ordering> { in partial_cmp()
1296 PartialOrd::partial_cmp(&**self, &**other) in partial_cmp()
1299 fn lt(&self, other: &Self) -> bool { in lt()
1300 PartialOrd::lt(&**self, &**other) in lt()
1303 fn le(&self, other: &Self) -> bool { in le()
1304 PartialOrd::le(&**self, &**other) in le()
1307 fn ge(&self, other: &Self) -> bool { in ge()
1308 PartialOrd::ge(&**self, &**other) in ge()
1311 fn gt(&self, other: &Self) -> bool { in gt()
1312 PartialOrd::gt(&**self, &**other) in gt()
1318 fn cmp(&self, other: &Self) -> Ordering { in cmp()
1319 Ord::cmp(&**self, &**other) in cmp()
1916 fn clone_from(&mut self, other: &Self) { in clone_from()
1917 if self.len() == other.len() { in clone_from()
1918 self.clone_from_slice(&other); in clone_from()
1920 *self = other.clone(); in clone_from()