Home
last modified time | relevance | path

Searched refs:ExponentUpper (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DNativeFormatting.cpp181 else if (Style == FloatStyle::ExponentUpper) in write_double()
190 if (Style == FloatStyle::Exponent || Style == FloatStyle::ExponentUpper) { in write_double()
199 if (Style == FloatStyle::ExponentUpper) in write_double()
210 if (Style == FloatStyle::ExponentUpper) in write_double()
259 case FloatStyle::ExponentUpper: in getDefaultPrecision()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DNativeFormatting.h17 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent }; enumerator
H A DFormatProviders.h309 S = FloatStyle::ExponentUpper;
/llvm-project-15.0.7/llvm/unittests/Support/
H A DNativeFormatTests.cpp100 EXPECT_EQ("1.100000E+00", format_number(1.1, FloatStyle::ExponentUpper)); in TEST()