Home
last modified time | relevance | path

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

/third_party/rust/crates/proc-macro2/src/
Dparse.rs734 let mut has_exp = false; in float_digits() localVariable
758 has_exp = true; in float_digits()
765 if !(has_dot || has_exp) { in float_digits()
769 if has_exp { in float_digits()
/third_party/rust/crates/syn/src/
Dlit.rs1509 let mut has_exp = false; in parse_lit_int() localVariable
1514 b'0'..=b'9' => has_exp = true, in parse_lit_int()
1517 if has_exp && crate::ident::xid_ok(suffix) { in parse_lit_int()
1525 if has_exp { in parse_lit_int()