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()
1496 /// # Panics
1498 /// Panics if `index` is out of bounds.
1539 /// # Panics
1541 /// Panics if `index > len`.
1602 /// # Panics
1604 /// Panics if `index` is out of bounds.
1856 /* This code gets executed when `same_bucket` panics */ in dedup_by()
1929 /// # Panics
1931 /// Panics if the new capacity exceeds `isize::MAX` bytes.
2054 /// # Panics
2056 /// Panics if the new capacity exceeds `isize::MAX` bytes.
2106 /// # Panics
2108 /// Panics if the starting point is greater than the end point or if
2182 // if an element's `Drop` impl panics, the vector's `Drop` impl will in clear()
2228 /// # Panics
2230 /// Panics if `at > len`.
2607 /// # Panics
2609 /// Panics if the starting point is greater than the end point or if
2646 /// # Panics
2648 /// Panics if the length of the resulting vector would overflow a `usize`.
2705 // Increment the length in every step in case clone() panics in extend_with()
2734 // Increment the length in every step in case clone() panics in try_extend_with()
3112 // Since the other branch already panics eagerly (via `reserve()`) we do the same here. in extend_trusted()
3167 /// # Panics
3169 /// Panics if the starting point is greater than the end point or if