Searched refs:isdigit (Results 1 - 25 of 180) sorted by relevance

12345678

/external/srec/portable/src/
H A Dptypes.c33 if (!isdigit(*str))
/external/blktrace/
H A Dstrverscmp.c129 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/e2fsprogs/misc/
H A Dbase_device.c75 !isdigit(cp[1]) || !isdigit(cp[3]))
85 if (isdigit(*cp))
114 if (!isdigit(*cp))
136 if (!isdigit(*cp))
/external/webkit/Source/JavaScriptCore/wtf/
H A DDisallowCType.h45 #undef isdigit macro
62 #define isdigit isdigit_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h macro
/external/e2fsprogs/lib/ext2fs/
H A Dversion.c39 if (!isdigit(*cp))
/external/llvm/utils/TableGen/
H A DStringToOffsetTable.h62 if (isdigit(AggregateString[i+1])) {
63 assert(isdigit(AggregateString[i+2]) &&
64 isdigit(AggregateString[i+3]) &&
/external/e2fsprogs/lib/blkid/
H A Dversion.c33 if (!isdigit(*cp))
/external/stlport/stlport/stl/
H A D_cctype.h35 using _STLP_VENDOR_CSTD::isdigit;
/external/ppp/pppd/plugins/pppoatm/
H A Dtext2atm.c30 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/ppp/pppd/plugins/radius/
H A Dip_util.c71 else if (!isdigit (*addr))
/external/pcre/
H A Dpcre_maketables.c104 if (isdigit(i)) p[cbit_digit + i/8] |= 1 << (i&7);
127 if (isdigit(i)) x += ctype_digit;
/external/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp76 while (isdigit(*CurPtr))
86 while (isdigit(*CurPtr))
100 if (CurPtr[-1] == '.' && isdigit(*CurPtr)) {
102 while (isdigit(*CurPtr))
175 while (isdigit(*CurPtr))
206 if (!isdigit(CurPtr[0])) {
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp315 if (isdigit(CurPtr[0])) {
316 for (++CurPtr; isdigit(CurPtr[0]); ++CurPtr)
379 if (isdigit(CurPtr[0])) {
380 for (++CurPtr; isdigit(CurPtr[0]); ++CurPtr)
440 if (!IntEnd && !isdigit(*CurPtr)) IntEnd = CurPtr;
755 if (!isdigit(TokStart[0]) && !isdigit(CurPtr[0])) {
769 for (; isdigit(CurPtr[0]); ++CurPtr)
806 while (isdigit(CurPtr[0])) ++CurPtr;
809 if (isdigit(CurPt
[all...]
/external/llvm/lib/Support/Unix/
H A DHost.inc53 if (Triple[0] == 'i' && isdigit(Triple[1]) &&
/external/stlport/stlport/
H A Dctype.h57 # undef isdigit macro
74 __inline int (isdigit)(int c) { return _isctype(c, _DIGIT); } function
/external/kernel-headers/original/linux/
H A Dctype.h25 #define isdigit(c) ((__ismask(c)&(_D)) != 0) macro
/external/llvm/lib/TableGen/
H A DTGLexer.cpp138 if (isdigit(CurChar)) {
145 } while (isdigit(NextChar));
241 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_')
254 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_')
409 if (!isdigit(CurPtr[0])) {
416 while (isdigit(CurPtr[0]))
/external/valgrind/main/coregrind/m_demangle/
H A Dsafe-ctype.h132 #undef isdigit macro
133 #define isdigit(c) do_not_use_isdigit_with_safe_ctype macro
/external/valgrind/unittest/
H A Dold_test_suite.cc52 if (!isdigit(*cur)) {
157 if (isdigit(cur_arg[0])) {
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
H A Dirc_command.py63 if not svn_revision_list[0].isdigit():
67 if arg.lstrip("r").isdigit() and read_revision:
/external/chromium/base/
H A Dfile_util_android.cc150 if (isdigit(*trv))
/external/libpcap/
H A Detherent.c55 if (isdigit(c))
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp-lex.l114 while (!isdigit(*ptr))
130 while (!isdigit(*ptr))
/external/jpeg/
H A Drdswitch.c17 #include <ctype.h> /* to declare isdigit(), isspace() */
54 if (! isdigit(ch)) {
61 if (! isdigit(ch))
141 if (isdigit(ch)) { /* oops, put it back */
/external/wpa_supplicant_6/wpa_supplicant/src/wps/
H A Dhttpread.c143 if (isdigit(c))
203 if (!isdigit(*hbp))
244 isdigit(hbp[2]) && hbp[2] != '0')
250 if (!isdigit(*hbp))
321 isdigit(hbp[2]) && hbp[2] != '0')

Completed in 1508 milliseconds

12345678