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:isascii
(Results
1 - 25
of
45
) sorted by relevance
1
2
/third_party/musl/porting/linux/user/include/
H
A
D
ctype.h
63
int
isascii
(int);
68
#define
isascii
(a) (0 ?
isascii
(a) : (unsigned)(a) < 128)
macro
/third_party/musl/porting/liteos_a/kernel/include/
H
A
D
ctype.h
63
int
isascii
(int);
68
#define
isascii
(a) (0 ?
isascii
(a) : (unsigned)(a) < 128)
macro
/third_party/musl/porting/uniproton/kernel/include/
H
A
D
ctype.h
63
int
isascii
(int);
67
#define
isascii
(a) (0 ?
isascii
(a) : (unsigned)(a) < 128)
macro
/third_party/musl/porting/liteos_m/kernel/include/
H
A
D
ctype.h
63
int
isascii
(int);
67
#define
isascii
(a) (0 ?
isascii
(a) : (unsigned)(a) < 128)
macro
/third_party/musl/include/
H
A
D
ctype.h
63
int
isascii
(int);
68
#define
isascii
(a) (0 ?
isascii
(a) : (unsigned)(a) < 128)
macro
/third_party/musl/porting/uniproton/kernel/src/ctype/
H
A
D
isascii.c
2
#undef
isascii
macro
4
int
isascii
(int c)
in isascii()
function
/third_party/musl/porting/liteos_m/kernel/src/ctype/
H
A
D
isascii.c
2
#undef
isascii
macro
4
int
isascii
(int c)
in isascii()
function
/third_party/musl/src/ctype/
H
A
D
isascii.c
2
#undef
isascii
macro
4
int
isascii
(int c)
in isascii()
function
/third_party/musl/libc-test/src/functionalext/supplement/ctype/
H
A
D
isascii.c
32
EXPECT_EQ("isascii_0100",
isascii
(ascii[i]), ONREXPECT);
in isascii_0100()
36
EXPECT_EQ("isascii_0100",
isascii
(not_ascii[i]), CMPFLAG);
in isascii_0100()
/third_party/mesa3d/src/freedreno/decode/
H
A
D
util.h
107
#define is_ok_ascii(c) (
isascii
(c) && ((c == '\t') || !iscntrl(c)))
173
printf("%c", (
isascii
(c) && !iscntrl(c)) ? c : '.');
in dump_hex_ascii()
189
printf("%c", (
isascii
(c) && !iscntrl(c)) ? c : '.');
in dump_hex_ascii()
H
A
D
pgmdump2.c
162
printf("%c", (
isascii
(c) && !iscntrl(c)) ? c : '.');
in dump_unknown()
172
if ((d < state->sz) &&
isascii
(state->buf[d]) &&
in dump_unknown()
173
(strlen(&state->buf[d]) > 2) &&
isascii
(state->buf[d + 1]))
in dump_unknown()
/third_party/bounds_checking_function/src/
H
A
D
secinput.h
135
#ifndef
isascii
136
#define
isascii
(c) (((unsigned char)(c)) <= 0x7f)
macro
/third_party/skia/third_party/externals/freetype/src/tools/ftrandom/
H
A
D
ftrandom.c
96
unsigned int
isascii
: 1;
member
273
item->isbinary = item->
isascii
= item->ishex = false;
in figurefiletype()
307
item->
isascii
= true;
in figurefiletype()
473
else if ( item->
isascii
)
in copyfont()
/third_party/musl/src/stdio/
H
A
D
ungetwc.c
27
if (
isascii
(c)) *--f->rpos = c;
in ungetwc()
H
A
D
fputwc.c
16
if (
isascii
(c)) {
in __fputwc_unlocked()
/third_party/musl/libc-test/src/api/
H
A
D
ctype.c
7
{int(*p)(int) =
isascii
;}
in f()
/third_party/elfutils/libasm/
H
A
D
asm_addstrz.c
88
else if (!
isascii
(*str))
in asm_addstrz()
/third_party/openssl/test/
H
A
D
ctype_internal_test.c
30
if (!TEST_int_eq(
isascii
((unsigned char)n) != 0, ossl_isascii(n) != 0))
in test_ctype_chars()
/third_party/musl/Benchmark/musl/
H
A
D
libc_ctype.cpp
183
benchmark::DoNotOptimize(
isascii
(ch));
in Bm_function_Isascii_yes()
192
benchmark::DoNotOptimize(
isascii
(ch));
in Bm_function_Isascii_no()
/third_party/icu/icu4c/source/tools/tzcode/
H
A
D
zdump.c
39
#ifndef
isascii
40
#define
isascii
(x) 1
macro
41
#endif /* !defined
isascii
*/
292
while (
isascii
((unsigned char) *cp) && isalpha((unsigned char) *cp))
in abbrok()
302
if (
isascii
((unsigned char) *cp) &&
in abbrok()
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
H
A
D
zdump.c
37
#ifndef
isascii
38
#define
isascii
(x) 1
macro
39
#endif /* !defined
isascii
*/
298
while (
isascii
((unsigned char) *cp) && isalpha((unsigned char) *cp))
in abbrok()
308
if (
isascii
((unsigned char) *cp) &&
in abbrok()
/third_party/python/Lib/urllib/
H
A
D
parse.py
179
if port.isdigit() and port.
isascii
():
422
if not netloc or netloc.
isascii
():
487
if i > 0 and url[0].
isascii
() and url[0].isalpha():
1159
if port.isdigit() and port.
isascii
():
/third_party/python/Lib/curses/
H
A
D
ascii.py
56
def
isascii
(c): return 0 <= _ctoi(c) <= 127 # ?
function
/third_party/python/Lib/encodings/
H
A
D
__init__.py
64
if c.
isascii
():
/third_party/selinux/libselinux/src/
H
A
D
label_support.c
37
if (!
isascii
(**ptr)) {
in read_spec_entry()
Completed in 14 milliseconds
1
2