Home
last modified time | relevance | path

Searched refs:pounds (Results 1 – 1 of 1) sorted by relevance

/linux/rust/syn/
H A Dlit.rs1353 let mut pounds = 0; in parse_lit_str_raw() localVariable
1354 while byte(s, pounds) == b'#' { in parse_lit_str_raw()
1355 pounds += 1; in parse_lit_str_raw()
1357 assert_eq!(byte(s, pounds), b'"'); in parse_lit_str_raw()
1359 for end in s[close + 1..close + 1 + pounds].bytes() { in parse_lit_str_raw()
1363 let content = s[pounds + 1..close].to_owned().into_boxed_str(); in parse_lit_str_raw()
1364 let suffix = s[close + 1 + pounds..].to_owned().into_boxed_str(); in parse_lit_str_raw()