Lines Matching defs:str

135     pub fn new(value: &str, span: Span) -> Self {  in new()
266 pub fn suffix(&self) -> &str { in suffix()
301 pub fn suffix(&self) -> &str { in suffix()
336 pub fn suffix(&self) -> &str { in suffix()
371 pub fn suffix(&self) -> &str { in suffix()
406 pub fn suffix(&self) -> &str { in suffix()
416 pub fn new(repr: &str, span: Span) -> Self { in new()
433 pub fn base10_digits(&self) -> &str { in base10_digits()
469 pub fn suffix(&self) -> &str { in suffix()
510 pub fn new(repr: &str, span: Span) -> Self { in new()
527 pub fn base10_digits(&self) -> &str { in base10_digits()
541 pub fn suffix(&self) -> &str { in suffix()
1220 pub fn suffix(&self) -> &str { in suffix()
1278 pub(crate) fn parse_lit_str(s: &str) -> (Box<str>, Box<str>) { in parse_lit_str()
1286 fn parse_lit_str_cooked(mut s: &str) -> (Box<str>, Box<str>) { in parse_lit_str_cooked()
1349 fn parse_lit_str_raw(mut s: &str) -> (Box<str>, Box<str>) { in parse_lit_str_raw()
1369 pub(crate) fn parse_lit_byte_str(s: &str) -> (Vec<u8>, Box<str>) { in parse_lit_byte_str()
1378 fn parse_lit_byte_str_cooked(mut s: &str) -> (Vec<u8>, Box<str>) { in parse_lit_byte_str_cooked()
1438 fn parse_lit_byte_str_raw(s: &str) -> (Vec<u8>, Box<str>) { in parse_lit_byte_str_raw()
1445 pub(crate) fn parse_lit_c_str(s: &str) -> (CString, Box<str>) { in parse_lit_c_str()
1454 fn parse_lit_c_str_cooked(mut s: &str) -> (CString, Box<str>) { in parse_lit_c_str_cooked()
1521 fn parse_lit_c_str_raw(s: &str) -> (CString, Box<str>) { in parse_lit_c_str_raw()
1528 pub(crate) fn parse_lit_byte(s: &str) -> (u8, Box<str>) { in parse_lit_byte()
1570 pub(crate) fn parse_lit_char(mut s: &str) -> (char, Box<str>) { in parse_lit_char()
1681 pub(crate) fn parse_lit_int(mut s: &str) -> Option<(Box<str>, Box<str>)> { in parse_lit_int()
1772 pub(crate) fn parse_lit_float(input: &str) -> Option<(Box<str>, Box<str>)> { in parse_lit_float()