Home
last modified time | relevance | path

Searched refs:first_char_pos (Results 1 – 5 of 5) sorted by relevance

/third_party/icu/icu4c/source/i18n/
Ddouble-conversion-double-to-string.cpp115 int first_char_pos = kMaxExponentLength;
117 buffer[--first_char_pos] = '0';
120 buffer[--first_char_pos] = '0' + (exponent % 10);
126 while(kMaxExponentLength - first_char_pos < std::min(min_exponent_width_, kMaxExponentLength)) {
127 buffer[--first_char_pos] = '0';
129 result_builder->AddSubstring(&buffer[first_char_pos],
130 kMaxExponentLength - first_char_pos);
/third_party/icu/vendor/double-conversion/upstream/double-conversion/
Ddouble-to-string.cc100 int first_char_pos = kMaxExponentLength; in CreateExponentialRepresentation() local
102 buffer[--first_char_pos] = '0'; in CreateExponentialRepresentation()
105 buffer[--first_char_pos] = '0' + (exponent % 10); in CreateExponentialRepresentation()
111 while(kMaxExponentLength - first_char_pos < std::min(min_exponent_width_, kMaxExponentLength)) { in CreateExponentialRepresentation()
112 buffer[--first_char_pos] = '0'; in CreateExponentialRepresentation()
114 result_builder->AddSubstring(&buffer[first_char_pos], in CreateExponentialRepresentation()
115 kMaxExponentLength - first_char_pos); in CreateExponentialRepresentation()
/third_party/node/deps/icu-small/source/i18n/
Ddouble-conversion-double-to-string.cpp115 int first_char_pos = kMaxExponentLength;
117 buffer[--first_char_pos] = '0';
120 buffer[--first_char_pos] = '0' + (exponent % 10);
126 while(kMaxExponentLength - first_char_pos < std::min(min_exponent_width_, kMaxExponentLength)) {
127 buffer[--first_char_pos] = '0';
129 result_builder->AddSubstring(&buffer[first_char_pos],
130 kMaxExponentLength - first_char_pos);
/third_party/skia/third_party/externals/icu/source/i18n/
Ddouble-conversion-double-to-string.cpp115 int first_char_pos = kMaxExponentLength;
117 buffer[--first_char_pos] = '0';
120 buffer[--first_char_pos] = '0' + (exponent % 10);
126 while(kMaxExponentLength - first_char_pos < std::min(min_exponent_width_, kMaxExponentLength)) {
127 buffer[--first_char_pos] = '0';
129 result_builder->AddSubstring(&buffer[first_char_pos],
130 kMaxExponentLength - first_char_pos);
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Ddouble-conversion.cpp118 int first_char_pos = kMaxExponentLength;
120 buffer[--first_char_pos] = '0' + (exponent % 10);
123 result_builder->AddSubstring(&buffer[first_char_pos],
124 kMaxExponentLength - first_char_pos);