/frameworks/base/core/java/android/text/method/ |
QwertyKeyListener.java | 139 Character.digit(content.charAt(start - 1), 16) >= 0) {
|
/packages/apps/Music/src/com/android/music/ |
MediaPlaybackService.java | 416 int digit = (int)(n & 0xf); local 418 q.append(hexdigits[digit]); 436 int digit = (n & 0xf); local 438 q.append(hexdigits[digit]); [all...] |
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/ |
parse-js.js | 393 var digit = parseInt(next(true), 16); 394 if (isNaN(digit)) 396 num = (num << 4) | digit; [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
PointerLocationView.java | 703 int digit = value / divisor; 704 value -= digit * divisor; 706 chars[index++] = (char) (digit + '0');
|
/external/dropbear/libtommath/ |
bn.tex | 347 ISO C ``unsigned long'' data type and each digit is $28-$bits long. The mp\_digit type can be configured to suit other 532 /* we need a 60-digit number */ 642 small constant assignment functions. The first function is used to set a single digit constant while the second sets 643 an ISO C style ``unsigned long'' constant. The reason for both functions is efficiency. Setting a single digit is quick but the 644 domain of a digit can change (it's always at least $0 \ldots 127$). 646 \subsection{Single Digit} 648 Setting a single digit can be accomplished with the following function. 683 To set a constant that is the size of an ISO C ``unsigned long'' and larger than a single digit the following function 692 accept a 32-bit input regardless of the size of a single digit. However, since the value may span several digits 754 /* initialize and set a single digit */ [all...] |
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/ |
AsYouTypeFormatter.java | 34 * returned each time a digit is added. {@link #clear} can be invoked before formatting a new 62 // Any digit in a regular expression that actually denotes a digit. For example, in the regular 65 // Two look-aheads are needed because the number following \\d could be a two-digit number, since 71 // the dollar sign followed by a single digit, separated by valid phone number punctuation. This 88 // The position of a digit upon which inputDigitAndRememberPosition is most recently invoked, as 91 // The position of a digit upon which inputDigitAndRememberPosition is most recently invoked, as 196 // Replace any standalone digit (not the one in d{}) with \d 210 // Creates a phone number consisting only of the digit 9 that matches the 223 // Replaces each digit with character digitPlaceholde [all...] |
PhoneNumberUtil.java | 539 * prefix, and return it as a set of digit blocks that would be formatted together. 564 // extension number. We assume a carrier code is more than 1 digit, so the first case has to 635 * string if no character used to start phone numbers (such as + or any digit) is 728 int digit = Character.digit(c, 10); local [all...] |
/cts/tests/tests/database/src/android/database/cts/ |
DatabaseUtilsTest.java | [all...] |
/external/libxslt/libxslt/ |
numbers.c | 129 (xsltUTF8Charcmp((letter), (self)->digit) == 0) || \ 396 * (Number, decimal digit), Nl (Number, letter), No (Number, 400 * to correspond to the Letter and Digit classes from XML (and 929 * 0 a digit 930 * # a digit, zero shows as absent 1042 if (xsltUTF8Charcmp(the_format, self->digit) == 0) { 1097 } else if (xsltUTF8Charcmp(the_format, self->digit) == 0) { [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
date-format-tofte.js | 254 // A two-digit representation of a year
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
date-format-tofte.js | 254 // A two-digit representation of a year
|
/external/stlport/src/c_locale_win32/ |
c_locale_win32.c | 1472 int digit; local [all...] |
/ndk/sources/cxx-stl/stlport/src/c_locale_win32/ |
c_locale_win32.c | 1472 int digit; local [all...] |
/bionic/libc/kernel/tools/ |
cpp.py | 1028 for digit in v: 1029 if not digit.isdigit() [all...] |
/external/icu4c/common/unicode/ |
uchar.h | 90 * - digit: u_isdigit(c) or u_charType(c)==U_DECIMAL_DIGIT_NUMBER [all...] |
/external/icu4c/i18n/ |
vtzone.cpp | 87 * Simple fixed digit ASCII number to integer converter 108 int32_t digit = str.charAt(start + i) - 0x0030; local 109 if (digit < 0 || digit > 9) { 113 num = 10 * num + digit; [all...] |
/external/llvm/lib/Support/ |
APInt.cpp | 47 /// A utility function that converts a character to a digit. 175 /// add_1 - This function adds a single "digit" integer, y, to the multiple 176 /// "digit" integer array, x[]. x[] is modified to reflect the addition and 183 y = 1; // Carry one to next digit. 201 /// sub_1 - This function subtracts a single "digit" (64-bit word), y, from 202 /// the multi-digit integer array, x[], propagating the borrowed 1 value until 212 y = 1; // We have to "borrow 1" from next "digit" 287 /// @brief Multiply a multi-digit APInt by a single digit (64-bit) integer. 293 // For each digit of x [all...] |
/external/pcre/ |
pcre_internal.h | [all...] |
/external/webkit/Source/JavaScriptCore/icu/unicode/ |
uchar.h | [all...] |
/external/webkit/Source/JavaScriptGlue/icu/unicode/ |
uchar.h | [all...] |
/external/webkit/Source/WebCore/icu/unicode/ |
uchar.h | [all...] |
/external/webkit/Source/WebKit/mac/icu/unicode/ |
uchar.h | [all...] |
/external/v8/src/ |
uri.js | 342 // Convert a character code to 4-digit hex string representation
|
/frameworks/base/core/java/android/net/ |
Uri.java | [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
GsmServiceStateTracker.java | [all...] |