Home
last modified time | relevance | path

Searched refs:iscntrl (Results 1 - 25 of 33) sorted by relevance

12

/third_party/musl/libc-test/src/functionalext/supplement/ctype/
H A Discntrl.c29 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 Discntrl.c7 int iscntrl(int c) in iscntrl() function
22 return iscntrl(c); in __iscntrl_l()
/third_party/mesa3d/src/freedreno/decode/
H A Dutil.h107 #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 Dpgmdump2.c162 printf("%c", (isascii(c) && !iscntrl(c)) ? c : '.'); in dump_unknown()
/third_party/musl/libc-test/src/api/
H A Dctype.c9 {int(*p)(int) = iscntrl;} in f()
/third_party/musl/porting/linux/user/include/
H A Dctype.h13 int iscntrl(int);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dctype.h13 int iscntrl(int);
/third_party/musl/porting/uniproton/kernel/include/
H A Dctype.h13 int iscntrl(int);
/third_party/musl/porting/liteos_m/kernel/include/
H A Dctype.h13 int iscntrl(int);
/third_party/node/deps/v8/src/parsing/
H A Dliteral-buffer.h85 return iscntrl(code_unit) || isprint(code_unit); in IsValidAscii()
/third_party/musl/include/
H A Dctype.h13 int iscntrl(int);
/third_party/openssl/test/
H A Dctype_internal_test.c41 && TEST_int_eq(iscntrl(n) != 0, ossl_iscntrl(n) != 0) in test_ctype_chars()
/third_party/pcre2/pcre2/src/
H A Dpcre2_maketables.c129 if (iscntrl(i)) p[cbit_cntrl + i/8] |= 1u << (i&7);
/third_party/python/Lib/curses/
H A Dascii.py58 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 Dascii_benchmark.cc83 BENCHMARK_TEMPLATE(BM_Ascii, std::iscntrl);
H A Dascii_test.cc146 EXPECT_EQ(iscntrl(i) != 0, absl::ascii_iscntrl(i)) << i; in TEST()
/third_party/mesa3d/src/gtest/src/
H A Dgtest-printers.cc366 if (std::iscntrl(ch)) { in ContainsUnprintableControlCodes()
/third_party/toybox/toys/pending/
H A Dtr.c182 if (iscntrl(k)) set[i++] = k; in expand_set()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dchar_map_test.cc161 EXPECT_EQ(AsBool(std::iscntrl(c)), in TEST()
/third_party/backends/lib/
H A Dsnprintf.c811 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 Dselinux_config.c194 (isspace(*end) || iscntrl(*end))) { in init_selinux_config()
/third_party/googletest/googletest/src/
H A Dgtest-printers.cc464 if (std::iscntrl(ch)) { in ContainsUnprintableControlCodes()
/third_party/node/deps/googletest/src/
H A Dgtest-printers.cc467 if (std::iscntrl(ch)) { in ContainsUnprintableControlCodes()
/third_party/vixl/src/aarch64/
H A Ddebugger-aarch64.cc123 [](char c) { return std::iscntrl(c); }), in Debug()
/third_party/rust/crates/libc/src/windows/
H A Dmod.rs293 pub fn iscntrl(c: c_int) -> c_int; in iscntrl() functions

Completed in 14 milliseconds

12