Searched refs:split_first (Results 1 – 9 of 9) sorted by relevance
/external/rust/crates/url/src/ |
D | parser.rs | 261 fn split_first(&self) -> (Option<char>, Self) { in split_first() method 517 let (first_char, input_after_first_char) = input.split_first(); in parse_file() 521 let (next_char, input_after_next_char) = input_after_first_char.split_first(); in parse_file() 727 let (first_char, input_after_first_char) = input.split_first(); in parse_relative() 814 let remaining = match input.split_first() { in parse_relative() 907 if let (Some(c), _) = remaining.split_first() { in parse_userinfo() 1118 while let (Some(c), remaining) = input.split_first() { in parse_port() 1146 let (maybe_c, remaining) = input.split_first(); in parse_path_start()
|
/external/rust/crates/rayon-core/src/thread_pool/ |
D | test.rs | 275 if let Some((pool, tail)) = pools.split_first() { in nested_scopes() 311 if let Some((pool, tail)) = pools.split_first() { in nested_fifo_scopes()
|
/external/rust/crates/cexpr/src/ |
D | expr.rs | 421 match input.split_first() { in identifier() 445 match input.split_first() { in literal()
|
D | literal.rs | 120 match i.split_first() {
|
/external/rust/crates/form_urlencoded/src/ |
D | lib.rs | 131 if let Some((&first, tail)) = self.bytes.split_first() { in next()
|
/external/rust/crates/percent-encoding/ |
D | lib.rs | 250 if let Some((&first_byte, remaining)) = self.bytes.split_first() { in next()
|
/external/rust/crates/serde_test/src/ |
D | de.rs | 60 match self.tokens.split_first() { in next_token_opt() 70 match self.tokens.split_first() { in next_token()
|
D | ser.rs | 21 if let Some((&first, rest)) = self.tokens.split_first() { in next_token()
|
/external/rust/crates/proc-macro2/tests/ |
D | test.rs | 532 if let Some((&(sline, scol, eline, ecol), rest)) = lines.split_first() { in check_spans_internal()
|