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

1 2 3 45 6 7 8 910

  /external/icu4c/i18n/
digitlst.cpp 16 * 04/15/97 aliu Changed MAX_COUNT to DBL_DIG. Changed Digit to char.
20 * to do digit conversion.
53 * This is the zero digit. The base for the digits returned by getDigit()
54 * Note that it is the platform invariant digit, and is not Unicode.
133 decNumber n; // Has space for only a none digit value.
184 // Resets the digit list; sets all the digits to zero.
311 // decNumber keeps one digit (with that digit being a zero)
356 // Appends the digit to the digit list if it's not out of scope
    [all...]
nfsubs.cpp 1059 int64_t digit = didx>=0 ? dl.getDigit(didx) - '0' : 0; local
1113 int32_t digit; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
pcsc_funcs.c 1006 unsigned char digit; local
1008 digit = buf[i] & 0x0f;
1009 if (digit < 10)
1010 *pos++ = '0' + digit;
1014 digit = buf[i] >> 4 & 0x0f;
1015 if (digit < 10)
1016 *pos++ = '0' + digit;
    [all...]
  /external/wpa_supplicant_8/src/utils/
pcsc_funcs.c 1000 unsigned char digit; local
1002 digit = buf[i] & 0x0f;
1003 if (digit < 10)
1004 *pos++ = '0' + digit;
1008 digit = buf[i] >> 4 & 0x0f;
1009 if (digit < 10)
1010 *pos++ = '0' + digit;
    [all...]
  /libcore/luni/src/main/java/java/lang/
Character.java 74 * <tr> <td> Nd </td> <td> Decimal digit number </td> <td>{@link #DECIMAL_DIGIT_NUMBER}</td> </tr>
2359 public static int digit(char c, int radix) { method in class:Character
2376 public static int digit(int codePoint, int radix) { method in class:Character
    [all...]
  /external/v8/src/
json-parser.h 101 // four-digit hex escapes (uXXXX). Any other use of backslashes is invalid.
119 // digit before and after a decimal point, may not have prefixed zeros (unless
361 // Prefix zero is only allowed if it's the only digit before
509 int digit = HexValue(c0_); local
510 if (digit < 0) {
513 value = value * 16 + digit;
bignum.cc 95 int digit = buffer[i] - '0'; local
96 ASSERT(0 <= digit && digit <= 9);
97 result = result * 10 + digit;
109 // Let's just say that each digit needs 4 bits.
355 // In the worst case we have to accumulate nb-digits products of digit*digit.
370 // Process temporary digit i with power i.
510 // Remove the multiples of the first digit.
629 // Otherwise they are equal up to this digit. Try the next digit
    [all...]
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 99 * Determines whether a character is a digit according to
102 public static final CharMatcher DIGIT;
105 CharMatcher digit = inRange('0', '9'); typedefs
111 digit = digit.or(inRange(base, (char) (base + 9)));
113 DIGIT = digit.precomputed();
117 * Determines whether a character is a digit according to {@link Character#isDigit(char) Java's
138 * Determines whether a character is a letter or digit according to {@link
    [all...]
  /external/icu4c/test/cintltst/
bocu1tst.c 753 hexDigit(uint8_t digit) {
754 return digit<=9 ? (char)('0'+digit) : (char)('a'-10+digit);
  /external/stlport/stlport/stl/
_monetary.c 66 if (__first == __last || !_c_type.is(ctype_base::digit, *__first))
74 if (_c_type.is(ctype_base::digit, *__first)) {
110 while (__first != __last && _c_type.is(ctype_base::digit, *__first)) {
387 while (__cp != __digits_last && __c_type.is(ctype_base::digit, *__cp))
  /libcore/luni/src/main/native/
cbigint.h 90 uint32_t simpleAppendDecimalDigitHighPrecision(uint64_t* arg1, int32_t length, uint64_t digit);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_monetary.c 66 if (__first == __last || !_c_type.is(ctype_base::digit, *__first))
74 if (_c_type.is(ctype_base::digit, *__first)) {
110 while (__first != __last && _c_type.is(ctype_base::digit, *__first)) {
387 while (__cp != __digits_last && __c_type.is(ctype_base::digit, *__cp))
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
dc.sed 181 : digit
183 t digit
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_monetary.c 66 if (__first == __last || !_c_type.is(ctype_base::digit, *__first))
74 if (_c_type.is(ctype_base::digit, *__first)) {
110 while (__first != __last && _c_type.is(ctype_base::digit, *__first)) {
387 while (__cp != __digits_last && __c_type.is(ctype_base::digit, *__cp))
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_monetary.c 66 if (__first == __last || !_c_type.is(ctype_base::digit, *__first))
74 if (_c_type.is(ctype_base::digit, *__first)) {
110 while (__first != __last && _c_type.is(ctype_base::digit, *__first)) {
387 while (__cp != __digits_last && __c_type.is(ctype_base::digit, *__cp))
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/
_monetary.c 66 if (__first == __last || !_c_type.is(ctype_base::digit, *__first))
74 if (_c_type.is(ctype_base::digit, *__first)) {
110 while (__first != __last && _c_type.is(ctype_base::digit, *__first)) {
387 while (__cp != __digits_last && __c_type.is(ctype_base::digit, *__cp))
  /dalvik/dx/src/com/android/dx/cf/code/
ByteOps.java 562 int idx = (Character.digit(s.charAt(i), 16) << 4) |
563 Character.digit(s.charAt(i + 1), 16);
  /external/checkpolicy/
policy_scan.l 54 digit [0-9]
232 {digit}+|0x{hexval}+ { return(NUMBER); }
233 {digit}{1,3}(\.{digit}{1,3}){3} { return(IPV4_ADDR); }
235 {digit}+(\.({alnum}|[_.])*)? { return(VERSION_IDENTIFIER); }
237 #line[ ]{digit}+ { source_lineno = atoi(yytext+6)-1; }
  /external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/
set-href-attribute-port.js 20 // Firefox 3.5.2 does not accept the port if any character is not a digit.
  /frameworks/base/keystore/tests/src/android/security/
KeyStoreTest.java 102 data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4) + Character.digit(
  /libcore/luni/src/main/java/java/math/
BigInt.java 159 // one or more digit characters appropriate to the given base,
179 if (Character.digit(ch, base) == -1) {
197 int value = Character.digit(ch, base);
  /system/core/sh/
output.c 289 static const char digit[] = "0123456789ABCDEF";
410 *--p = digit[num % base];
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
CharacterTest.java 650 * @tests java.lang.Character#digit(char, int)
653 assertEquals("Returned incorrect digit", 1, Character.digit('1', 10));
654 assertEquals("Returned incorrect digit", 15, Character.digit('F', 16));
658 * @tests java.lang.Character#digit(int, int)
661 assertEquals(1, Character.digit((int)'1', 10));
662 assertEquals(15, Character.digit((int)'F', 16));
664 assertEquals(-1, Character.digit(0x0000, 37));
665 assertEquals(-1, Character.digit(0x0045, 10))
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
channel.cc 674 bool VoiceChannel::PressDTMF(int digit, bool playout) {
675 DtmfMessageData data(digit, playout);
865 bool VoiceChannel::PressDTMF_w(int digit, bool playout) {
870 return media_channel()->PressDTMF(digit, playout);
897 data->result = PressDTMF_w(data->digit, data->playout);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
regex_compiler.h 262 if (_M_ctype.is(_CtypeT::digit, *_M_current))
268 && _M_ctype.is(_CtypeT::digit, *_M_current))
431 if (_M_ctype.is(_CtypeT::digit, *_M_current))
440 if (_M_ctype.is(_CtypeT::digit, *_M_current))
457 else if (_M_ctype.is(_CtypeT::digit, __c))

Completed in 718 milliseconds

1 2 3 45 6 7 8 910