Searched refs:digits (Results 1 - 25 of 202) sorted by path

123456789

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
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);
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 DTarget.java186 // then only take last 4 digits
327 String digits = Long.toHexString(word);
328 digits = digits.toUpperCase();
329 int padding = numHexDigits - digits.length();
334 buf.append(digits);
/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/bison/build-aux/
H A Ddepcomp116 digits=0123456789
/external/bison/lib/
H A Dvasnprintf.c479 /* Allocate room for a_len+2 digits.
480 (Need a_len+1 digits for the real division and 1 more digit for the
842 Return the allocated memory - containing the decimal digits in low-to-high
871 /* Store the remainder as 9 decimal digits. */
1068 Return the allocated memory - containing the decimal digits in low-to-high
1085 char *digits; local
1281 digits = convert_to_decimal (z, extra_zeroes);
1283 return digits;
1290 Return the allocated memory - containing the decimal digits in low-to-high
1308 Return the allocated memory - containing the decimal digits i
1507 is_borderline(const char *digits, size_t precision) argument
3657 char *digits; local
3712 char *digits; local
3847 char *digits; local
4122 char *digits; local
4174 char *digits; local
4321 char *digits; local
[all...]
/external/chromium/base/json/
H A Djson_reader.cc30 // Read in more digits
47 // A helper method for ParseStringToken. It reads |digits| hex digits from the
48 // token. If the sequence if digits is not valid (contains other characters),
50 bool ReadHexDigits(JSONReader::Token& token, int digits) { argument
51 for (int i = 1; i <= digits; ++i) {
61 token.length += digits;
/external/chromium/base/
H A Drand_util.cc32 static const int kBits = std::numeric_limits<double>::digits;
/external/chromium/chrome/browser/autofill/
H A Dautofill_manager.cc1100 return cc_id << std::numeric_limits<unsigned short>::digits | profile_id;
1109 int cc_id = id >> std::numeric_limits<unsigned short>::digits &
H A Dphone_number.cc17 // The number of digits in a phone number.
20 // The number of digits in an area code.
156 // Treat the last 7 digits as the number.
163 // Treat the next three digits as the city code.
170 // Treat any remaining digits as the country code.
190 string16 digits(number);
191 StripPunctuation(&digits);
192 number_ = digits;
/external/chromium/googleurl/src/
H A Durl_parse.cc444 // we copy the digits to a small stack buffer (since we know the maximum number
445 // of digits in a valid port number) that we can NULL terminate.
462 return 0; // All digits were 0.
464 // Verify we don't have too many digits (we'll be copying to our buffer so
469 // Copy valid digits to the buffer.
470 char digits[kMaxDigits + 1]; // +1 for null terminator local
477 digits[i] = static_cast<char>(ch);
481 // only digits, atoi's lack of error handling is OK.
482 digits[digits_comp.len] = 0;
483 int port = atoi(digits);
[all...]
/external/chromium/sdch/open-vcdiff/src/gtest/internal/
H A Dgtest-internal.h333 std::numeric_limits<RawType>::digits - 1;
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h324 std::numeric_limits<RawType>::digits - 1;
/external/chromium/third_party/libjingle/source/talk/base/
H A Durlencode.cc112 static const char *digits = "0123456789ABCDEF"; local
129 *dest++ = digits[(ch >> 4) & 0x0F];
130 *dest++ = digits[ ch & 0x0F];
/external/chromium_org/base/
H A Drand_util.cc39 static const int kBits = std::numeric_limits<double>::digits;
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
H A Dmodel.js120 var digits = this.digits_(exponent);
121 var exponential = x.toExponential(digits).replace(/\.?0+e/, 'e');
123 return !digits ? 'E' : fixed ? String(Number(exponential)) : exponential;
127 * Returns the appropriate number of digits to include of a number based on
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
H A Dutilities.js194 * 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/chrome/third_party/chromevox/
H A DchromeVoxChromeBackgroundScript.js431 goog.i18n.NumberFormat.enforceAsciiDigits_=!1;goog.i18n.NumberFormat.setEnforceAsciiDigits=function(a){goog.i18n.NumberFormat.enforceAsciiDigits_=a};goog.i18n.NumberFormat.isEnforceAsciiDigits=function(){return goog.i18n.NumberFormat.enforceAsciiDigits_};goog.i18n.NumberFormat.prototype.setMinimumFractionDigits=function(a){if(0<this.significantDigits_&&0<a)throw Error("Can't combine significant digits and minimum fraction digits");this.minimumFractionDigits_=a;return this};
432 goog.i18n.NumberFormat.prototype.setMaximumFractionDigits=function(a){this.maximumFractionDigits_=a;return this};goog.i18n.NumberFormat.prototype.setSignificantDigits=function(a){if(0<this.minimumFractionDigits_&&0<=a)throw Error("Can't combine significant digits and minimum fraction digits");this.significantDigits_=a;return this};
H A DchromeVoxChromeOptionsScript.js492 goog.i18n.NumberFormat.enforceAsciiDigits_=!1;goog.i18n.NumberFormat.setEnforceAsciiDigits=function(a){goog.i18n.NumberFormat.enforceAsciiDigits_=a};goog.i18n.NumberFormat.isEnforceAsciiDigits=function(){return goog.i18n.NumberFormat.enforceAsciiDigits_};goog.i18n.NumberFormat.prototype.setMinimumFractionDigits=function(a){if(0<this.significantDigits_&&0<a)throw Error("Can't combine significant digits and minimum fraction digits");this.minimumFractionDigits_=a;return this};
493 goog.i18n.NumberFormat.prototype.setMaximumFractionDigits=function(a){this.maximumFractionDigits_=a;return this};goog.i18n.NumberFormat.prototype.setSignificantDigits=function(a){if(0<this.minimumFractionDigits_&&0<=a)throw Error("Can't combine significant digits and minimum fraction digits");this.significantDigits_=a;return this};
H A DchromeVoxChromePageScript.js431 goog.i18n.NumberFormat.enforceAsciiDigits_=!1;goog.i18n.NumberFormat.setEnforceAsciiDigits=function(a){goog.i18n.NumberFormat.enforceAsciiDigits_=a};goog.i18n.NumberFormat.isEnforceAsciiDigits=function(){return goog.i18n.NumberFormat.enforceAsciiDigits_};goog.i18n.NumberFormat.prototype.setMinimumFractionDigits=function(a){if(0<this.significantDigits_&&0<a)throw Error("Can't combine significant digits and minimum fraction digits");this.minimumFractionDigits_=a;return this};
432 goog.i18n.NumberFormat.prototype.setMaximumFractionDigits=function(a){this.maximumFractionDigits_=a;return this};goog.i18n.NumberFormat.prototype.setSignificantDigits=function(a){if(0<this.minimumFractionDigits_&&0<=a)throw Error("Can't combine significant digits and minimum fraction digits");this.significantDigits_=a;return this};
/external/chromium_org/chrome/tools/build/win/
H A Dversion.bat20 :: Load version digits as environment variables
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_manager.cc1075 return cc_id << std::numeric_limits<unsigned short>::digits | profile_id;
1084 int cc_id = id >> std::numeric_limits<unsigned short>::digits &
H A Dcredit_card.cc466 // 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/sync/tools/testserver/
H A Dchromiumsync.py272 return ''.join(random.choice(string.ascii_uppercase + string.digits)

Completed in 924 milliseconds

123456789