HomeSort by relevance Sort by last modified time
    Searched refs:decimal_point (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/
decimal_point.pass.cpp 14 // charT decimal_point() const;
58 assert(f.decimal_point() == std::numeric_limits<char>::max());
62 assert(f.decimal_point() == std::numeric_limits<char>::max());
66 assert(f.decimal_point() == std::numeric_limits<wchar_t>::max());
70 assert(f.decimal_point() == std::numeric_limits<wchar_t>::max());
75 assert(f.decimal_point() == '.');
79 assert(f.decimal_point() == '.');
83 assert(f.decimal_point() == L'.');
87 assert(f.decimal_point() == L'.');
92 assert(f.decimal_point() == ',')
    [all...]
  /external/v8/src/
fixed-dtoa.h 42 // decimal_point = -2.
44 // FastFixedDtoa(0.15, 2, ...) thus returns buffer = "2", decimal_point = 0.
51 Vector<char> buffer, int* length, int* decimal_point);
conversions.cc 75 int decimal_point; local
83 &sign, &length, &decimal_point);
87 if (length <= decimal_point && decimal_point <= 21) {
90 builder.AddPadding('0', decimal_point - length);
92 } else if (0 < decimal_point && decimal_point <= 21) {
94 builder.AddSubstring(decimal_rep, decimal_point);
96 builder.AddString(decimal_rep + decimal_point);
98 } else if (decimal_point <= 0 && decimal_point > -6)
166 int decimal_point; local
259 int decimal_point; local
305 int decimal_point; local
    [all...]
fast-dtoa.h 79 int* decimal_point);
bignum-dtoa.cc 65 // Returns decimal_point s.t.
66 // v = numerator'/denominator' * 10^(decimal_point-1)
70 int* decimal_point,
80 static void BignumToFixed(int requested_digits, int* decimal_point,
86 // decimal_point when rounding up (for example for 0.9999).
87 static void GenerateCountedDigits(int count, int* decimal_point,
93 Vector<char> buffer, int* length, int* decimal_point) {
113 *decimal_point = -requested_digits;
131 FixupMultiply10(estimated_power, is_even, decimal_point,
134 // We now have v = (numerator / denominator) * 10^(decimal_point-1), an
    [all...]
fixed-dtoa.cc 194 static void RoundUp(Vector<char> buffer, int* length, int* decimal_point) {
198 *decimal_point = 1;
219 (*decimal_point)++;
237 int* length, int* decimal_point) {
267 RoundUp(buffer, length, decimal_point);
286 RoundUp(buffer, length, decimal_point);
294 static void TrimZeros(Vector<char> buffer, int* length, int* decimal_point) {
307 *decimal_point -= first_non_zero;
316 int* decimal_point) {
367 *decimal_point = *length
    [all...]
  /external/v8/test/cctest/
gay-fixed.h 38 int decimal_point; member in struct:v8::internal::PrecomputedFixed
gay-precision.h 38 int decimal_point; member in struct:v8::internal::PrecomputedPrecision
gay-shortest.h 37 int decimal_point; member in struct:v8::internal::PrecomputedShortest
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/facet.numpunct/locale.numpunct/facet.numpunct.members/
decimal_point.pass.cpp 14 // char_type decimal_point() const;
25 assert(np.decimal_point() == '.');
30 assert(np.decimal_point() == L'.');
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/
decimal_point.pass.cpp 14 // char_type decimal_point() const;
28 assert(np.decimal_point() == '.');
33 assert(np.decimal_point() == L'.');
41 assert(np.decimal_point() == '.');
46 assert(np.decimal_point() == L'.');
54 assert(np.decimal_point() == ',');
59 assert(np.decimal_point() == L',');
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/
decimal_point.pass.cpp 14 // charT decimal_point() const;
61 assert(f.decimal_point() == std::numeric_limits<char>::max());
65 assert(f.decimal_point() == std::numeric_limits<char>::max());
69 assert(f.decimal_point() == std::numeric_limits<wchar_t>::max());
73 assert(f.decimal_point() == std::numeric_limits<wchar_t>::max());
  /external/stlport/test/unit/
num_facets_test.cpp 16 const char *decimal_point; member in struct:ref_locale
21 //{ name, decimal_point, thousands_sepy_thousands_sep},
38 CPPUNIT_ASSERT( npct.decimal_point() == *rl.decimal_point );
50 ref += npct.decimal_point();
57 ref += npct.decimal_point();
242 CPPUNIT_CHECK( cfacet_byname.decimal_point() == cfacet.decimal_point() );
  /ndk/tests/device/test-gnustl-full/unit/
num_facets_test.cpp 16 const char *decimal_point; member in struct:ref_locale
21 //{ name, decimal_point, thousands_sepy_thousands_sep},
38 CPPUNIT_ASSERT( npct.decimal_point() == *rl.decimal_point );
50 ref += npct.decimal_point();
57 ref += npct.decimal_point();
242 CPPUNIT_CHECK( cfacet_byname.decimal_point() == cfacet.decimal_point() );
  /ndk/tests/device/test-stlport/unit/
num_facets_test.cpp 16 const char *decimal_point; member in struct:ref_locale
21 //{ name, decimal_point, thousands_sepy_thousands_sep},
38 CPPUNIT_ASSERT( npct.decimal_point() == *rl.decimal_point );
50 ref += npct.decimal_point();
57 ref += npct.decimal_point();
242 CPPUNIT_CHECK( cfacet_byname.decimal_point() == cfacet.decimal_point() );
  /external/stlport/src/
num_get_float.cpp 649 unsigned Negate, decimal_point; local
668 decimal_point = 0;
676 exp += (decimal_point ^ 1);
683 exp -= decimal_point;
685 } else if (c == (unsigned int) dpchar && !decimal_point) { /* INTERNATIONAL */
686 decimal_point = 1;
754 unsigned decimal_point; local
774 decimal_point = 0;
782 exp += (decimal_point ^ 1);
789 exp -= decimal_point;
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 649 unsigned Negate, decimal_point; local
668 decimal_point = 0;
676 exp += (decimal_point ^ 1);
683 exp -= decimal_point;
685 } else if (c == (unsigned int) dpchar && !decimal_point) { /* INTERNATIONAL */
686 decimal_point = 1;
754 unsigned decimal_point; local
774 decimal_point = 0;
782 exp += (decimal_point ^ 1);
789 exp -= decimal_point;
    [all...]
  /external/stlport/stlport/stl/
_numpunct.h 56 char decimal_point() const { return do_decimal_point(); } function in class:numpunct
85 wchar_t decimal_point() const { return do_decimal_point(); } function in class:numpunct
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_numpunct.h 56 char decimal_point() const { return do_decimal_point(); } function in class:numpunct
85 wchar_t decimal_point() const { return do_decimal_point(); } function in class:numpunct
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_numpunct.h 56 char decimal_point() const { return do_decimal_point(); } function in class:numpunct
85 wchar_t decimal_point() const { return do_decimal_point(); } function in class:numpunct
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_numpunct.h 56 char decimal_point() const { return do_decimal_point(); } function in class:numpunct
85 wchar_t decimal_point() const { return do_decimal_point(); } function in class:numpunct
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_numpunct.h 56 char decimal_point() const { return do_decimal_point(); } function in class:numpunct
85 wchar_t decimal_point() const { return do_decimal_point(); } function in class:numpunct
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_numpunct.h 56 char decimal_point() const { return do_decimal_point(); } function in class:numpunct
85 wchar_t decimal_point() const { return do_decimal_point(); } function in class:numpunct
  /ndk/sources/cxx-stl/llvm-libc++/include/support/android/
locale.h 59 char* decimal_point; /* Decimal point character */ member in struct:lconv
  /external/stlport/test/eh/
locale.cpp 32 cout << num_punct.decimal_point() << '\n';

Completed in 529 milliseconds

1 2 3 4