HomeSort by relevance Sort by last modified time
    Searched full:isdigit (Results 1 - 25 of 284) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bison/lib/
strverscmp.c 39 /* ISDIGIT differs from isdigit, as follows:
43 POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
46 #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9)
101 state = S_N | ((c1 == '0') + (ISDIGIT (c1) != 0));
108 state |= (c1 == '0') + (ISDIGIT (c1) != 0);
111 state = result_type[state << 2 | ((c2 == '0') + (ISDIGIT (c2) != 0))];
119 while (ISDIGIT (*p1++))
120 if (!ISDIGIT (*p2++))
123 return ISDIGIT (*p2) ? -1 : diff
    [all...]
  /external/e2fsprogs/lib/blkid/
version.c 33 if (!isdigit(*cp))
  /external/e2fsprogs/lib/ext2fs/
version.c 39 if (!isdigit(*cp))
  /external/blktrace/
strverscmp.c 129 state = S_N | ((c1 == '0') + (isdigit (c1) != 0));
136 state |= (c1 == '0') + (isdigit (c1) != 0);
139 state = result_type[state << 2 | (((c2 == '0') + (isdigit (c2) != 0)))];
147 while (isdigit (*p1++))
148 if (!isdigit (*p2++))
151 return isdigit (*p2) ? -1 : diff;
  /external/ppp/pppd/plugins/pppoatm/
text2atm.c 30 if (isdigit(*text)) {
31 if (*text == '0' && isdigit(text[1])) return TRY_OTHER;
37 while (isdigit(*text));
84 if (isdigit(*walk)) {
117 value = isdigit(*text) ? *text-'0' : (islower(*text) ?
139 if (!isdigit(*text)) return -1; /* non-digit in length */
167 if (isdigit(*text)) {
  /external/e2fsprogs/misc/
base_device.c 75 !isdigit(cp[1]) || !isdigit(cp[3]))
85 if (isdigit(*cp))
114 if (!isdigit(*cp))
136 if (!isdigit(*cp))
  /external/webkit/JavaScriptCore/wtf/
DisallowCType.h 45 #undef isdigit macro
62 #define isdigit isdigit_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h macro
  /sdk/emulator/qtools/
parse_options.cpp 67 } else if (isdigit(*optarg)) {
86 } else if (isdigit(*optarg)) {
  /system/extras/tests/bionic/libstdc++/
test_cctype.cpp 50 #ifdef isdigit
82 using std::isdigit;
  /bionic/libc/kernel/common/linux/
ctype.h 29 #define isdigit(c) ((__ismask(c)&(_D)) != 0) macro
  /external/icu4c/test/perf/charperf/
CharPerf.pl 43 "isDigit", ["$p TestStdLibIsDigit" , "$p TestIsDigit" ],
CharPerf_r.pl 47 "isDigit", ["$p1 TestIsDigit" , "$p2 TestIsDigit" ],
  /external/stlport/stlport/stl/
_cctype.h 35 using _STLP_VENDOR_CSTD::isdigit;
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
ctype.h 29 #define isdigit(c) ((__ismask(c)&(_D)) != 0) macro
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
ctype.h 29 #define isdigit(c) ((__ismask(c)&(_D)) != 0) macro
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
ctype.h 29 #define isdigit(c) ((__ismask(c)&(_D)) != 0) macro
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
ctype.h 29 #define isdigit(c) ((__ismask(c)&(_D)) != 0) macro
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
ctype.h 29 #define isdigit(c) ((__ismask(c)&(_D)) != 0) macro
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
ctype.h 29 #define isdigit(c) ((__ismask(c)&(_D)) != 0) macro
  /external/gtest/test/
gtest-port_test.cc 185 EXPECT_FALSE(IsDigit('\0'));
186 EXPECT_FALSE(IsDigit(' '));
187 EXPECT_FALSE(IsDigit('+'));
188 EXPECT_FALSE(IsDigit('-'));
189 EXPECT_FALSE(IsDigit('.'));
190 EXPECT_FALSE(IsDigit('a'));
194 EXPECT_TRUE(IsDigit('0'));
195 EXPECT_TRUE(IsDigit('1'));
196 EXPECT_TRUE(IsDigit('5'));
197 EXPECT_TRUE(IsDigit('9'))
    [all...]
  /external/dnsmasq/contrib/dns-loc/
dnsmasq2-loc-rfc1876.patch 184 + while (isdigit(*cp))
189 + if (isdigit(*cp)) {
191 + if (isdigit(*cp)) {
224 + while (isdigit(*cp))
230 + if (!(isdigit(*cp)))
233 + while (isdigit(*cp))
238 + if (!(isdigit(*cp)))
241 + while (isdigit(*cp))
246 + if (isdigit(*cp)) {
248 + if (isdigit(*cp))
    [all...]
  /external/icu4c/io/
uprntf_p.c     [all...]
  /external/stlport/stlport/
ctype.h 57 # undef isdigit macro
74 __inline int (isdigit)(int c) { return _isctype(c, _DIGIT); } function
locale 72 #undef isdigit
107 inline bool isdigit (_CharT c, const locale& loc)
  /packages/apps/Settings/src/com/android/settings/quicklaunch/
ShortcutPreference.java 146 if (Character.isDigit(mShortcut) && Character.isLetter(other)) return 1;
147 else if (Character.isDigit(other) && Character.isLetter(mShortcut)) return -1;

Completed in 414 milliseconds

1 2 3 4 5 6 7 8 91011>>