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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/icu/source/i18n/unicode/
decimfmt.h 55 * Indic digits. It also supports different flavors of numbers, including
138 * digits. The symbols are stored in a DecimalFormatSymbols
264 * prefix and suffix; the number of digits, minimal digits, and other
268 * <p>The prefixes, suffixes, and various symbols used for infinity, digits,
279 * integer digits to make large numbers more legible. It commonly used for
281 * size</em> is the number of digits between the grouping separators, such as 3
283 * grouping sizes: One used for the least significant integer digits, the
340 * <li>In place of '0', the digits '1' through '9' may be used to
347 * decimal digits, as defined by u_charDigitValue(). In addition
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
tokenizer.cc 364 // Possibly followed by two more octal digits, but these will
369 AddError("Expected hex digits for escape sequence.");
377 AddError("Expected four hex digits for \\u escape sequence.");
380 // We expect 8 hex digits; but only the range up to 0x10ffff is
390 AddError("Expected eight hex digits up to 10ffff for \\U escape "
417 ConsumeOneOrMore<HexDigit>("\"0x\" must be followed by hex digits.");
933 // Try to read <len> hex digits from ptr, and stuff the numeric result into
934 // *result. Returns true if that many digits were successfully consumed.
972 // Convert the escape sequence parameter to a number of expected hex digits.
    [all...]
  /external/icu/icu4c/source/i18n/
rbt_set.cpp 77 int32_t digits,
83 while (digits--) {
84 target += digitString[(number >> (digits*4)) & 0xF];
decContext.h 44 /* digits -- must be in the range 1 through 999999999 */
89 int32_t digits; /* working precision */ member in struct:__anon25703
228 #define DEC_Condition_LD "Lost digits"
decNumber.h 57 #define DECDPUN 1 /* DECimal Digits Per UNit [must be >0 */
60 /* DECNUMDIGITS is the default number of digits that can be held in */
69 /* number of digits it will hold. */
82 int32_t digits; /* Count of digits in the coefficient; >0 */ member in struct:__anon25704
91 /* 1. If digits is > DECDPUN then there will one or more */
93 /* These contain the remaining (more significant) digits of the */
100 /* contains DECDPUN digits (e.g., a value in the range 0 through */
103 /* 2. A decNumber converted to a string may need up to digits+14 */
192 && (dn)->digits==1
    [all...]
  /external/strace/
vsprintf.c 100 * Code can be easily arranged to print 9 digits too, but our callers
101 * always call put_dec_full9() instead when the number has 9 decimal digits.
136 * groups of (up to) 9 digits. It's conceptually simple,
140 * manipulates them cleverly and generates groups of 4 decimal digits.
272 int precision; /* # of digits/chars */
280 static const char digits[16] = "0123456789abcdef"; /* "GHIJKLMNOPQRSTUVWXYZ"; */ local
320 tmp[i++] = digits[num];
323 tmp[i++] = (digits[do_div(num,base)]);
333 tmp[i++] = digits[((unsigned char)num) & mask];
386 /* actual digits of result *
    [all...]
  /packages/services/Telephony/src/com/android/phone/
EmergencyDialer.java 152 // A special sequence was entered, clear the digits
178 mDigits = (EditText) findViewById(R.id.digits);
283 // This can't be done in onCreate(), since the auto-restoring of the digits
284 // will play DTMF tones for all the old digits if it is when onRestoreSavedInstanceState()
333 case R.id.digits:
358 case R.id.digits: {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
string.py 14 digits -- a string containing all characters considered decimal digits
15 hexdigits -- a string containing all characters considered hexadecimal digits
16 octdigits -- a string containing all characters considered octal digits
30 digits = '0123456789' variable
31 hexdigits = digits + 'abcdef' + 'ABCDEF'
34 printable = digits + letters + punctuation + whitespace
397 or more digits, possibly preceded by a sign. If base is 0, it
412 of one or more digits, possibly preceded by a sign. If base
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
string.py 14 digits -- a string containing all characters considered decimal digits
15 hexdigits -- a string containing all characters considered hexadecimal digits
16 octdigits -- a string containing all characters considered octal digits
30 digits = '0123456789' variable
31 hexdigits = digits + 'abcdef' + 'ABCDEF'
34 printable = digits + letters + punctuation + whitespace
397 or more digits, possibly preceded by a sign. If base is 0, it
412 of one or more digits, possibly preceded by a sign. If base
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
bignum.cc 84 // Clear the excess digits (if there were any).
113 uint64_t digits = ReadUInt64(value, pos, kMaxUint64DecimalDigits); local
117 AddUInt64(digits);
119 uint64_t digits = ReadUInt64(value, pos, length); local
121 AddUInt64(digits);
357 // In the worst case we have to accumulate nb-digits products of digit*digit.
365 // First shift the digits so we don't overwrite them.
495 // Easy case: if we have less digits than the divisor than the result is 0.
506 // number of digits.
521 // Since other has more than 0 digits we know that the access t
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
decContext.h 43 /* digits -- must be in the range 1 through 999999999 */
88 int32_t digits; /* working precision */ member in struct:__anon15805
227 #define DEC_Condition_LD "Lost digits"
decNumber.h 57 #define DECDPUN 1 /* DECimal Digits Per UNit [must be >0 */
60 /* DECNUMDIGITS is the default number of digits that can be held in */
69 /* number of digits it will hold. */
82 int32_t digits; /* Count of digits in the coefficient; >0 */ member in struct:__anon15806
91 /* 1. If digits is > DECDPUN then there will one or more */
93 /* These contain the remaining (more significant) digits of the */
100 /* contains DECDPUN digits (e.g., a value in the range 0 through */
103 /* 2. A decNumber converted to a string may need up to digits+14 */
192 && (dn)->digits==1
    [all...]
  /external/chromium_org/ui/base/clipboard/
clipboard_util_win.cc 395 #define MAKE_NUMBER_FORMAT_1(digits) MAKE_NUMBER_FORMAT_2(digits)
396 #define MAKE_NUMBER_FORMAT_2(digits) "%0" #digits "u"
  /external/chromium_org/v8/src/
bignum.cc 60 // Clear the excess digits (if there were any).
89 uint64_t digits = ReadUInt64(value, pos, kMaxUint64DecimalDigits); local
93 AddUInt64(digits);
95 uint64_t digits = ReadUInt64(value, pos, length); local
97 AddUInt64(digits);
333 // In the worst case we have to accumulate nb-digits products of digit*digit.
341 // First shift the digits so we don't overwrite them.
471 // Easy case: if we have less digits than the divisor than the result is 0.
482 // number of digits.
497 // Since other has more than 0 digits we know that the access t
    [all...]
safepoint-table.h 129 static void PrintBits(FILE* out, uint8_t byte, int digits);
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixLogarithm.h 69 static const int maxPadeDegree = std::numeric_limits<RealScalar>::digits<= 24? 5: // single precision
70 std::numeric_limits<RealScalar>::digits<= 53? 7: // double precision
71 std::numeric_limits<RealScalar>::digits<= 64? 8: // extended precision
72 std::numeric_limits<RealScalar>::digits<=106? 10: // double-double
  /external/libcxx/test/language.support/support.limits/limits/numeric.limits.members/
const_data_members.pass.cpp 16 digits
45 test(std::numeric_limits<type>::digits); \
Android.mk 83 test_name := language.support/support.limits/limits/numeric.limits.members/digits
84 test_src := digits.pass.cpp
  /external/libpng/
pngerror.c 136 int count = 0; /* number of digits output */
148 static const char digits[] = "0123456789ABCDEF"; local
153 /* Needs five digits (the fraction) */
157 *--end = digits[number % 10];
164 /* Expects at least 2 digits. */
169 *--end = digits[number % 10];
174 /* This format expects at least two digits */
179 *--end = digits[number & 0xf];
188 /* Keep track of the number of digits added */
421 * to 63 bytes, the name characters are output as hex digits wrapped in [
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/limits/numeric.limits.members/
const_data_members.pass.cpp 16 digits
45 test(std::numeric_limits<type>::digits); \
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_userstring.py 93 orig = string.ascii_letters + string.digits
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_userstring.py 93 orig = string.ascii_letters + string.digits
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
lexer.py 95 ident_chars1 = string.letters+string.digits+"_"
126 ident_chars1 = string.letters+string.digits+"_"
  /external/chromium_org/v8/test/webkit/fast/js/
numeric-escapes-in-string-literals.js 52 // Octal literals may be 1-3 digits long. In strict more all multi-digit sequences are illegal.
  /external/icu/icu4c/source/i18n/unicode/
tzfmt.h 376 * @param digits Receives the decimal digits used for localized GMT format.
380 UnicodeString& getGMTOffsetDigits(UnicodeString& digits) const;
384 * The input <code>digits</code> must contain exactly 10 code points
386 * digit 0 to digit 9 in the ascending order. When the input <code>digits</code>
389 * @param digits The decimal digits used for localized GMT format.
394 void setGMTOffsetDigits(const UnicodeString& digits, UErrorCode& status);
475 * <li>Offset digits (e.g. "0123456789" - see {@link #getGMTOffsetDigits})
496 * <li>Offset digits (e.g. "0123456789" - see {@link #getGMTOffsetDigits}
    [all...]

Completed in 1310 milliseconds

1 2 3 4 5 6 78 91011>>