HomeSort by relevance Sort by last modified time
    Searched refs:digit (Results 1 - 25 of 519) 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/icu/icu4c/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/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...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
WNafL2RMultiplier.java 40 int digit = wi >> 16, zeroes = wi & 0xFFFF; local
42 int n = Math.abs(digit);
43 ECPoint[] table = digit < 0 ? preCompNeg : preComp;
78 int digit = wi >> 16, zeroes = wi & 0xFFFF;
80 int n = Math.abs(digit);
81 ECPoint[] table = digit < 0 ? preCompNeg : preComp;
  /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;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
ctype_base.h 53 static const mask digit = 1 << 3; member in struct:ctype_base
60 static const mask alnum = (1 << 2) | (1 << 3); // alpha|digit
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
ctype_base.h 53 static const mask digit = 1 << 3; member in struct:ctype_base
60 static const mask alnum = (1 << 2) | (1 << 3); // alpha|digit
  /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/chromium_org/third_party/webrtc/base/
urlencode.cc 20 int digit = *pch++; local
21 if (digit >= '0' && digit <= '9') {
22 value += digit - '0';
24 else if (digit >= 'A' && digit <= 'F') {
25 value += digit - 'A' + 10;
27 else if (digit >= 'a' && digit <= 'f') {
28 value += digit - 'a' + 10
    [all...]
linuxfdwalk.c 32 int digit = *s++ - '0'; local
33 val = val * 10 + digit;
  /external/libunwind/src/
os-linux.h 114 unsigned long num_digits = 0, digit, val = 0; local
122 digit = *cp;
123 if ((digit - '0') <= 9)
124 digit -= '0';
125 else if ((digit - 'a') < 6)
126 digit -= 'a' - 10;
127 else if ((digit - 'A') < 6)
128 digit -= 'A' - 10;
131 val = (val << 4) | digit;
144 unsigned long num_digits = 0, digit, val = 0 local
    [all...]
  /external/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...]
  /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...]
  /external/smali/util/src/main/java/org/jf/util/
IndentingWriter.java 180 int digit = (int)(value & 15); local
181 if (digit < 10) {
182 buffer[bufferIndex--] = (char)(digit + '0');
184 buffer[bufferIndex--] = (char)((digit - 10) + 'a');
204 long digit = value % 10; local
205 buffer[bufferIndex--] = (char)(digit + '0');
224 int digit = value % 10; local
225 buffer[bufferIndex--] = (char)(digit + '0');
  /frameworks/opt/telephony/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);
  /packages/services/Telephony/src/com/android/services/telephony/
GsmConnection.java 34 public void onPlayDtmfTone(char digit) {
36 getPhone().startDtmf(digit);
  /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...]

Completed in 1520 milliseconds

1 2 3 4 5 6 7 8 91011>>