/external/chromium_org/chrome/tools/build/win/ |
version.bat | 20 :: Load version digits as environment variables
|
/external/chromium_org/third_party/icu/source/i18n/ |
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:__anon11390 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...] |
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/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/icu4c/i18n/ |
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:__anon18870 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/icu4c/i18n/unicode/ |
tzfmt.h | 382 * @param digits Receives the decimal digits used for localized GMT format. 386 UnicodeString& getGMTOffsetDigits(UnicodeString& digits) const; 390 * The input <code>digits</code> must contain exactly 10 code points 392 * digit 0 to digit 9 in the ascending order. When the input <code>digits</code> 395 * @param digits The decimal digits used for localized GMT format. 400 void setGMTOffsetDigits(const UnicodeString& digits, UErrorCode& status); 483 * <li>Offset digits (e.g. "0123456789" - see {@link #getGMTOffsetDigits}) 505 * <li>Offset digits (e.g. "0123456789" - see {@link #getGMTOffsetDigits} [all...] |
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...] |
/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:__anon32109 131 unsigned char digits[ RIL_CDMA_SMS_SUBADDRESS_MAX ]; member in struct:__anon32111 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>
|
/bionic/libc/stdio/ |
vfprintf.c | 135 * Macros for converting digits to letters and vice versa 191 int ndig; /* actual number of digits returned by cvt */ 200 char* xdigs = NULL; /* digits for [xX] conversion */ 1233 char *digits, *bp, *rve; local 1245 mode = 2; /* ndigits significant digits */ 1253 digits = __dtoa(value, mode, ndigits, decpt, &dsgn, &rve); 1255 bp = digits + ndigits; 1257 if (*digits == '0' && value) 1266 *length = rve - digits; 1267 return (digits); [all...] |
/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...] |
/external/dropbear/libtommath/ |
bn.tex | 346 Where ``mp\_digit'' is a data type that represents individual digits of the integer. By default, an mp\_digit is the 515 default number of digits. By default, all initializers allocate \textbf{MP\_PREC} digits. This function lets 524 to have $size$ digits (which are all initially zero). 549 digits can be removed to return memory to the heap with the mp\_shrink() function. 556 This will remove excess digits of the mp\_int $a$. If the operation fails the mp\_int should be intact without the 557 excess digits being removed. Note that you can use a shrunk mp\_int in further computations, however, such operations 592 \subsection{Adding additional digits} 594 Within the mp\_int structure are two parameters which control the limitations of the array of digits that represent 595 the integer the mp\_int is meant to equal. The \textit{used} parameter dictates how many digits are significant, that is [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/icu4c/test/intltest/ |
intltest.cpp | 115 // so there is no need to show more than 16 digits. [alan] 228 int32_t digits, 236 if (digits < 0) { // auto-digits 237 digits = 2; 240 digits += 2; 244 switch (digits) 270 IntlTest::toHex(uint32_t number, int32_t digits) { 272 appendHex(number, digits, result); [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/components/autofill/core/browser/ |
credit_card.cc | 466 // If the number is shorter than four digits, there's no need to obfuscate it. 497 base::string16 digits = LastFourDigits(); local 498 if (digits.empty()) 502 return type + ASCIIToUTF16(" - ") + digits;
|
/external/chromium_org/v8/src/ |
json-parser.h | 514 int digits = 0; local 518 digits++; 521 if (c0_ != '.' && c0_ != 'e' && c0_ != 'E' && digits < 10) {
|
/external/okhttp/src/main/java/com/squareup/okhttp/ |
HttpResponseCache.java | 122 private static final char[] DIGITS = 191 char[] digits = DIGITS; local 195 buf[c++] = digits[(b >> 4) & 0xf]; 196 buf[c++] = digits[b & 0xf];
|