/third_party/musl/src/ctype/ |
D | isgraph.c | 2 #undef isgraph 4 int isgraph(int c) in isgraph() function 11 return isgraph(c); in __isgraph_l()
|
D | ispunct.c | 5 return isgraph(c) && !isalnum(c); in ispunct()
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | ctype.h | 15 int isgraph(int); 36 #define isgraph(a) (0 ? isgraph(a) : ((unsigned)(a)-0x21) < 0x5e) macro
|
/third_party/musl/porting/linux/user/include/ |
D | ctype.h | 15 int isgraph(int); 36 #define isgraph(a) (0 ? isgraph(a) : ((unsigned)(a)-0x21) < 0x5e) macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | ctype.h | 15 int isgraph(int); 36 #define isgraph(a) (0 ? isgraph(a) : ((unsigned)(a)-0x21) < 0x5e) macro
|
/third_party/musl/ndk_musl_include/ |
D | ctype.h | 15 int isgraph(int); 36 #define isgraph(a) (0 ? isgraph(a) : ((unsigned)(a)-0x21) < 0x5e) macro
|
/third_party/musl/include/ |
D | ctype.h | 15 int isgraph(int); 36 #define isgraph(a) (0 ? isgraph(a) : ((unsigned)(a)-0x21) < 0x5e) macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | ctype.h | 15 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/ |
D | httpread.c | 111 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()
|
D | upnp_xml.c | 209 !isgraph(tagname[match_len]))) { in xml_get_first_item()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/ |
D | httpread.c | 111 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()
|
D | upnp_xml.c | 209 !isgraph(tagname[match_len]))) { in xml_get_first_item()
|
/third_party/musl/libc-test/src/functionalext/supplement/ctype/ |
D | isgraph.c | 29 int ret = isgraph(*p); in isgraph_0100() 44 int ret = isgraph(*p); in isgraph_0200()
|
D | test_src_functionalext_supplement_ctype.gni | 56 "isgraph",
|
/third_party/boost/boost/spirit/home/support/char_encoding/ |
D | standard.hpp | 92 isgraph(int ch) in isgraph() function 95 return std::isgraph(ch) != 0; in isgraph()
|
D | standard_wide.hpp | 107 isgraph(wchar_t ch) in isgraph() function
|
/third_party/python/Lib/curses/ |
D | ascii.py | 60 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/ |
D | cctype | 17 using ::isgraph;
|
/third_party/musl/libc-test/src/api/ |
D | ctype.c | 11 {int(*p)(int) = isgraph;} in f()
|
/third_party/curl/lib/ |
D | curl_ctype.h | 43 #define ISGRAPH(x) (isgraph((int) ((unsigned char)x)))
|
/third_party/openssl/test/ |
D | ctype_internal_test.c | 43 && TEST_int_eq(isgraph(n) != 0, ossl_isgraph(n) != 0) in test_ctype_chars()
|
/third_party/boost/libs/config/test/ |
D | boost_no_ctype_functions.ipp | 33 pass_function(isgraph);
|
/third_party/pcre2/pcre2/src/ |
D | pcre2_maketables.c | 126 if (isgraph(i)) p[cbit_graph + i/8] |= 1u << (i&7);
|
/third_party/boost/boost/spirit/home/classic/core/primitives/impl/ |
D | primitives.ipp | 83 // isgraph 205 return isgraph(to_int_type(c)) ? true : false;
|
/third_party/abseil-cpp/absl/strings/ |
D | ascii_benchmark.cc | 89 BENCHMARK_TEMPLATE(BM_Ascii, std::isgraph);
|