HomeSort by relevance Sort by last modified time
    Searched refs:digit (Results 1 - 25 of 426) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
template-dependent-bind-temporary.cpp 16 T digit; local
17 char((digit < 10 ? '0' : 'a') + digit) + result;
  /frameworks/base/core/java/android/widget/
DoubleDigitManager.java 22 * Provides callbacks indicating the steps in two digit pressing within a
35 * @param timeoutInMillis How long after the first digit is pressed does
36 * the user have to press the second digit?
45 * Report to this manager that a digit was pressed.
46 * @param digit
48 public void reportDigit(int digit) {
50 intermediateDigit = digit;
61 if (!mCallBack.singleDigitIntermediate(digit)) {
63 // this wasn't a good candidate for the intermediate digit,
64 // make it the final digit (since there is no opportunity t
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
longintrepr.h 12 integer type, and one set for 15-bit digits with each digit stored in an
14 configure time or in pyport.h, is used to decide which digit size to use.
16 Type 'digit' should be able to hold 2*PyLong_BASE-1, and type 'twodigits'
18 PyLong_BASE*PyLong_BASE-1. x_sub assumes that 'digit' is an unsigned type,
45 typedef PY_UINT32_T digit; typedef
46 typedef PY_INT32_T sdigit; /* signed variant of digit */
50 #define _PyLong_DECIMAL_SHIFT 9 /* max(e such that 10**e fits in a digit) */
51 #define _PyLong_DECIMAL_BASE ((digit)1000000000) /* 10 ** DECIMAL_SHIFT */
53 typedef unsigned short digit; typedef
54 typedef short sdigit; /* signed variant of digit */
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
longintrepr.h 12 integer type, and one set for 15-bit digits with each digit stored in an
14 configure time or in pyport.h, is used to decide which digit size to use.
16 Type 'digit' should be able to hold 2*PyLong_BASE-1, and type 'twodigits'
18 PyLong_BASE*PyLong_BASE-1. x_sub assumes that 'digit' is an unsigned type,
45 typedef PY_UINT32_T digit; typedef
46 typedef PY_INT32_T sdigit; /* signed variant of digit */
50 #define _PyLong_DECIMAL_SHIFT 9 /* max(e such that 10**e fits in a digit) */
51 #define _PyLong_DECIMAL_BASE ((digit)1000000000) /* 10 ** DECIMAL_SHIFT */
53 typedef unsigned short digit; typedef
54 typedef short sdigit; /* signed variant of digit */
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ustrfmt.c 32 int digit; local
37 digit = (int)(i % radix);
38 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
  /external/icu4c/common/
ustrfmt.c 32 int digit; local
37 digit = (int)(i % radix);
38 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
  /external/ipsec-tools/src/racoon/
prsa_tok.l 49 digit [0-9]
50 octet (([01]?{digit}?{digit})|((2([0-4]{digit}))|(25[0-5])))
82 {digit}+ { prsalval.num = atol(prsatext); return NUMBER; }
  /external/smali/smali/src/main/java/org/jf/smali/
LiteralTools.java 67 } else if (Character.digit(byteChars[position], 8) >= 0) {
74 int digit; local
78 digit = Character.digit(byteChars[position], radix);
79 if (digit < 0) {
80 throw new NumberFormatException("The string contains invalid an digit - '" + byteChars[position] + "'");
86 if (shiftedResult < 0 && shiftedResult >= -digit) {
89 result = (byte)(shiftedResult + digit);
137 } else if (Character.digit(shortChars[position], 8) >= 0) {
144 int digit; local
208 int digit; local
278 int digit; local
    [all...]
  /bionic/libc/upstream-netbsd/common/lib/libc/inet/
inet_addr.c 133 int digit; local
144 val = 0; base = 10; digit = 0;
151 digit = 1 ;
160 digit = 1;
166 digit = 1;
190 * Did we get a valid digit?
192 if (!digit)
  /external/stressapptest/src/
sattypes.h 132 int digit = 0, last_non_zero_size = 1; local
135 digit |= 1 << (i & 3);
138 format += char(digit <= 9 ? '0' + digit: 'A' + digit - 10);
139 if (digit) {
141 digit = 0;
145 if (digit) {
146 format += char(digit <= 9 ? '0' + digit: 'A' + digit - 10)
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
AndroidInteger.java 64 int digit = Character.digit(string.charAt(offset++), radix); local
65 if (digit == -1) {
71 int next = result * radix - digit;
  /external/chromium/third_party/libjingle/source/talk/base/
urlencode.cc 37 int digit = *pch++; local
38 if (digit >= '0' && digit <= '9') {
39 value += digit - '0';
41 else if (digit >= 'A' && digit <= 'F') {
42 value += digit - 'A' + 10;
44 else if (digit >= 'a' && digit <= 'f') {
45 value += digit - 'a' + 10
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
urlencode.cc 37 int digit = *pch++; local
38 if (digit >= '0' && digit <= '9') {
39 value += digit - '0';
41 else if (digit >= 'A' && digit <= 'F') {
42 value += digit - 'A' + 10;
44 else if (digit >= 'a' && digit <= 'f') {
45 value += digit - 'a' + 10
    [all...]
linuxfdwalk.c 49 int digit = *s++ - '0'; local
50 val = val * 10 + digit;
  /external/smali/util/src/main/java/org/jf/util/
IndentingWriter.java 164 int digit = (int)(value & 15); local
165 if (digit < 10) {
166 buffer[bufferIndex++] = (char)(digit + '0');
168 buffer[bufferIndex++] = (char)((digit - 10) + 'a');
188 int digit = value % 10; local
189 buffer[bufferIndex++] = (char)(digit + '0');
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/
lookup_classname.pass.cpp 34 test("d", std::ctype_base::digit);
35 test("D", std::ctype_base::digit);
36 test("d", std::ctype_base::digit, true);
37 test("D", std::ctype_base::digit, true);
73 test("digit", std::ctype_base::digit);
74 test("Digit", std::ctype_base::digit);
75 test("digit", std::ctype_base::digit, true)
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
QuotedPrintable.java 53 int u = Character.digit((char) bytes[++i], 16);
54 int l = Character.digit((char) bytes[++i], 16);
  /external/apache-http/src/org/apache/commons/codec/binary/
Hex.java 79 * @param ch A character to convert to an integer digit
85 int digit = Character.digit(ch, 16); local
86 if (digit == -1) {
89 return digit;
  /external/chromium_org/courgette/
streams.cc 57 // For each byte, we mask out the digit and 'or' it into the right place in the
60 // The digit loop is unrolled for performance. It usually exits after the first
65 uint32 digit, result; local
68 digit = *(source++);
69 result = digit & 127;
70 if (digit < 128) {
77 digit = *(source++);
78 result |= (digit & 127) << 7;
79 if (digit < 128) {
86 digit = *(source++)
    [all...]
  /external/ipsec-tools/src/libipsec/
policy_token.l 71 digit [0-9]
86 usec {dot}{digit}{1,6}
91 decstring {digit}+
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/
ctype_base.pass.cpp 29 // static const mask digit = 1 << 6;
32 // static const mask alnum = alpha | digit;
50 assert(std::ctype_base::digit);
60 & std::ctype_base::digit
63 assert(std::ctype_base::alnum == (std::ctype_base::alpha | std::ctype_base::digit));
72 test(std::ctype_base::digit);
  /external/chromium_org/rlz/lib/
string_utils.cc 52 int digit = 0; local
54 if (!GetHexValue(text[idx], &digit)) {
63 number = (number << 4) | digit;
85 string->at(2 * index) = kHex[data[index] >> 4]; // high digit
86 string->at(2 * index + 1) = kHex[data[index] & 0x0F]; // low digit
  /external/chromium_org/third_party/icu/source/tools/genrb/
rbutil.c 72 int digit; local
82 digit = (int)(i % radix);
83 buffer[length++]= digits[digit];
  /external/icu4c/tools/genrb/
rbutil.c 72 int digit; local
82 digit = (int)(i % radix);
83 buffer[length++]= digits[digit];
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
NumericSprite.java 37 String digit = sStrike.substring(i, i+1); local
38 mLabelId[i] = mLabelMaker.add(gl, digit, paint);
73 int digit = c - '0'; local
74 mLabelMaker.draw(gl, x, y, mLabelId[digit]);
75 x += mWidth[digit];

Completed in 670 milliseconds

1 2 3 4 5 6 7 8 91011>>