Home
last modified time | relevance | path

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

/external/rust/crates/protobuf/src/reflect/
Druntime_type_box.rs3 use protobuf_support::lexer::float::parse_protobuf_float;
108 RuntimeType::F32 => parse_protobuf_float(value) in parse_proto_default_value()
111 RuntimeType::F64 => parse_protobuf_float(value) in parse_proto_default_value()
/external/rust/crates/protobuf-support/src/lexer/
Dfloat.rs29 pub fn parse_protobuf_float(s: &str) -> ProtobufFloatParseResult<f64> { in parse_protobuf_float() function
Dlexer_impl.rs625 let f = float::parse_protobuf_float(&self.input[pos..clone.pos])?; in next_token_inner()
/external/rust/crates/protobuf/2.27.1/src/text_format/lexer/
Dfloat.rs31 pub fn parse_protobuf_float(s: &str) -> ProtobufFloatParseResult<f64> { in parse_protobuf_float() function
Dlexer_impl.rs639 let f = float::parse_protobuf_float(&self.input[pos..clone.pos])?; in next_token_inner()
/external/rust/crates/protobuf-codegen/2.27.1/src/
Dfloat.rs37 pub fn parse_protobuf_float(s: &str) -> ProtobufFloatParseResult<f64> { in parse_protobuf_float() function
/external/rust/crates/protobuf-codegen/2.27.1/src/field/
Dmod.rs717 let f = float::parse_protobuf_float(proto_default) in defaut_value_from_proto_float()