Home | History | Annotate | Download | only in test

Lines Matching refs:NormalizeExponentInFloatString

463 std::string NormalizeExponentInFloatString(std::string in) {
485 EXPECT_THAT(NormalizeExponentInFloatString(""), Eq(""));
486 EXPECT_THAT(NormalizeExponentInFloatString("1e-12"), Eq("1e-12"));
487 EXPECT_THAT(NormalizeExponentInFloatString("1E+14"), Eq("1e+14"));
488 EXPECT_THAT(NormalizeExponentInFloatString("1e-0012"), Eq("1e-12"));
489 EXPECT_THAT(NormalizeExponentInFloatString("1.263E+014"), Eq("1.263e+14"));
496 NormalizeExponentInFloatString(EncodeViaFloatProxy(GetParam().first)),
502 NormalizeExponentInFloatString(EncodeViaFloatProxy(GetParam().first)),