Home
last modified time | relevance | path

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

12

/external/libcxx/test/std/localization/locales/locale.convenience/classification/
Disgraph.pass.cpp20 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/
Dcctype25 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/
Dctype_h.pass.cpp36 #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/
Dcctype.pass.cpp36 #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/
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()
Dwps_upnp_web.c884 while (isgraph(*b) && *b != '#') in web_get_action()
891 while (isgraph(*b) && *b != '"') in web_get_action()
Dwps_upnp_ssdp.c724 !isgraph(buf[strlen("M-SEARCH")])) { in ssdp_listener_handler()
Dwps_er.c514 (tagname[6] == '>' || !isgraph(tagname[6]))) { in wps_er_find_wfadevice()
/external/valgrind/coregrind/m_demangle/
Dsafe-ctype.h134 #undef isgraph
135 #define isgraph(c) do_not_use_isgraph_with_safe_ctype macro
/external/pcre/dist/
Dpcre_maketables.c123 if (isgraph(i)) p[cbit_graph + i/8] |= 1 << (i&7); in pcre_maketables()
DNON-AUTOTOOLS-BUILD663 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/
Dplog.c257 if (isgraph((int)binstr[p])) {
/external/libcxx/include/support/xlocale/
Dxlocale.h46 return isgraph(c); in isgraph_l()
/external/c-ares/
Dsetup_once.h249 #define ISGRAPH(x) (isgraph((int) ((unsigned char)x)))
/external/curl/lib/
Dcurl_setup_once.h286 #define ISGRAPH(x) (isgraph((int) ((unsigned char)x)))
/external/libedit/src/
Dchartype.h139 #define Isgraph(x) isgraph((unsigned char)x)
/external/icu/icu4c/source/samples/ucnv/
Dconvsamp.cpp55 (isgraph(c)) ) { in prettyPrintUChar()
141 if(isgraph(0x00FF & (int)uch[i])) { in printBytes()
/external/toybox/toys/pending/
Dgetty.c255 while (i < HOSTNAME_SIZE-1 && isgraph(TT.buff[i])) i++; in read_login_name()
/external/opencv3/3rdparty/zlib/
Dtrees.c605 n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1));
1076 Tracecv(isgraph(lc), (stderr," '%c' ", lc));
/external/zlib/src/
Dtrees.c605 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/
Dtrees.c605 n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1)); in gen_codes()
1076 Tracecv(isgraph(lc), (stderr," '%c' ", lc));
/external/bison/
Dmaint.mk598 ctype_re = isalnum|isalpha|isascii|isblank|iscntrl|isdigit|isgraph|islower\
/external/pcre/dist/doc/html/
DNON-AUTOTOOLS-BUILD.txt663 documentation regarding isprint(), iscntrl(), isgraph() and ispunct(). I
700 $! isgraph() and ispunct() on OpenVMS must not produce the same results
/external/jemalloc/src/
Dprof.c1990 if (!isgraph(c) && !isblank(c)) in prof_thread_name_set()

12