OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kMaxFixedDigitsAfterPoint
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
double-conversion.h
40
// or a requested_digits parameter >
kMaxFixedDigitsAfterPoint
then the
43
static const int
kMaxFixedDigitsAfterPoint
= 60;
191
// - 'requested_digits' >
kMaxFixedDigitsAfterPoint
.
193
// 1 + kMaxFixedDigitsBeforePoint + 1 +
kMaxFixedDigitsAfterPoint
characters
double-conversion.cc
210
if (requested_digits >
kMaxFixedDigitsAfterPoint
) return false;
218
kMaxFixedDigitsBeforePoint +
kMaxFixedDigitsAfterPoint
+ 1;
Completed in 484 milliseconds