Lines Matching refs:Box

61         repr: Box<LitRepr>,
68 repr: Box<LitRepr>,
75 repr: Box<LitRepr>,
82 repr: Box<LitRepr>,
89 repr: Box<LitRepr>,
95 suffix: Box<str>,
101 repr: Box<LitIntRepr>,
107 digits: Box<str>,
108 suffix: Box<str>,
116 repr: Box<LitFloatRepr>,
122 digits: Box<str>,
123 suffix: Box<str>,
139 repr: Box::new(LitRepr { in new()
141 suffix: Box::<str>::default(), in new()
280 repr: Box::new(LitRepr { in new()
282 suffix: Box::<str>::default(), in new()
315 repr: Box::new(LitRepr { in new()
317 suffix: Box::<str>::default(), in new()
350 repr: Box::new(LitRepr { in new()
352 suffix: Box::<str>::default(), in new()
385 repr: Box::new(LitRepr { in new()
387 suffix: Box::<str>::default(), in new()
425 repr: Box::new(LitIntRepr { in new()
491 repr: Box::new(LitIntRepr { in from()
519 repr: Box::new(LitFloatRepr { in new()
563 repr: Box::new(LitFloatRepr { in from()
913 repr: Box::new(LitIntRepr { in parse_negative_lit()
928 repr: Box::new(LitFloatRepr { in parse_negative_lit()
1148 repr: Box::new(LitRepr { token, suffix }), in new()
1156 repr: Box::new(LitRepr { token, suffix }), in new()
1163 repr: Box::new(LitRepr { token, suffix }), in new()
1172 repr: Box::new(LitRepr { token, suffix }), in new()
1179 repr: Box::new(LitRepr { token, suffix }), in new()
1186 repr: Box::new(LitIntRepr { in new()
1196 repr: Box::new(LitFloatRepr { in new()
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()