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:isalnum
(Results
1 - 25
of
120
) sorted by relevance
1
2
3
4
5
/third_party/musl/libc-test/src/functionalext/supplement/ctype/ctype_gtest/
H
A
D
ctype_isalnum_test.cpp
13
* @tc.desc: Validate the functionality of the
isalnum
interface in identifying numbers and letters, and correctly
19
EXPECT_TRUE(
isalnum
('1'));
in HWTEST_F()
20
EXPECT_TRUE(
isalnum
('B'));
in HWTEST_F()
21
EXPECT_TRUE(
isalnum
('b'));
in HWTEST_F()
22
EXPECT_FALSE(
isalnum
('@'));
in HWTEST_F()
/third_party/musl/libc-test/src/functionalext/supplement/ctype/
H
A
D
isalnum.c
29
int ret =
isalnum
('a');
in isalnum_0100()
40
int ret =
isalnum
('1');
in isalnum_0200()
52
int ret =
isalnum
('*');
in isalnum_0300()
65
int ret =
isalnum
((char)i);
in isalnum_0400()
/third_party/musl/porting/liteos_m/kernel/src/ctype/
H
A
D
isalnum.c
3
int
isalnum
(int c)
in isalnum()
function
10
return
isalnum
(c);
in __isalnum_l()
/third_party/musl/porting/uniproton/kernel/src/ctype/
H
A
D
isalnum.c
3
int
isalnum
(int c)
in isalnum()
function
10
return
isalnum
(c);
in __isalnum_l()
/third_party/musl/src/ctype/
H
A
D
isalnum.c
7
int
isalnum
(int c)
in isalnum()
function
22
return
isalnum
(c);
in __isalnum_l()
H
A
D
ispunct.c
9
return isgraph(c) && !
isalnum
(c);
in ispunct()
/third_party/musl/Benchmark/musl/
H
A
D
libc_ctype.cpp
77
benchmark::DoNotOptimize(
isalnum
('a'));
in Bm_function_Isalnum_a()
85
benchmark::DoNotOptimize(
isalnum
('A'));
in Bm_function_Isalnum_A()
93
benchmark::DoNotOptimize(
isalnum
('0'));
in Bm_function_Isalnum_0()
102
benchmark::DoNotOptimize(
isalnum
(i));
in Bm_function_Isalnum_all_ascii()
/third_party/pcre2/pcre2/src/
H
A
D
pcre2_maketables.c
122
if (
isalnum
(i)) p[cbit_word + i/8] |= 1u << (i&7);
145
if (
isalnum
(i) || i == '_') x += ctype_word;
/third_party/python/Lib/curses/
H
A
D
ascii.py
54
def
isalnum
(c): return isalpha(c) or isdigit(c)
function
63
def ispunct(c): return isgraph(c) and not
isalnum
(c)
/third_party/pulseaudio/src/pulsecore/
H
A
D
ltdl-helper.c
56
if (!
isalnum
((unsigned char)*c))
in pa_load_sym()
/third_party/musl/libc-test/src/api/
H
A
D
ctype.c
5
{int(*p)(int) =
isalnum
;}
in f()
/third_party/python/Tools/scripts/
H
A
D
fixheader.py
32
if ord(c)<=0x80 and c.
isalnum
():
/third_party/toybox/toys/other/
H
A
D
mkpasswd.c
47
// In C locale,
isalnum
() means [A-Za-Z0-0]
in mkpasswd_main()
48
while (
isalnum
(*s) || *s == '.' || *s == '/') s++;
in mkpasswd_main()
/third_party/alsa-lib/src/control/
H
A
D
eld.c
94
valid += !!
isalnum
(c);
in __snd_pcm_info_eld_fixup()
/third_party/musl/porting/linux/user/include/
H
A
D
ctype.h
10
int
isalnum
(int);
/third_party/musl/porting/liteos_a/kernel/include/
H
A
D
ctype.h
10
int
isalnum
(int);
/third_party/musl/porting/uniproton/kernel/include/
H
A
D
ctype.h
10
int
isalnum
(int);
/third_party/musl/porting/liteos_m/kernel/include/
H
A
D
ctype.h
10
int
isalnum
(int);
/third_party/mesa3d/src/util/
H
A
D
xxd.py
46
return "".join([c if c.
isalnum
() or c == "_" else "_" for c in n])
/third_party/musl/include/
H
A
D
ctype.h
10
int
isalnum
(int);
/third_party/openssl/test/
H
A
D
ctype_internal_test.c
37
&& TEST_int_eq(
isalnum
(n) != 0, ossl_isalnum(n) != 0)
in test_ctype_chars()
/third_party/python/Include/
H
A
D
pyport.h
480
#undef
isalnum
macro
481
#define
isalnum
(c) iswalnum(btowc(c))
macro
/third_party/cups-filters/utils/
H
A
D
driverless.c
304
while (
isalnum
(*ptr & 255) || *ptr == '-' || *ptr == '.') {
in listPrintersInArray()
305
if (
isalnum
(*ptr & 255) && valptr < (value + sizeof(value) - 1))
in listPrintersInArray()
513
while (ptr && !
isalnum
(*ptr & 255)) ptr ++;
in list_printers()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
H
A
D
wps_upnp_ssdp.c
51
end1 = !(
isalnum
(c1) || c1 == '_' || c1 == '-');
in token_eq()
52
end2 = !(
isalnum
(c2) || c2 == '_' || c2 == '-');
in token_eq()
66
int end = !(
isalnum
(c) || c == '_' || c == '-');
in token_length()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
H
A
D
wps_upnp_ssdp.c
51
end1 = !(
isalnum
(c1) || c1 == '_' || c1 == '-');
in token_eq()
52
end2 = !(
isalnum
(c2) || c2 == '_' || c2 == '-');
in token_eq()
66
int end = !(
isalnum
(c) || c == '_' || c == '-');
in token_length()
Completed in 11 milliseconds
1
2
3
4
5