OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EMIT_TRAILING_ZERO_AFTER_POINT
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
double-conversion.h
59
EMIT_TRAILING_ZERO_AFTER_POINT
= 4,
70
// -
EMIT_TRAILING_ZERO_AFTER_POINT
: in addition to a trailing decimal point
104
//
EMIT_TRAILING_ZERO_AFTER_POINT
flag is counted for this limit.
108
// ToPrecision(230.0, 2) -> "2.3e2" with
EMIT_TRAILING_ZERO_AFTER_POINT
.
130
!((flags &
EMIT_TRAILING_ZERO_AFTER_POINT
) != 0));
176
// the EMIT_TRAILING_DECIMAL_POINT and
EMIT_TRAILING_ZERO_AFTER_POINT
.
178
// let EMIT_TRAILING_DECIMAL_POINT and
EMIT_TRAILING_ZERO_AFTER_POINT
be
243
//
EMIT_TRAILING_ZERO_AFTER_POINT
flag is counted for this limit.
247
// ToPrecision(230.0, 2) -> "2.3e2" with
EMIT_TRAILING_ZERO_AFTER_POINT
.
249
//
EMIT_TRAILING_ZERO_AFTER_POINT
[
all
...]
double-conversion.cc
158
if ((flags_ &
EMIT_TRAILING_ZERO_AFTER_POINT
) != 0) {
318
int extra_zero = ((flags_ &
EMIT_TRAILING_ZERO_AFTER_POINT
) != 0) ? 1 : 0;
Completed in 180 milliseconds