/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/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/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/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/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/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/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/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/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/musl/libc-test/src/api/ |
D | ctype.c | 11 {int(*p)(int) = isgraph;} in f()
|
/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/pcre2/pcre2/src/ |
D | pcre2_maketables.c | 126 if (isgraph(i)) p[cbit_graph + i/8] |= 1u << (i&7);
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | ascii_benchmark.cc | 89 BENCHMARK_TEMPLATE(BM_Ascii, std::isgraph);
|
/third_party/rust/crates/libc/libc-test/semver/ |
D | windows.txt | 237 isgraph
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
D | char_map_test.cc | 165 EXPECT_EQ(AsBool(std::isgraph(c)), in TEST()
|
/third_party/icu/icu4c/source/samples/ucnv/ |
D | convsamp.cpp | 64 (isgraph(c)) ) { in prettyPrintUChar() 150 if(isgraph(0x00FF & (int)uch[i])) { in printBytes()
|
/third_party/flutter/skia/third_party/externals/icu/source/samples/ucnv/ |
D | convsamp.cpp | 64 (isgraph(c)) ) { in prettyPrintUChar() 150 if(isgraph(0x00FF & (int)uch[i])) { in printBytes()
|
/third_party/skia/third_party/externals/icu/source/samples/ucnv/ |
D | convsamp.cpp | 64 (isgraph(c)) ) { in prettyPrintUChar() 150 if(isgraph(0x00FF & (int)uch[i])) { in printBytes()
|
/third_party/node/deps/cares/src/lib/ |
D | setup_once.h | 279 #define ISGRAPH(x) (isgraph((int) ((unsigned char)x)))
|