Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Unified Diff: runtime/vm/double_conversion.cc

Issue 2481873005: clang-format runtime/vm (Closed)
Patch Set: Merge Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/disassembler_x64.cc ('k') | runtime/vm/double_internals.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/double_conversion.cc
diff --git a/runtime/vm/double_conversion.cc b/runtime/vm/double_conversion.cc
index cb3c0476616b1c513004c0147f3c1af0fa3a995a..4490d5faf0ab5762fad45294f2234d3ee6c82eeb 100644
--- a/runtime/vm/double_conversion.cc
+++ b/runtime/vm/double_conversion.cc
@@ -34,16 +34,14 @@ void DoubleToCString(double d, char* buffer, int buffer_size) {
static const int kConversionFlags =
double_conversion::DoubleToStringConverter::EMIT_POSITIVE_EXPONENT_SIGN |
double_conversion::DoubleToStringConverter::EMIT_TRAILING_DECIMAL_POINT |
- double_conversion::DoubleToStringConverter::EMIT_TRAILING_ZERO_AFTER_POINT;
+ double_conversion::DoubleToStringConverter::
+ EMIT_TRAILING_ZERO_AFTER_POINT;
const double_conversion::DoubleToStringConverter converter(
- kConversionFlags,
- kDoubleToStringCommonInfinitySymbol,
- kDoubleToStringCommonNaNSymbol,
- kDoubleToStringCommonExponentChar,
- kDecimalLow,
- kDecimalHigh,
- 0, 0); // Last two values are ignored in shortest mode.
+ kConversionFlags, kDoubleToStringCommonInfinitySymbol,
+ kDoubleToStringCommonNaNSymbol, kDoubleToStringCommonExponentChar,
+ kDecimalLow, kDecimalHigh, 0,
+ 0); // Last two values are ignored in shortest mode.
double_conversion::StringBuilder builder(buffer, buffer_size);
bool status = converter.ToShortest(d, &builder);
@@ -80,11 +78,9 @@ RawString* DoubleToStringAsFixed(double d, int fraction_digits) {
fraction_digits <= kMaxFractionDigits);
const double_conversion::DoubleToStringConverter converter(
- kConversionFlags,
- kDoubleToStringCommonInfinitySymbol,
- kDoubleToStringCommonNaNSymbol,
- kDoubleToStringCommonExponentChar,
- 0, 0, 0, 0); // Last four values are ignored in fixed mode.
+ kConversionFlags, kDoubleToStringCommonInfinitySymbol,
+ kDoubleToStringCommonNaNSymbol, kDoubleToStringCommonExponentChar, 0, 0,
+ 0, 0); // Last four values are ignored in fixed mode.
char* buffer = Thread::Current()->zone()->Alloc<char>(kBufferSize);
buffer[kBufferSize - 1] = '\0';
@@ -113,11 +109,9 @@ RawString* DoubleToStringAsExponential(double d, int fraction_digits) {
fraction_digits <= kMaxFractionDigits);
const double_conversion::DoubleToStringConverter converter(
- kConversionFlags,
- kDoubleToStringCommonInfinitySymbol,
- kDoubleToStringCommonNaNSymbol,
- kDoubleToStringCommonExponentChar,
- 0, 0, 0, 0); // Last four values are ignored in exponential mode.
+ kConversionFlags, kDoubleToStringCommonInfinitySymbol,
+ kDoubleToStringCommonNaNSymbol, kDoubleToStringCommonExponentChar, 0, 0,
+ 0, 0); // Last four values are ignored in exponential mode.
char* buffer = Thread::Current()->zone()->Alloc<char>(kBufferSize);
buffer[kBufferSize - 1] = '\0';
@@ -145,18 +139,16 @@ RawString* DoubleToStringAsPrecision(double d, int precision) {
// plus the \0.
// Note that padding and exponent are exclusive. We still add them up.
ASSERT(kBufferSize >= 1 + 1 + 1 + kMaxLeadingPaddingZeroes +
- kMaxTrailingPaddingZeroes + kMaxPrecisionDigits + 1 + 1 + 3 + 1);
+ kMaxTrailingPaddingZeroes + kMaxPrecisionDigits +
+ 1 + 1 + 3 + 1);
ASSERT(kMinPrecisionDigits <= precision && precision <= kMaxPrecisionDigits);
const double_conversion::DoubleToStringConverter converter(
- kConversionFlags,
- kDoubleToStringCommonInfinitySymbol,
- kDoubleToStringCommonNaNSymbol,
- kDoubleToStringCommonExponentChar,
- 0, 0, // Ignored in precision mode.
- kMaxLeadingPaddingZeroes,
- kMaxTrailingPaddingZeroes);
+ kConversionFlags, kDoubleToStringCommonInfinitySymbol,
+ kDoubleToStringCommonNaNSymbol, kDoubleToStringCommonExponentChar, 0,
+ 0, // Ignored in precision mode.
+ kMaxLeadingPaddingZeroes, kMaxTrailingPaddingZeroes);
char* buffer = Thread::Current()->zone()->Alloc<char>(kBufferSize);
buffer[kBufferSize - 1] = '\0';
@@ -173,16 +165,12 @@ bool CStringToDouble(const char* str, intptr_t length, double* result) {
}
double_conversion::StringToDoubleConverter converter(
- double_conversion::StringToDoubleConverter::NO_FLAGS,
- 0.0,
- 0.0,
- kDoubleToStringCommonInfinitySymbol,
- kDoubleToStringCommonNaNSymbol);
+ double_conversion::StringToDoubleConverter::NO_FLAGS, 0.0, 0.0,
+ kDoubleToStringCommonInfinitySymbol, kDoubleToStringCommonNaNSymbol);
int parsed_count = 0;
- *result = converter.StringToDouble(str,
- static_cast<int>(length),
- &parsed_count);
+ *result =
+ converter.StringToDouble(str, static_cast<int>(length), &parsed_count);
return (parsed_count == length);
}
« no previous file with comments | « runtime/vm/disassembler_x64.cc ('k') | runtime/vm/double_internals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698