HomeSort by relevance Sort by last modified time
    Searched refs:digits (Results 201 - 225 of 446) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/opencv/otherlibs/highgui/
grfmt_pxm.cpp 87 int digits = 0; local
115 if( ++digits >= maxdigits ) break;
  /hardware/ril/include/telephony/
ril_cdma_sms.h 45 RIL_CDMA_SMS_DIGIT_MODE_4_BIT = 0, /* DTMF digits */
65 * For INTERNET_MAIL, in the address data "digits", each byte contains
109 * numberOfDigits = number of digits
110 * digits = ASCII digits, e.g. '1', '2', '3'3, '4', and '5'
115 unsigned char digits[ RIL_CDMA_SMS_ADDRESS_MAX ]; member in struct:__anon41692
131 unsigned char digits[ RIL_CDMA_SMS_SUBADDRESS_MAX ]; member in struct:__anon41694
578 'number_of_digits' is the number of digits/characters (7, 8, 16, or
623 NOTE: Each field has two BCD digits and byte arrangement is <MSB, ... ,LSB>
  /development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
InteractiveLineGraphView.java 407 * Rounds the given number to the given number of significant digits. Based on an answer on
424 private static int formatFloat(final char[] out, float val, int digits) {
434 if (digits > POW10.length) {
435 digits = POW10.length - 1;
437 val *= POW10[digits];
441 while (lval != 0 || charCount < (digits + 1)) {
446 if (charCount == digits) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
string_tests.py 139 digits = 7
142 for i in xrange(base ** digits):
144 for j in xrange(digits):
196 digits = 5
199 for i in xrange(base ** digits):
201 for j in xrange(digits):
240 digits = 5
243 for i in xrange(base ** digits):
245 for j in xrange(digits):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
string_tests.py 139 digits = 7
142 for i in xrange(base ** digits):
144 for j in xrange(digits):
196 digits = 5
199 for i in xrange(base ** digits):
201 for j in xrange(digits):
240 digits = 5
243 for i in xrange(base ** digits):
245 for j in xrange(digits):
    [all...]
  /external/stlport/test/unit/
num_put_get_test.cpp 400 string output, digits; local
407 digits = "17";
408 complete_digits(digits);
409 CPPUNIT_CHECK(output == string("1.23457e+") + digits );
463 digits = "1";
464 complete_digits(digits);
465 CPPUNIT_CHECK(output == string("1.23456780e-") + digits );
1153 // we may loss some digits here, but not more than mantissa:
    [all...]
money_facets_test.cpp 173 string digits; local
178 fmg.get(istr, istreambuf_iterator<char, char_traits<char> >(), true, ostr, err, digits);
180 CPPUNIT_ASSERT( digits == "123456" );
275 // Test for bug in case when number of digits in value less then number
276 // of digits in fraction. I.e. '9' should be printed as '0.09',
  /ndk/tests/device/test-gnustl-full/unit/
num_put_get_test.cpp 400 string output, digits; local
407 digits = "17";
408 complete_digits(digits);
409 CPPUNIT_CHECK(output == string("1.23457e+") + digits );
463 digits = "1";
464 complete_digits(digits);
465 CPPUNIT_CHECK(output == string("1.23456780e-") + digits );
1153 // we may loss some digits here, but not more than mantissa:
    [all...]
money_facets_test.cpp 173 string digits; local
178 fmg.get(istr, istreambuf_iterator<char, char_traits<char> >(), true, ostr, err, digits);
180 CPPUNIT_ASSERT( digits == "123456" );
275 // Test for bug in case when number of digits in value less then number
276 // of digits in fraction. I.e. '9' should be printed as '0.09',
  /ndk/tests/device/test-stlport/unit/
num_put_get_test.cpp 400 string output, digits; local
407 digits = "17";
408 complete_digits(digits);
409 CPPUNIT_CHECK(output == string("1.23457e+") + digits );
463 digits = "1";
464 complete_digits(digits);
465 CPPUNIT_CHECK(output == string("1.23456780e-") + digits );
    [all...]
money_facets_test.cpp 173 string digits; local
178 fmg.get(istr, istreambuf_iterator<char, char_traits<char> >(), true, ostr, err, digits);
180 CPPUNIT_ASSERT( digits == "123456" );
275 // Test for bug in case when number of digits in value less then number
276 // of digits in fraction. I.e. '9' should be printed as '0.09',
  /external/chromium_org/third_party/icu/source/i18n/
plurrule.cpp 378 char digits[128]; local
380 i = token.extract(0, token.length(), digits, ARRAY_SIZE(digits), US_INV);
381 digits[i]='\0';
383 return((int32_t)atoi(digits));
  /external/chromium_org/components/autofill/core/browser/
credit_card.cc 455 // If the number is shorter than four digits, there's no need to obfuscate it.
486 base::string16 digits = LastFourDigits(); local
487 if (digits.empty())
491 return type + base::ASCIIToUTF16(" - ") + digits;
  /external/chromium_org/v8/src/
json-parser.h 497 int digits = 0; local
501 digits++;
504 if (c0_ != '.' && c0_ != 'e' && c0_ != 'E' && digits < 10) {
  /external/icu/icu4c/source/i18n/unicode/
decimfmt.h 74 * Indic digits. It also supports different flavors of numbers, including
157 * digits. The symbols are stored in a DecimalFormatSymbols
283 * prefix and suffix; the number of digits, minimal digits, and other
287 * <p>The prefixes, suffixes, and various symbols used for infinity, digits,
298 * integer digits to make large numbers more legible. It commonly used for
300 * size</em> is the number of digits between the grouping separators, such as 3
302 * grouping sizes: One used for the least significant integer digits, the
359 * <li>In place of '0', the digits '1' through '9' may be used to
366 * decimal digits, as defined by u_charDigitValue(). In addition
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
locale.py 262 digits = conv[international and 'int_frac_digits' or 'frac_digits']
263 if digits == 127:
267 s = format('%%.%if' % digits, abs(val), grouping, monetary=True)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
locale.py 262 digits = conv[international and 'int_frac_digits' or 'frac_digits']
263 if digits == 127:
267 s = format('%%.%if' % digits, abs(val), grouping, monetary=True)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
utilities.js 194 * interpreted as the digits, periods, operations, and commands represented
359 * Tests how a calculator controller handles a sequence of digits and periods
370 * period of the numeric sequence and the following digits and periods of
372 * the following digits and periods in the test.
378 * be added to the expected operand before each of the following digits
386 * digits and periods in the tests.
494 formatNumber_: function(number, digits) {
496 var array = Array(Math.max(digits - string.length, 0) + 1);
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
bitvect.c 1654 N_word digits; local
2064 N_word digits; local
    [all...]
  /external/libcxx/src/
string.cpp 405 const size_t n = (numeric_limits<unsigned long long>::digits / 3)
406 + ((numeric_limits<unsigned long long>::digits % 3) != 0)
  /external/valgrind/main/exp-sgcheck/tests/
bad_percentify.c 277 HChar* digits = capitalised ? "0123456789ABCDEF" : "0123456789abcdef"; local
298 buf[ind++] = digits[p % base];
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
string.cpp 405 const size_t n = (numeric_limits<unsigned long long>::digits / 3)
406 + ((numeric_limits<unsigned long long>::digits % 3) != 0)
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
date-format-tofte.js 71 // Day of the month, 2 digits with leading zeros
232 // A full numeric representation of a year, 4 digits
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
date-format-tofte.js 71 // Day of the month, 2 digits with leading zeros
232 // A full numeric representation of a year, 4 digits
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
date-format-tofte.js 71 // Day of the month, 2 digits with leading zeros
232 // A full numeric representation of a year, 4 digits

Completed in 5401 milliseconds

1 2 3 4 5 6 7 891011>>