HomeSort by relevance Sort by last modified time
    Searched refs:digit (Results 1 - 25 of 297) 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...]
  /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...]
  /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...]
  /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/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++/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/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++/test/localization/locale.categories/category.ctype/
ctype_base.pass.cpp 24 // static const mask digit = 1 << 6;
27 // static const mask alnum = alpha | digit;
45 assert(std::ctype_base::digit);
55 & std::ctype_base::digit
58 assert(std::ctype_base::alnum == (std::ctype_base::alpha | std::ctype_base::digit));
67 test(std::ctype_base::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/upstream-netbsd/libc/inet/
inet_pton.c 103 u_int digit, base; local
134 digit = c - '0';
135 if (digit >= base)
137 val = (val * base) + digit;
140 digit = c + 10 - (islower(c) ? 'a' : 'A');
141 if (digit >= 16)
143 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 195 final int digit = mBuffer[i] - '0'; local
196 if (digit < 0 || digit > 9) {
202 final long next = result * 10 - digit;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Fingerprint.java 173 int digit = Character.digit(streamId.charAt(index), 16); local
174 if (digit < 0) {
175 throw new IllegalArgumentException("illegal hex digit in " + streamId);
177 return 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

Completed in 1044 milliseconds

1 2 3 4 5 6 7 8 91011>>