Home
last modified time | relevance | path

Searched refs:isgraph (Results 1 – 25 of 59) sorted by relevance

123

/third_party/musl/src/ctype/
Disgraph.c2 #undef isgraph
4 int isgraph(int c) in isgraph() function
11 return isgraph(c); in __isgraph_l()
Dispunct.c5 return isgraph(c) && !isalnum(c); in ispunct()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
Dhttpread.c111 end1 = !isgraph(c1); in word_eq()
112 end2 = !isgraph(c2); in word_eq()
162 while (isgraph(*hbp)) in httpread_hdr_option_analyze()
180 while (isgraph(*hbp)) in httpread_hdr_option_analyze()
206 if (!isgraph(*hbp)) in httpread_hdr_analyze()
215 while (isgraph(*hbp)) in httpread_hdr_analyze()
253 while (isgraph(*hbp)) in httpread_hdr_analyze()
263 while (isgraph(*hbp)) in httpread_hdr_analyze()
304 if (!isgraph(*hbp)) in httpread_hdr_analyze()
Dupnp_xml.c209 !isgraph(tagname[match_len]))) { in xml_get_first_item()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
Dhttpread.c111 end1 = !isgraph(c1); in word_eq()
112 end2 = !isgraph(c2); in word_eq()
162 while (isgraph(*hbp)) in httpread_hdr_option_analyze()
180 while (isgraph(*hbp)) in httpread_hdr_option_analyze()
206 if (!isgraph(*hbp)) in httpread_hdr_analyze()
215 while (isgraph(*hbp)) in httpread_hdr_analyze()
253 while (isgraph(*hbp)) in httpread_hdr_analyze()
263 while (isgraph(*hbp)) in httpread_hdr_analyze()
304 if (!isgraph(*hbp)) in httpread_hdr_analyze()
Dupnp_xml.c209 !isgraph(tagname[match_len]))) { in xml_get_first_item()
/third_party/musl/porting/linux/user/include/
Dctype.h15 int isgraph(int);
36 #define isgraph(a) (0 ? isgraph(a) : ((unsigned)(a)-0x21) < 0x5e) macro
/third_party/musl/porting/liteos_m/kernel/include/
Dctype.h15 int isgraph(int);
36 #define isgraph(a) (0 ? isgraph(a) : ((unsigned)(a)-0x21) < 0x5e) macro
/third_party/musl/include/
Dctype.h15 int isgraph(int);
36 #define isgraph(a) (0 ? isgraph(a) : ((unsigned)(a)-0x21) < 0x5e) macro
/third_party/musl/ndk_musl_include/
Dctype.h15 int isgraph(int);
36 #define isgraph(a) (0 ? isgraph(a) : ((unsigned)(a)-0x21) < 0x5e) macro
/third_party/musl/porting/uniproton/kernel/include/
Dctype.h15 int isgraph(int);
36 #define isgraph(a) (0 ? isgraph(a) : ((unsigned)(a)-0x21) < 0x5e) macro
/third_party/musl/porting/liteos_a/kernel/include/
Dctype.h15 int isgraph(int);
36 #define isgraph(a) (0 ? isgraph(a) : ((unsigned)(a)-0x21) < 0x5e) macro
/third_party/musl/libc-test/src/functionalext/supplement/ctype/
Disgraph.c29 int ret = isgraph(*p); in isgraph_0100()
44 int ret = isgraph(*p); in isgraph_0200()
Dtest_src_functionalext_supplement_ctype.gni56 "isgraph",
/third_party/python/Lib/curses/
Dascii.py60 def isgraph(c): return 33 <= _ctoi(c) <= 126 function
63 def ispunct(c): return isgraph(c) and not isalnum(c)
/third_party/musl/libc-test/src/api/
Dctype.c11 {int(*p)(int) = isgraph;} in f()
/third_party/openssl/test/
Dctype_internal_test.c43 && TEST_int_eq(isgraph(n) != 0, ossl_isgraph(n) != 0) in test_ctype_chars()
/third_party/pcre2/pcre2/src/
Dpcre2_maketables.c126 if (isgraph(i)) p[cbit_graph + i/8] |= 1u << (i&7);
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dascii_benchmark.cc89 BENCHMARK_TEMPLATE(BM_Ascii, std::isgraph);
/third_party/rust/crates/libc/libc-test/semver/
Dwindows.txt237 isgraph
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dchar_map_test.cc165 EXPECT_EQ(AsBool(std::isgraph(c)), in TEST()
/third_party/icu/icu4c/source/samples/ucnv/
Dconvsamp.cpp64 (isgraph(c)) ) { in prettyPrintUChar()
150 if(isgraph(0x00FF & (int)uch[i])) { in printBytes()
/third_party/flutter/skia/third_party/externals/icu/source/samples/ucnv/
Dconvsamp.cpp64 (isgraph(c)) ) { in prettyPrintUChar()
150 if(isgraph(0x00FF & (int)uch[i])) { in printBytes()
/third_party/skia/third_party/externals/icu/source/samples/ucnv/
Dconvsamp.cpp64 (isgraph(c)) ) { in prettyPrintUChar()
150 if(isgraph(0x00FF & (int)uch[i])) { in printBytes()
/third_party/node/deps/cares/src/lib/
Dsetup_once.h279 #define ISGRAPH(x) (isgraph((int) ((unsigned char)x)))

123