OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isdigit
(Results
51 - 75
of
284
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/bionic/libc/stdlib/
strtoumax.c
90
if (
isdigit
(c))
wchar.c
123
int iswdigit(wint_t wc) { return
isdigit
(wc); }
139
case WC_TYPE_DIGIT: return
isdigit
(wc);
/external/icu4c/test/perf/charperf/
charperf.h
134
inline void
isDigit
(UChar32 ch)
/external/libpcap/
etherent.c
55
if (
isdigit
(c))
fad-glifc.c
199
while (
isdigit
((unsigned char)*p))
335
while (
isdigit
((unsigned char)*q))
/external/libpcap/missing/
snprintf.c
324
if (
isdigit
(c))
328
} while(
isdigit
(c));
338
if (
isdigit
(c))
342
} while(
isdigit
(c));
/external/sonivox/arm-fm-22k/lib_src/
eas_ctype.h
35
EAS_INLINE EAS_I8
IsDigit
(EAS_I8 c) { return ((c >= '0') && (c <= '9')); }
/external/sonivox/arm-hybrid-22k/lib_src/
eas_ctype.h
35
EAS_INLINE EAS_I8
IsDigit
(EAS_I8 c) { return ((c >= '0') && (c <= '9')); }
/external/sonivox/arm-wt-22k/lib_src/
eas_ctype.h
35
EAS_INLINE EAS_I8
IsDigit
(EAS_I8 c) { return ((c >= '0') && (c <= '9')); }
/external/tcpdump/missing/
snprintf.c
324
if (
isdigit
(c))
328
} while(
isdigit
(c));
338
if (
isdigit
(c))
342
} while(
isdigit
(c));
/external/webkit/JavaScriptCore/wtf/unicode/glib/
UnicodeGLib.h
175
inline bool
isDigit
(UChar32 c)
/external/webkit/JavaScriptCore/wtf/unicode/wince/
UnicodeWince.cpp
70
bool
isDigit
(wchar_t c)
/external/webkit/WebKitTools/wx/build/
wxpresets.py
43
if value.
isdigit
():
/packages/apps/Calculator/src/com/android/calculator2/
CalculatorEditable.java
67
while (p >= 0 && Character.
isDigit
(charAt(p))) {
/external/e2fsprogs/misc/
e2initrd_helper.c
216
if (!
isdigit
(*p)) {
222
if (!
isdigit
(*p))
/external/srec/portable/include/
ptypes.h
325
* LCHAR version of
isdigit
()
327
#define LISDIGIT
isdigit
/external/opencore/protocols/http_parcom/src/
http_parser.cpp
35
inline bool
isDigit
(const char c)
42
return (
isDigit
(c) || (c >= 65 && c <= 70) || (c >= 97 && c <= 102)); // 0-9, A-F or a-f
263
while (!
isDigit
(*ptr) && len > 0)
270
while (
isDigit
(*ptr) && len > 0)
278
while (!
isDigit
(*ptr) && len > 0)
285
while (
isDigit
(*ptr) && len > 0)
293
while (!
isDigit
(*ptr) && len > 0)
300
while (
isDigit
(*ptr) && len > 0)
[
all
...]
/external/wpa_supplicant_6/wpa_supplicant/src/wps/
httpread.c
143
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')
/external/webkit/WebKitTools/android/flex-2.5.4a/
misc.c
561
isdigit
( array[sptr] ) )
563
* because if
isdigit
() is a macro it might
585
* because if
isdigit
() is a macro it might
/external/icu4c/io/
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
...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/utils/
URI.java
693
if (!
isDigit
(portStr.charAt(i)))
[
all
...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
URI.java
713
if (!
isDigit
(portStr.charAt(i)))
[
all
...]
/external/blktrace/
blkparse_fmt.c
270
if (
isdigit
(*p)) {
274
} while ((*p) && (
isdigit
(*p)));
/external/e2fsprogs/lib/ext2fs/
dosio.c
241
part->pno =
isdigit
((int)tmp[3]) ? tmp[3] - '0' - 1: 0;
248
part->phys =
isdigit
((int)tmp[2]) ? tmp[2] - '0' : 0;
/external/ppp/pppd/plugins/radius/
dict.c
136
if (!
isdigit
(*valstr))
239
if (!
isdigit
(*valstr))
Completed in 654 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>