HomeSort by relevance Sort by last modified time
    Searched refs:digit (Results 151 - 175 of 297) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/7/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/8/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/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/opt/timezonepicker/src/com/android/timezonepicker/
TimeZoneFilterTypeAdapter.java 369 // No digit
373 // Got first digit
374 num = Character.digit(ch, 10);
380 // Got second digit
381 num = 10 * num + Character.digit(ch, 10);
  /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];
  /bootable/recovery/applypatch/
applypatch.c 545 int digit; local
547 digit = *ps - '0';
549 digit = *ps - 'a' + 10;
551 digit = *ps - 'A' + 10;
556 *pd = digit << 4;
558 *pd |= digit;
    [all...]
  /external/icu4c/i18n/
nfsubs.cpp 1106 int64_t digit = didx>=0 ? dl.getDigit(didx) - '0' : 0; local
1160 int32_t digit; local
    [all...]
  /external/bison/lib/
vasnprintf.c 480 (Need a_len+1 digits for the real division and 1 more digit for the
3123 int digit = (int) tail; local
3145 int digit; local
3274 int digit = (int) tail; local
3296 int digit; local
    [all...]
  /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))