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

1 2 3 4 5 6 7 8 910

  /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...]
  /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/smali/smali/src/main/java/org/jf/smali/
LiteralTools.java 64 } else if (Character.digit(byteChars[position], 8) >= 0) {
71 int digit; local
75 digit = Character.digit(byteChars[position], radix);
76 if (digit < 0) {
77 throw new NumberFormatException("The string contains invalid an digit - '" + byteChars[position] + "'");
83 if (shiftedResult < 0 && shiftedResult >= -digit) {
86 result = (byte)(shiftedResult + digit);
134 } else if (Character.digit(shortChars[position], 8) >= 0) {
141 int digit; local
205 int digit; local
275 int digit; local
    [all...]
  /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/webkit/Source/WebCore/html/parser/
HTMLParserIdioms.cpp 127 int digit, exponentSign; local
133 switch (digit = string[cursor]) {
137 digit = string[++cursor];
139 if (digit >= '0' && digit <= '9') {
140 while (cursor < length && digit == '0')
141 digit = string[++cursor];
142 if (digit > '0' && digit <= '9') {
143 exponent32 = digit - '0'
    [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...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
SimUnlockScreen.java 268 private void reportDigit(int digit) {
275 mPinText.append(Integer.toString(digit));
276 mEnteredPin[mEnteredDigits++] = digit;
363 final int digit = checkDigit(v); local
364 if (digit >= 0) {
366 reportDigit(digit);
371 int digit = -1; local
373 digit = 0;
375 digit = 1;
377 digit = 2
    [all...]
SimPukUnlockScreen.java 297 private void reportDigit(int digit) {
298 mFocusedEntry.append(Integer.toString(digit));
388 final int digit = checkDigit(v); local
389 if (digit >= 0) {
391 reportDigit(digit);
396 int digit = -1; local
398 digit = 0;
400 digit = 1;
402 digit = 2;
404 digit = 3
    [all...]
  /external/smali/util/src/main/java/org/jf/util/
IndentingWriter.java 154 int digit = (int)(value & 15); local
155 if (digit < 10) {
156 buffer[bufferIndex++] = (char)(digit + '0');
158 buffer[bufferIndex++] = (char)((digit - 10) + 'a');
178 int digit = value % 10; local
179 buffer[bufferIndex++] = (char)(digit + '0');
  /frameworks/base/core/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/ipsec-tools/src/libipsec/
policy_token.l 71 digit [0-9]
86 usec {dot}{digit}{1,6}
91 decstring {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];
  /external/icu4c/samples/numfmt/
util.cpp 35 uint32_t digit; local
37 digit = (number >> ((--digits) * 4)) & 0xF;
38 target += (UChar)(digit < 10 ? 0x30 + digit : 0x41 - 10 + digit);
  /bionic/libc/inet/
inet_pton.c 109 u_int digit, base; local
140 digit = c - '0';
141 if (digit >= base)
143 val = (val * base) + digit;
146 digit = c + 10 - (islower(c) ? 'a' : 'A');
147 if (digit >= 16)
149 val = (val << 4) | digit;
  /external/v8/src/
bignum-dtoa.cc 170 // If 1 <= (numerator+delta_plus) / denominator < 10 then no leading 0 digit
183 uint16_t digit; local
184 digit = numerator->DivideModuloIntBignum(*denominator);
185 ASSERT(digit <= 9); // digit is a uint16_t and therefore always positive.
186 // digit = numerator / denominator (integer division).
188 buffer[(*length)++] = digit + '0';
221 // If yes, then the next digit would be < 5 and we can round down.
227 // Note that the last digit could not be a '9' as otherwise the whole
252 // Note again that the last digit could not be '9' since this would hav
275 uint16_t digit; local
285 uint16_t digit; local
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
ProcFileReader.java 162 final int digit = mBuffer[i] - '0'; local
163 if (digit < 0 || digit > 9) {
169 final long next = result * 10 - digit;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/i686-linux/bits/
ctype_base.h 51 static const mask digit = _ISdigit; member in struct:ctype_base
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/i686-linux/bits/
ctype_base.h 53 static const mask digit = _ISdigit; member in struct:ctype_base
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/x86_64-linux/bits/
ctype_base.h 53 static const mask digit = _ISdigit; member in struct:ctype_base
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
ctype_base.h 47 static const mask digit = _N; member in struct:ctype_base
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
ctype_base.h 47 static const mask digit = _N; member in struct:ctype_base

Completed in 670 milliseconds

1 2 3 4 5 6 7 8 910