Searched defs:digits (Results 1 - 25 of 125) sorted by relevance

12345

/external/stlport/test/unit/
H A Dcomplete_digits.h8 complete_digits(std::string &digits) argument
10 complete_digits(string &digits)
13 while (digits.size() < 2)
15 digits.insert(digits.begin(), '0');
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DJavaScriptTarget.java65 private void writeHexWithPadding(StringBuffer buf, String digits) { argument
66 digits = digits.toUpperCase();
67 int padding = 8 - digits.length();
72 buf.append(digits);
H A DActionScriptTarget.java116 private void writeHexWithPadding(StringBuffer buf, String digits) { argument
117 digits = digits.toUpperCase();
118 int padding = 8 - digits.length();
123 buf.append(digits);
/external/stlport/src/
H A Dnum_get.cpp78 bool _STLP_CALL __get_fdigit(wchar_t& c, const wchar_t* digits) { argument
79 const wchar_t* p = find(digits, digits + 10, c);
80 if (p != digits + 10) {
81 c = (char)('0' + (p - digits));
89 const wchar_t * digits) {
95 return __get_fdigit(c, digits);
88 __get_fdigit_or_sep(wchar_t& c, wchar_t sep, const wchar_t * digits) argument
/external/chromium_org/third_party/icu/source/samples/datefmt/
H A Dutil.cpp22 int8_t digits,
25 while (digits > 0) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
21 appendHex(uint32_t number, int8_t digits, UnicodeString& target) argument
/external/chromium_org/third_party/icu/source/samples/msgfmt/
H A Dutil.cpp22 int8_t digits,
25 while (digits > 0) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
21 appendHex(uint32_t number, int8_t digits, UnicodeString& target) argument
/external/chromium_org/third_party/icu/source/samples/translit/
H A Dutil.cpp22 int8_t digits,
25 while (digits > 0) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
21 appendHex(uint32_t number, int8_t digits, UnicodeString& target) argument
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Drbutil.c68 const char digits[16] = {'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'}; local
83 buffer[length++]= digits[digit];
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dlogging.cc59 int digits = 0; local
63 ++digits;
78 return (digits > 0);
/external/chromium_org/third_party/webrtc/base/
H A Durlencode.cc95 static const char *digits = "0123456789ABCDEF"; local
112 *dest++ = digits[(ch >> 4) & 0x0F];
113 *dest++ = digits[ ch & 0x0F];
/external/icu/icu4c/source/samples/datefmt/
H A Dutil.cpp22 int8_t digits,
25 while (digits > 0) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
21 appendHex(uint32_t number, int8_t digits, UnicodeString& target) argument
/external/icu/icu4c/source/samples/msgfmt/
H A Dutil.cpp22 int8_t digits,
25 while (digits > 0) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
21 appendHex(uint32_t number, int8_t digits, UnicodeString& target) argument
/external/icu/icu4c/source/samples/translit/
H A Dutil.cpp22 int8_t digits,
25 while (digits > 0) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
21 appendHex(uint32_t number, int8_t digits, UnicodeString& target) argument
/external/icu/icu4c/source/tools/genrb/
H A Drbutil.c68 const char digits[16] = {'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'}; local
83 buffer[length++]= digits[digit];
/external/arduino/hardware/arduino/cores/arduino/
H A DPrint.cpp99 void Print::print(double n, int digits) argument
101 printFloat(n, digits);
158 void Print::println(double n, int digits) argument
160 print(n, digits);
187 void Print::printFloat(double number, uint8_t digits) argument
198 for (uint8_t i=0; i<digits; ++i)
208 // Print the decimal point, but only if there are digits beyond
209 if (digits > 0)
212 // Extract digits from the remainder one at a time
213 while (digits
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A DdecNumber.h60 /* 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:__anon12089
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 \
H A Ddigitlst.h36 // Decimal digits in a 64-bit int
96 * precision to represent all digits of a long.
99 * which are the digits radix 10, from '0' to '9'. It also has a radix
102 * derived by placing all the digits of the list to the right of the
109 * DigitList stores digits with the most significant first.
110 * decNumber stores digits with the least significant first.
120 * digitList, digits are platform invariant chars, '0' - '9'
121 * decNumber, digits are binary, one per byte, 0 - 9.
123 * (decNumber library is configurable in how digits are stored, ICU has configured
158 * Clears out the digits
310 int32_t digits() const {return fDecNumber->digits;} function in class:DigitList
[all...]
/external/chromium_org/third_party/icu/source/samples/numfmt/
H A Dutil.cpp33 int8_t digits,
36 while (digits > 0) {
37 digit = (number >> ((--digits) * 4)) & 0xF;
32 appendHex(uint32_t number, int8_t digits, UnicodeString& target) argument
/external/chromium_org/third_party/libxslt/libxslt/
H A Dextra.c175 char digits[5]; local
202 memset(digits, 0, sizeof(digits));
203 strncpy(digits, str+7, 4);
204 field = strtol(digits, NULL, 10);
207 memset(digits, 0, sizeof(digits));
208 strncpy(digits, str+12, 2);
209 field = strtol(digits, NULL, 10);
212 memset(digits,
[all...]
/external/icu/icu4c/source/i18n/
H A DdecNumber.h60 /* 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:__anon21895
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 \
/external/icu/icu4c/source/samples/numfmt/
H A Dutil.cpp33 int8_t digits,
36 while (digits > 0) {
37 digit = (number >> ((--digits) * 4)) & 0xF;
32 appendHex(uint32_t number, int8_t digits, UnicodeString& target) argument
/external/markdown/markdown/extensions/
H A Dheaderid.py71 from string import ascii_lowercase, digits, punctuation namespace
73 ID_CHARS = ascii_lowercase + digits + '-_'
/external/tcpdump/missing/
H A Dinet_ntop.c66 const char digits[] = "0123456789"; local
81 *dst++ = digits[n / 100];
86 *dst++ = digits[n / 10];
90 *dst++ = digits[n];
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DFixASCIIControlsReader.java40 /** count the digits of the sequence */
41 private int digits = 0; field in class:FixASCIIControlsReader
138 digits = 0;
144 digits = 1;
157 digits++;
158 if (digits <= 5)
184 digits++;
185 if (digits <= 4)
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DMediaFragmentURIParser.cpp42 StringBuilder digits; local
47 digits.append(input[position++]);
48 return digits.toString();
53 StringBuilder digits; local
60 digits.append(input[position++]);
62 digits.append(input[position++]);
63 return digits.toString();
248 // seconds must be specified as exactly two digits, hours and fractional
249 // seconds can be any number of digits. The hours, minutes and seconds
274 String digits
[all...]

Completed in 7864 milliseconds

12345