Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:ISDIGIT
(Results
1 - 25
of
28
) sorted by relevance
1
2
/third_party/curl/lib/
H
A
D
curl_ctype.h
39
#define ISXDIGIT(x) (
ISDIGIT
(x) || ISLOWHEXALHA(x) || ISUPHEXALHA(x))
40
#define ISALNUM(x) (
ISDIGIT
(x) || ISLOWER(x) || ISUPPER(x))
43
#define
ISDIGIT
(x) (((x) >= '0') && ((x) <= '9'))
macro
H
A
D
parsedate.c
302
if(
ISDIGIT
(date[1])) {
in oneortwodigit()
318
if((hh < 24) && (*p == ':') &&
ISDIGIT
(p[1])) {
in match_time()
321
if((*p == ':') &&
ISDIGIT
(p[1])) {
in match_time()
410
else if(
ISDIGIT
(*date)) {
in parsedate()
H
A
D
ftplistparser.c
387
parser->os_type =
ISDIGIT
(buffer[0]) ? OS_TYPE_WIN_NT : OS_TYPE_UNIX;
in Curl_ftp_parselist()
448
while(
ISDIGIT
(*endptr))
in Curl_ftp_parselist()
532
if(
ISDIGIT
(c)) {
in Curl_ftp_parselist()
559
else if(!
ISDIGIT
(c)) {
in Curl_ftp_parselist()
614
if(
ISDIGIT
(c)) {
in Curl_ftp_parselist()
644
else if(!
ISDIGIT
(c)) {
in Curl_ftp_parselist()
H
A
D
curl_fnmatch.c
137
if(
ISDIGIT
(c))
in charclass()
316
found =
ISDIGIT
(*s);
in loop()
H
A
D
cf-h1-proxy.c
353
ISDIGIT
(header[9]) &&
ISDIGIT
(header[10]) &&
ISDIGIT
(header[11]) &&
in on_resp_header()
354
!
ISDIGIT
(header[12])) {
in on_resp_header()
H
A
D
mprintf.c
187
if(
ISDIGIT
(*input)) {
in dollarstring()
195
} while(
ISDIGIT
(*input));
in dollarstring()
333
while(
ISDIGIT
(*fmt)) {
in parsefmt()
414
} while(
ISDIGIT
(*fmt));
in parsefmt()
H
A
D
http.c
3602
while(*ptr && !
ISDIGIT
(*ptr) && *ptr != '*')
in Curl_http_header()
3606
if(
ISDIGIT
(*ptr)) {
in Curl_http_header()
4343
if(
ISDIGIT
(p[0]) &&
ISDIGIT
(p[1]) &&
ISDIGIT
(p[2])) {
in http_rw_headers()
4363
if(
ISDIGIT
(p[0]) &&
ISDIGIT
(p[1]) &&
ISDIGIT
(p[2])) {
in http_rw_headers()
4430
if(
ISDIGIT
(*p)) {
in http_rw_headers()
4432
if((p[0] == '.') &&
ISDIGIT
(
in http_rw_headers()
[all...]
H
A
D
smtp.c
216
if(len < 4 || !
ISDIGIT
(line[0]) || !
ISDIGIT
(line[1]) || !
ISDIGIT
(line[2]))
in smtp_endofresp()
H
A
D
imap.c
224
if(line < end &&
ISDIGIT
(*line)) {
in imap_matchresp()
228
while(line < end &&
ISDIGIT
(*line));
in imap_matchresp()
1094
while((len < 20) && p[len] &&
ISDIGIT
(p[len]))
in imap_state_select_resp()
H
A
D
ftp.c
530
#define STATUSCODE(line) (
ISDIGIT
(line[0]) &&
ISDIGIT
(line[1]) && \
531
ISDIGIT
(line[2]))
1810
if(!
ISDIGIT
(*p))
in match_pasv_6nums()
1846
/* the
ISDIGIT
() check here is because strtoul() accepts leading minus
in ftp_state_pasv_resp()
1848
if((ptr[1] == sep) && (ptr[2] == sep) &&
ISDIGIT
(ptr[3])) {
in ftp_state_pasv_resp()
2337
while(
ISDIGIT
(fdigit[-1]) && (fdigit > start))
in ftp_state_size_resp()
2517
if(!
ISDIGIT
(*bytes)) {
in ftp_state_get_resp()
H
A
D
altsvc.c
576
if(
ISDIGIT
(*p))
in Curl_altsvc_parse()
H
A
D
urlapi.c
550
if(!
ISDIGIT
(*portptr))
in Curl_parse_port()
686
if(!
ISDIGIT
(*c))
in ipv4_normalize()
H
A
D
curl_sasl.c
147
if(!ISUPPER(c) && !
ISDIGIT
(c) && c != '-' && c != '_')
in Curl_sasl_decode_mech()
/third_party/node/deps/cares/src/lib/
H
A
D
inet_net_pton.c
107
} else if (ISASCII(ch) &&
ISDIGIT
(ch)) {
in ares_inet_net_pton_ipv4()
118
} while ((ch = *src++) != '\0' && ISASCII(ch) &&
ISDIGIT
(ch));
in ares_inet_net_pton_ipv4()
130
if (!ISASCII(ch) || !
ISDIGIT
(ch)) {
in ares_inet_net_pton_ipv4()
139
if (ch == '/' && ISASCII(src[0]) &&
ISDIGIT
(src[0]) && dst > odst) {
in ares_inet_net_pton_ipv4()
150
} while ((ch = *src++) != '\0' && ISASCII(ch) &&
ISDIGIT
(ch));
in ares_inet_net_pton_ipv4()
H
A
D
setup_once.h
269
#define
ISDIGIT
(x) (isdigit((int)((unsigned char)x)))
macro
H
A
D
ares_getaddrinfo.c
259
if (!
ISDIGIT
(*p) && *p != '.') {
in fake_addrinfo()
/third_party/icu/icu4c/source/io/
H
A
D
uprntf_p.cpp
1041
#define
ISDIGIT
(s) (s) == DIGIT_ZERO || \
macro
1085
if(
ISDIGIT
(*alias)) {
in parseArguments()
1088
if(
ISDIGIT
(*alias)) {
in parseArguments()
1091
while(
ISDIGIT
(*alias)) {
in parseArguments()
1149
if(
ISDIGIT
(*alias)) {
in parseArguments()
1152
while(
ISDIGIT
(*alias)) {
in parseArguments()
1161
while (ISMOD(*alias) || ISFLAG(*alias) ||
ISDIGIT
(*alias) ||
in parseArguments()
1287
if(
ISDIGIT
(*alias)) {
in u_printf_parse()
1293
if(
ISDIGIT
(*alias)) {
in u_printf_parse()
1296
while(
ISDIGIT
(*alia
in u_printf_parse()
[all...]
H
A
D
uscanf_p.cpp
60
#define
ISDIGIT
(s) (s) == DIGIT_ZERO || \
macro
140
if(
ISDIGIT
(*s)) {
in u_scanf_parse_spec()
146
if(
ISDIGIT
(*s)) {
in u_scanf_parse_spec()
149
while(
ISDIGIT
(*s)) {
in u_scanf_parse_spec()
191
if(
ISDIGIT
(*s)){
in u_scanf_parse_spec()
194
while(
ISDIGIT
(*s)) {
in u_scanf_parse_spec()
/third_party/skia/third_party/externals/icu/source/io/
H
A
D
uprntf_p.cpp
1041
#define
ISDIGIT
(s) (s) == DIGIT_ZERO || \
macro
1085
if(
ISDIGIT
(*alias)) {
in parseArguments()
1088
if(
ISDIGIT
(*alias)) {
in parseArguments()
1091
while(
ISDIGIT
(*alias)) {
in parseArguments()
1149
if(
ISDIGIT
(*alias)) {
in parseArguments()
1152
while(
ISDIGIT
(*alias)) {
in parseArguments()
1161
while (ISMOD(*alias) || ISFLAG(*alias) ||
ISDIGIT
(*alias) ||
in parseArguments()
1287
if(
ISDIGIT
(*alias)) {
in u_printf_parse()
1293
if(
ISDIGIT
(*alias)) {
in u_printf_parse()
1296
while(
ISDIGIT
(*alia
in u_printf_parse()
[all...]
H
A
D
uscanf_p.cpp
60
#define
ISDIGIT
(s) (s) == DIGIT_ZERO || \
macro
140
if(
ISDIGIT
(*s)) {
in u_scanf_parse_spec()
146
if(
ISDIGIT
(*s)) {
in u_scanf_parse_spec()
149
while(
ISDIGIT
(*s)) {
in u_scanf_parse_spec()
191
if(
ISDIGIT
(*s)){
in u_scanf_parse_spec()
194
while(
ISDIGIT
(*s)) {
in u_scanf_parse_spec()
/third_party/curl/src/
H
A
D
tool_urlglob.c
251
else if(
ISDIGIT
(*pattern)) {
in glob_range()
264
while(
ISDIGIT
(*c)) {
in glob_range()
282
if(!
ISDIGIT
(*pattern)) {
in glob_range()
641
if(*filename == '#' &&
ISDIGIT
(filename[1])) {
in glob_match_url()
H
A
D
tool_getparam.c
1685
while(
ISDIGIT
(*p))
in getparameter()
2514
if(
ISDIGIT
(*nextarg) && !strchr(nextarg, '-')) {
in getparameter()
2536
if(!
ISDIGIT
(*tmp_range) && *tmp_range != '-' && *tmp_range != ',') {
in getparameter()
/third_party/curl/tests/server/
H
A
D
rtspd.c
275
while(*ptr && !
ISDIGIT
(*ptr))
in ProcessRequest()
428
if(portp && (*(portp + 1) != '\0') &&
ISDIGIT
(*(portp + 1)))
in ProcessRequest()
H
A
D
tftpd.c
1104
while(*ptr && !
ISDIGIT
(*ptr))
in validate_access()
/third_party/curl/lib/vssh/
H
A
D
libssh.c
2854
if(sshc->quote_attrs->gid == 0 && !
ISDIGIT
(sshc->quote_path1[0]) &&
in sftp_quote_stat()
2870
if(perms == 0 && !
ISDIGIT
(sshc->quote_path1[0])) {
in sftp_quote_stat()
2884
if(sshc->quote_attrs->uid == 0 && !
ISDIGIT
(sshc->quote_path1[0]) &&
in sftp_quote_stat()
Completed in 43 milliseconds
1
2