Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/asmjs/
Dasm-scanner.cc277 bool has_dot = ch == '.'; in ConsumeNumber() local
289 has_dot = true; in ConsumeNumber()
332 if (has_dot || trunc(double_value_) != double_value_) { in ConsumeNumber()
/third_party/rust/crates/proc-macro2/src/
Dparse.rs733 let mut has_dot = false; in float_digits() localVariable
742 if has_dot { in float_digits()
753 has_dot = true; in float_digits()
765 if !(has_dot || has_exp) { in float_digits()
770 let token_before_exp = if has_dot { in float_digits()
/third_party/rust/crates/syn/src/
Dlit.rs1576 let mut has_dot = false; in parse_lit_float() localVariable
1594 if has_e || has_dot { in parse_lit_float()
1597 has_dot = true; in parse_lit_float()