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

1 2 3 4 5 6 7 8

  /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));
punycode.c 90 digitToBasic(int32_t digit, UBool uppercase) {
93 if(digit<26) {
95 return (char)(_CAPITAL_A+digit);
97 return (char)(_SMALL_A+digit);
100 return (char)((_ZERO_-26)+digit);
376 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t, local
452 digit=basicToDigit[(uint8_t)src[in++]];
453 if(digit<0) {
457 if(digit>(0x7fffffff-i)/w) {
463 i+=digit*w
    [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/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 264 private void reportDigit(int digit) {
271 mPinText.append(Integer.toString(digit));
272 mEnteredPin[mEnteredDigits++] = digit;
362 final int digit = checkDigit(v); local
363 if (digit >= 0) {
365 reportDigit(digit);
370 int digit = -1; local
372 digit = 0;
374 digit = 1;
376 digit = 2
    [all...]
SimPukUnlockScreen.java 293 private void reportDigit(int digit) {
294 mFocusedEntry.append(Integer.toString(digit));
386 final int digit = checkDigit(v); local
387 if (digit >= 0) {
389 reportDigit(digit);
394 int digit = -1; local
396 digit = 0;
398 digit = 1;
400 digit = 2;
402 digit = 3
    [all...]
  /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 167 // If 1 <= (numerator+delta_plus) / denominator < 10 then no leading 0 digit
180 uint16_t digit; local
181 digit = numerator->DivideModuloIntBignum(*denominator);
182 ASSERT(digit <= 9); // digit is a uint16_t and therefore always positive.
183 // digit = numerator / denominator (integer division).
185 buffer[(*length)++] = digit + '0';
218 // If yes, then the next digit would be < 5 and we can round down.
224 // Note that the last digit could not be a '9' as otherwise the whole
249 // Note again that the last digit could not be '9' since this would hav
272 uint16_t digit; local
282 uint16_t digit; local
    [all...]
  /prebuilt/linux-x86/toolchain/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
  /prebuilt/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
  /prebuilt/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
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
ctype_base.h 47 static const mask digit = _N; member in struct:ctype_base
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
ctype_base.h 47 static const mask digit = _N; member in struct:ctype_base
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/libs/x86/include/bits/
ctype_base.h 47 static const mask digit = _N; member in struct:ctype_base
  /libcore/luni/src/main/java/java/util/
Date.java 413 int digit = Integer.parseInt(buffer.toString()); local
426 zoneOffset = sign == '-' ? -digit : digit;
431 } else if (digit >= 70) {
435 year = digit;
441 hour = digit;
443 minute = digit;
449 month = digit - 1;
451 date = digit;
458 minute = digit;
    [all...]
  /external/valgrind/main/coregrind/
m_libcbase.c 53 static Bool is_dec_digit(Char c, Long* digit)
55 if (c >= '0' && c <= '9') { *digit = (Long)(c - '0'); return True; }
59 static Bool is_hex_digit(Char c, Long* digit)
61 if (c >= '0' && c <= '9') { *digit = (Long)(c - '0'); return True; }
62 if (c >= 'A' && c <= 'F') { *digit = (Long)((c - 'A') + 10); return True; }
63 if (c >= 'a' && c <= 'f') { *digit = (Long)((c - 'a') + 10); return True; }
70 Long n = 0, digit = 0; local
80 while (is_dec_digit(*str, &digit)) {
81 converted = True; // Ok, we've actually converted a digit.
82 n = 10*n + digit;
95 Long n = 0, digit = 0; local
128 Long digit; local
    [all...]

Completed in 1991 milliseconds

1 2 3 4 5 6 7 8