OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ISDIGIT
(Results
1 - 10
of
10
) sorted by null
/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
...]
/system/core/sh/
syntax.h
54
#define
ISDIGIT
01 /* a digit */
76
#define is_special(c) ((is_type+SYNBASE)[c] & (ISSPECL|
ISDIGIT
))
/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
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/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
/external/chromium/third_party/icu/source/io/
uprntf_p.c
[
all
...]
uscanf_p.c
58
#define
ISDIGIT
(s) (s) == DIGIT_ZERO || \
138
if(
ISDIGIT
(*s)) {
144
if(
ISDIGIT
(*s)) {
147
while(
ISDIGIT
(*s)) {
189
if(
ISDIGIT
(*s)){
192
while(
ISDIGIT
(*s)) {
[
all
...]
/external/icu4c/io/
uprntf_p.c
[
all
...]
uscanf_p.c
58
#define
ISDIGIT
(s) (s) == DIGIT_ZERO || \
138
if(
ISDIGIT
(*s)) {
144
if(
ISDIGIT
(*s)) {
147
while(
ISDIGIT
(*s)) {
189
if(
ISDIGIT
(*s)){
192
while(
ISDIGIT
(*s)) {
[
all
...]
/external/chromium/third_party/libevent/
evdns.c
383
#define
ISDIGIT
(c)
isdigit
((int)(unsigned char)(c))
[
all
...]
/external/clearsilver/util/regex/
regex.c
197
#define
ISDIGIT
(c) (IN_CTYPE_DOMAIN (c) &&
isdigit
(c))
[
all
...]
Completed in 2265 milliseconds