/external/libcxx/test/std/localization/locales/locale.convenience/classification/ |
D | isgraph.pass.cpp | 20 assert(!std::isgraph(' ', l)); in main() 21 assert( std::isgraph('<', l)); in main() 22 assert(!std::isgraph('\x8', l)); in main() 23 assert( std::isgraph('A', l)); in main() 24 assert( std::isgraph('a', l)); in main() 25 assert( std::isgraph('z', l)); in main() 26 assert( std::isgraph('3', l)); in main() 27 assert( std::isgraph('.', l)); in main() 28 assert( std::isgraph('f', l)); in main() 29 assert( std::isgraph('9', l)); in main() [all …]
|
/external/libcxx/include/ |
D | cctype | 25 int isgraph(int c); 91 #ifdef isgraph 92 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_isgraph(int __c) {return isgraph(__c);} 93 #undef isgraph 94 inline _LIBCPP_INLINE_VISIBILITY int isgraph(int __c) {return __libcpp_isgraph(__c);} 95 #else // isgraph 96 using ::isgraph; 97 #endif // isgraph
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | ctype_h.pass.cpp | 36 #ifdef isgraph 37 #error isgraph defined 79 static_assert((std::is_same<decltype(isgraph(0)), int>::value), ""); in main() 94 assert(isgraph('a')); in main()
|
/external/libcxx/test/std/strings/c.strings/ |
D | cctype.pass.cpp | 36 #ifdef isgraph 37 #error isgraph defined 79 static_assert((std::is_same<decltype(std::isgraph(0)), int>::value), ""); in main() 94 assert(isgraph('a')); in main()
|
/external/wpa_supplicant_8/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()
|
D | wps_upnp_web.c | 884 while (isgraph(*b) && *b != '#') in web_get_action() 891 while (isgraph(*b) && *b != '"') in web_get_action()
|
D | wps_upnp_ssdp.c | 724 !isgraph(buf[strlen("M-SEARCH")])) { in ssdp_listener_handler()
|
D | wps_er.c | 514 (tagname[6] == '>' || !isgraph(tagname[6]))) { in wps_er_find_wfadevice()
|
/external/valgrind/coregrind/m_demangle/ |
D | safe-ctype.h | 134 #undef isgraph 135 #define isgraph(c) do_not_use_isgraph_with_safe_ctype macro
|
/external/pcre/dist/ |
D | pcre_maketables.c | 123 if (isgraph(i)) p[cbit_graph + i/8] |= 1 << (i&7); in pcre_maketables()
|
D | NON-AUTOTOOLS-BUILD | 663 documentation regarding isprint(), iscntrl(), isgraph() and ispunct(). I 700 $! isgraph() and ispunct() on OpenVMS must not produce the same results
|
/external/ipsec-tools/src/racoon/ |
D | plog.c | 257 if (isgraph((int)binstr[p])) {
|
/external/libcxx/include/support/xlocale/ |
D | xlocale.h | 46 return isgraph(c); in isgraph_l()
|
/external/c-ares/ |
D | setup_once.h | 249 #define ISGRAPH(x) (isgraph((int) ((unsigned char)x)))
|
/external/curl/lib/ |
D | curl_setup_once.h | 286 #define ISGRAPH(x) (isgraph((int) ((unsigned char)x)))
|
/external/libedit/src/ |
D | chartype.h | 139 #define Isgraph(x) isgraph((unsigned char)x)
|
/external/icu/icu4c/source/samples/ucnv/ |
D | convsamp.cpp | 55 (isgraph(c)) ) { in prettyPrintUChar() 141 if(isgraph(0x00FF & (int)uch[i])) { in printBytes()
|
/external/toybox/toys/pending/ |
D | getty.c | 255 while (i < HOSTNAME_SIZE-1 && isgraph(TT.buff[i])) i++; in read_login_name()
|
/external/opencv3/3rdparty/zlib/ |
D | trees.c | 605 n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1)); 1076 Tracecv(isgraph(lc), (stderr," '%c' ", lc));
|
/external/zlib/src/ |
D | trees.c | 605 n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1)); 1076 Tracecv(isgraph(lc), (stderr," '%c' ", lc));
|
/external/pdfium/third_party/zlib_v128/ |
D | trees.c | 605 n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1)); in gen_codes() 1076 Tracecv(isgraph(lc), (stderr," '%c' ", lc));
|
/external/bison/ |
D | maint.mk | 598 ctype_re = isalnum|isalpha|isascii|isblank|iscntrl|isdigit|isgraph|islower\
|
/external/pcre/dist/doc/html/ |
D | NON-AUTOTOOLS-BUILD.txt | 663 documentation regarding isprint(), iscntrl(), isgraph() and ispunct(). I 700 $! isgraph() and ispunct() on OpenVMS must not produce the same results
|
/external/jemalloc/src/ |
D | prof.c | 1990 if (!isgraph(c) && !isblank(c)) in prof_thread_name_set()
|