OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isdigit
(Results
26 - 50
of
284
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/system/core/sh/
syntax.h
54
#define
ISDIGIT
01 /* a digit */
76
#define is_special(c) ((is_type+SYNBASE)[c] & (ISSPECL|
ISDIGIT
))
syntax.c
91
set_range('0', '9',
ISDIGIT
)
/bionic/libc/netbsd/resolv/
res_debug.c
733
while (
isdigit
((unsigned char)*cp))
738
if (
isdigit
((unsigned char)*cp)) {
740
if (
isdigit
((unsigned char)*cp)) {
771
while (
isdigit
((unsigned char)*cp))
777
if (!(
isdigit
((unsigned char)*cp)))
780
while (
isdigit
((unsigned char)*cp))
786
if (!(
isdigit
((unsigned char)*cp)))
789
while (
isdigit
((unsigned char)*cp))
794
if (
isdigit
((unsigned char)*cp)) {
796
if (
isdigit
((unsigned char)*cp))
[
all
...]
/bionic/libc/string/
strtotimeval.c
50
while ( *s &&
isdigit
(*s) )
/bionic/libstdc++/include/
cctype
44
using ::
isdigit
;
/external/kernel-headers/original/linux/
ctype.h
25
#define
isdigit
(c) ((__ismask(c)&(_D)) != 0)
macro
/external/srec/portable/src/
ptypes.c
33
if (!
isdigit
(*str))
/external/stlport/stlport/using/
locale
20
using _STLP_NEW_IO_NAMESPACE::
isdigit
;
/ndk/build/platforms/android-5/arch-x86/usr/include/
cctype
44
using ::
isdigit
;
ctype.h
71
int
isdigit
(int);
113
__CTYPE_INLINE int
isdigit
(int c)
function
/ndk/build/platforms/android-8/arch-x86/usr/include/
cctype
44
using ::
isdigit
;
ctype.h
75
int
isdigit
(int);
117
__CTYPE_INLINE int
isdigit
(int c)
function
/bionic/libc/inet/
inet_aton.c
81
* 0x=hex, 0=octal,
isdigit
=decimal.
83
if (!
isdigit
(c))
94
if (isascii(c) &&
isdigit
(c)) {
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
safe-ctype.h
93
#define
ISDIGIT
(c) _sch_test(c, _sch_isdigit)
129
#undef
isdigit
macro
130
#define
isdigit
(c) do_not_use_isdigit_with_safe_ctype
macro
/system/core/toolbox/
ps.c
181
if(
isdigit
(de->d_name[0])){
210
} else if(
isdigit
(argv[1][0])){
223
if(
isdigit
(de->d_name[0])){
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
CharacterTest.java
[
all
...]
/external/jpeg/
rdswitch.c
17
#include <ctype.h> /* to declare
isdigit
(), isspace() */
54
if (!
isdigit
(ch)) {
61
if (!
isdigit
(ch))
141
if (
isdigit
(ch)) { /* oops, put it back */
/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
/ndk/build/platforms/android-3/arch-arm/usr/include/
ctype.h
75
int
isdigit
(int);
117
__CTYPE_INLINE int
isdigit
(int c)
function
/ndk/build/platforms/android-4/arch-arm/usr/include/
ctype.h
75
int
isdigit
(int);
117
__CTYPE_INLINE int
isdigit
(int c)
function
/ndk/build/platforms/android-5/arch-arm/usr/include/
ctype.h
75
int
isdigit
(int);
117
__CTYPE_INLINE int
isdigit
(int c)
function
/ndk/build/platforms/android-8/arch-arm/usr/include/
ctype.h
75
int
isdigit
(int);
117
__CTYPE_INLINE int
isdigit
(int c)
function
/bionic/libc/netbsd/nameser/
ns_ttl.c
112
if (
isdigit
(ch)) {
/bionic/libc/stdlib/
strtoul.c
77
if (
isdigit
(c))
Completed in 285 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>