OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isdigit
(Results
1 - 25
of
196
) sorted by null
1
2
3
4
5
6
7
8
/external/srec/portable/src/
ptypes.c
33
if (!
isdigit
(*str))
/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/e2fsprogs/misc/
base_device.c
75
!
isdigit
(cp[1]) || !
isdigit
(cp[3]))
85
if (
isdigit
(*cp))
114
if (!
isdigit
(*cp))
136
if (!
isdigit
(*cp))
/bionic/libstdc++/include/
cctype
46
using ::
isdigit
;
/device/samsung/crespo/libaudio2/
amix.c
31
if (
isdigit
(name[0]))
68
if (
isdigit
(argv[0][0]))
/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
/ndk/sources/cxx-stl/system/include/
cctype
46
using ::
isdigit
;
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
cctype
44
using ::
isdigit
;
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
cctype
44
using ::
isdigit
;
/system/extras/tests/bionic/libstdc++/
test_cctype.cpp
50
#ifdef
isdigit
82
using std::
isdigit
;
/external/e2fsprogs/lib/blkid/
version.c
33
if (!
isdigit
(*cp))
/external/e2fsprogs/lib/ext2fs/
version.c
39
if (!
isdigit
(*cp))
/external/stlport/stlport/stl/
_cctype.h
35
using _STLP_VENDOR_CSTD::
isdigit
;
/ndk/sources/android/stlport/stlport/stl/
_cctype.h
35
using _STLP_VENDOR_CSTD::
isdigit
;
/bionic/libc/string/
strtotimeval.c
50
while ( *s &&
isdigit
(*s) )
/bionic/libc/inet/
inet_aton.c
81
* 0x=hex, 0=octal,
isdigit
=decimal.
83
if (!
isdigit
(c))
94
if (isascii(c) &&
isdigit
(c)) {
/sdk/emulator/qtools/
parse_options.cpp
67
} else if (
isdigit
(*optarg)) {
86
} else if (
isdigit
(*optarg)) {
/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)) {
/device/samsung/crespo/alsa-lib/src/control/
cards.c
119
if ((
isdigit
(*string) && *(string + 1) == 0) ||
120
(
isdigit
(*string) &&
isdigit
(*(string + 1)) && *(string + 2) == 0)) {
/external/ppp/pppd/plugins/radius/
ip_util.c
71
else if (!
isdigit
(*addr))
/bionic/libc/include/
ctype.h
75
int
isdigit
(int);
117
__CTYPE_INLINE int
isdigit
(int c)
function
/development/ndk/platforms/android-3/include/
ctype.h
75
int
isdigit
(int);
117
__CTYPE_INLINE int
isdigit
(int c)
function
/external/stlport/stlport/
ctype.h
57
# undef
isdigit
macro
74
__inline int (
isdigit
)(int c) { return _isctype(c, _DIGIT); }
function
/ndk/sources/android/stlport/stlport/
ctype.h
57
# undef
isdigit
macro
74
__inline int (
isdigit
)(int c) { return _isctype(c, _DIGIT); }
function
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
ctype.h
75
int
isdigit
(int);
117
__CTYPE_INLINE int
isdigit
(int c)
function
Completed in 939 milliseconds
1
2
3
4
5
6
7
8