Searched refs:split_at (Results 1 - 7 of 7) sorted by relevance
/third_party/rust/crates/memchr/src/memchr/ |
H A D | iter.rs | 15 $self_.haystack = $self_.haystack.split_at(index + 1).1; 27 $self_.haystack = $self_.haystack.split_at(index).0;
|
/third_party/rust/crates/os_str_bytes/src/ |
H A D | raw_str.rs | 547 /// Equivalent to [`str::split_at`]. 561 /// raw.split_at(2), 569 pub fn split_at(&self, mid: usize) -> (&Self, &Self) { in split_at() functions 572 let (prefix, suffix) = self.0.split_at(mid); in split_at() 1369 let (invalid, substring) = string.split_at(invalid_length); 1378 substring.split_at(error.valid_up_to());
|
/third_party/rust/crates/os_str_bytes/src/windows/wtf8/ |
H A D | string.rs | 48 let (substring, surrogate) = prefix.split_at(index);
|
/third_party/rust/crates/memchr/src/memmem/ |
H A D | twoway.rs | 446 let (u, v) = needle.split_at(critical_pos); in forward() 469 let (v, u) = needle.split_at(critical_pos); in reverse()
|
/third_party/rust/crates/rust-cexpr/tests/ |
H A D | clang.rs | 69 let (chr, rest) = split.split_at(6); in test_definition()
|
/third_party/rust/crates/serde/serde_derive/src/ |
H A D | de.rs | 1188 let (tagged, untagged) = variants.split_at(variant_idx); in deserialize_enum()
|
/third_party/rust/crates/memchr/bench/data/code/ |
H A D | rust-library.rs | 4503 let (a, b) = s.split_at(index); in test_split_at() 4507 let (a, b) = s.split_at(s.len()); in test_split_at() 4527 s.split_at(1); in test_split_at_boundscheck() 22794 let (init, tail) = self.split_at(target.len()); in clone_into() 40241 fn split_at(self, i: usize) -> (Self, Self); split_at() functions 40260 fn split_at(self, i: usize) -> (Self, Self) { split_at() functions 40269 fn split_at(self, i: usize) -> (Self, Self) { split_at() functions 40282 fn split_at(self, mid: usize) -> (Self, Self) { split_at() functions [all...] |
Completed in 52 milliseconds