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:iscntrl
(Results
1 - 25
of
33
) sorted by relevance
1
2
/third_party/musl/libc-test/src/functionalext/supplement/ctype/
H
A
D
iscntrl.c
29
int ret =
iscntrl
(0);
in iscntrl_0100()
40
int ret =
iscntrl
(31);
in iscntrl_0200()
51
int ret =
iscntrl
(127);
in iscntrl_0300()
63
int ret =
iscntrl
('[');
in iscntrl_0400()
76
int ret =
iscntrl
((char)i);
in iscntrl_0500()
/third_party/musl/src/ctype/
H
A
D
iscntrl.c
7
int
iscntrl
(int c)
in iscntrl()
function
22
return
iscntrl
(c);
in __iscntrl_l()
/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()
/third_party/musl/libc-test/src/api/
H
A
D
ctype.c
9
{int(*p)(int) =
iscntrl
;}
in f()
/third_party/musl/porting/linux/user/include/
H
A
D
ctype.h
13
int
iscntrl
(int);
/third_party/musl/porting/liteos_a/kernel/include/
H
A
D
ctype.h
13
int
iscntrl
(int);
/third_party/musl/porting/uniproton/kernel/include/
H
A
D
ctype.h
13
int
iscntrl
(int);
/third_party/musl/porting/liteos_m/kernel/include/
H
A
D
ctype.h
13
int
iscntrl
(int);
/third_party/node/deps/v8/src/parsing/
H
A
D
literal-buffer.h
85
return
iscntrl
(code_unit) || isprint(code_unit);
in IsValidAscii()
/third_party/musl/include/
H
A
D
ctype.h
13
int
iscntrl
(int);
/third_party/openssl/test/
H
A
D
ctype_internal_test.c
41
&& TEST_int_eq(
iscntrl
(n) != 0, ossl_iscntrl(n) != 0)
in test_ctype_chars()
/third_party/pcre2/pcre2/src/
H
A
D
pcre2_maketables.c
129
if (
iscntrl
(i)) p[cbit_cntrl + i/8] |= 1u << (i&7);
/third_party/python/Lib/curses/
H
A
D
ascii.py
58
def
iscntrl
(c): return 0 <= _ctoi(c) <= 31 or _ctoi(c) == 127
function
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H
A
D
ascii_benchmark.cc
83
BENCHMARK_TEMPLATE(BM_Ascii, std::
iscntrl
);
H
A
D
ascii_test.cc
146
EXPECT_EQ(
iscntrl
(i) != 0, absl::ascii_iscntrl(i)) << i;
in TEST()
/third_party/mesa3d/src/gtest/src/
H
A
D
gtest-printers.cc
366
if (std::
iscntrl
(ch)) {
in ContainsUnprintableControlCodes()
/third_party/toybox/toys/pending/
H
A
D
tr.c
182
if (
iscntrl
(k)) set[i++] = k;
in expand_set()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H
A
D
char_map_test.cc
161
EXPECT_EQ(AsBool(std::
iscntrl
(c)),
in TEST()
/third_party/backends/lib/
H
A
D
snprintf.c
811
if( visible_control &&
iscntrl
( c ) && c != '\t' && c != '\n' ){
in fmtstr()
828
if( visible_control &&
iscntrl
( c ) && c != '\t' && c != '\n' ){
in fmtstr()
/third_party/selinux/libselinux/src/
H
A
D
selinux_config.c
194
(isspace(*end) ||
iscntrl
(*end))) {
in init_selinux_config()
/third_party/googletest/googletest/src/
H
A
D
gtest-printers.cc
464
if (std::
iscntrl
(ch)) {
in ContainsUnprintableControlCodes()
/third_party/node/deps/googletest/src/
H
A
D
gtest-printers.cc
467
if (std::
iscntrl
(ch)) {
in ContainsUnprintableControlCodes()
/third_party/vixl/src/aarch64/
H
A
D
debugger-aarch64.cc
123
[](char c) { return std::
iscntrl
(c); }),
in Debug()
/third_party/rust/crates/libc/src/windows/
H
A
D
mod.rs
293
pub fn
iscntrl
(c: c_int) -> c_int;
in iscntrl()
functions
Completed in 14 milliseconds
1
2