Lines Matching full:panics
447 /// # Panics
449 /// Panics if the new capacity exceeds `isize::MAX` bytes.
690 /// # Panics
692 /// Panics if the new capacity exceeds `isize::MAX` bytes.
1013 /// # Panics
1015 /// Panics if the new capacity exceeds `isize::MAX` bytes.
1043 /// # Panics
1045 /// Panics if the new capacity exceeds `isize::MAX` bytes.
1278 // were to panic once (if it panics twice, the program aborts). in truncate()
1549 /// # Panics
1551 /// Panics if `index` is out of bounds.
1592 /// # Panics
1594 /// Panics if `index > len`.
1655 /// # Panics
1657 /// Panics if `index` is out of bounds.
1909 /* This code gets executed when `same_bucket` panics */ in dedup_by()
1982 /// # Panics
1984 /// Panics if the new capacity exceeds `isize::MAX` bytes.
2107 /// # Panics
2109 /// Panics if the new capacity exceeds `isize::MAX` bytes.
2159 /// # Panics
2161 /// Panics if the starting point is greater than the end point or if
2235 // if an element's `Drop` impl panics, the vector's `Drop` impl will in clear()
2281 /// # Panics
2283 /// Panics if `at > len`.
2660 /// # Panics
2662 /// Panics if the starting point is greater than the end point or if
2699 /// # Panics
2701 /// Panics if the length of the resulting vector would overflow a `usize`.
2758 // Increment the length in every step in case clone() panics in extend_with()
2787 // Increment the length in every step in case clone() panics in try_extend_with()
3165 // Since the other branch already panics eagerly (via `reserve()`) we do the same here. in extend_trusted()
3220 /// # Panics
3222 /// Panics if the starting point is greater than the end point or if