Home
last modified time | relevance | path

Searched refs:isgraph (Results 1 – 25 of 69) 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/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/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/ndk_musl_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/porting/uniproton/kernel/include/
Dctype.h15 int isgraph(int);
36 #define isgraph(a) (0 ? isgraph(a) : ((unsigned)(a)-0x21) < 0x5e) macro
/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/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/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/boost/boost/spirit/home/support/char_encoding/
Dstandard.hpp92 isgraph(int ch) in isgraph() function
95 return std::isgraph(ch) != 0; in isgraph()
Dstandard_wide.hpp107 isgraph(wchar_t ch) in isgraph() function
/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/boost/boost/compatibility/cpp_c_headers/
Dcctype17 using ::isgraph;
/third_party/musl/libc-test/src/api/
Dctype.c11 {int(*p)(int) = isgraph;} in f()
/third_party/curl/lib/
Dcurl_ctype.h43 #define ISGRAPH(x) (isgraph((int) ((unsigned char)x)))
/third_party/openssl/test/
Dctype_internal_test.c43 && TEST_int_eq(isgraph(n) != 0, ossl_isgraph(n) != 0) in test_ctype_chars()
/third_party/boost/libs/config/test/
Dboost_no_ctype_functions.ipp33 pass_function(isgraph);
/third_party/pcre2/pcre2/src/
Dpcre2_maketables.c126 if (isgraph(i)) p[cbit_graph + i/8] |= 1u << (i&7);
/third_party/boost/boost/spirit/home/classic/core/primitives/impl/
Dprimitives.ipp83 // isgraph
205 return isgraph(to_int_type(c)) ? true : false;
/third_party/abseil-cpp/absl/strings/
Dascii_benchmark.cc89 BENCHMARK_TEMPLATE(BM_Ascii, std::isgraph);

123