Home
last modified time | relevance | path

Searched refs:isgraph (Results 1 – 25 of 48) 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/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(std::isgraph('a')); in main()
/external/libcxx/include/
Dcctype25 int isgraph(int c);
67 #ifdef isgraph
68 #undef isgraph
109 using ::isgraph;
Dctype.h57 #undef isgraph
/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()
/external/clang/test/Sema/
Dlibbuiltins-ctype-powerpc64.c8 int isgraph(int);
30 (void)isgraph(x); in test()
Dlibbuiltins-ctype-x86_64.c8 int isgraph(int);
30 (void)isgraph(x); in test()
/external/python/cpython2/Lib/curses/
Dascii.py60 def isgraph(c): return _ctoi(c) >= 33 and _ctoi(c) <= 126 function
63 def ispunct(c): return isgraph(c) and not isalnum(c)
/external/valgrind/coregrind/m_demangle/
Dsafe-ctype.h134 #undef isgraph
135 #define isgraph(c) do_not_use_isgraph_with_safe_ctype macro
/external/openssh/openbsd-compat/
Dvis.c50 (flag & VIS_GLOB) == 0) && isgraph((u_char)(c))) || \
56 isgraph((u_char)(c))))))
Dcharclass.h21 { "graph", isgraph },
/external/syslinux/com32/include/
Dctype.h69 __ctype_inline int isgraph(int __c) in isgraph() function
/external/pcre/dist2/src/
Dpcre2_maketables.c124 if (isgraph(i)) p[cbit_graph + i/8] |= 1 << (i&7);
/external/libcxx/include/support/xlocale/
D__posix_l_fallback.h44 return ::isgraph(c); in isgraph_l()
/external/ipsec-tools/src/racoon/
Dplog.c257 if (isgraph((int)binstr[p])) {
/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.cpp62 (isgraph(c)) ) { in prettyPrintUChar()
148 if(isgraph(0x00FF & (int)uch[i])) { in printBytes()
/external/ImageMagick/coders/
Dvicar.c211 while (isgraph(c) && ((image->columns == 0) || (image->rows == 0))) in ReadVICARImage()
/external/toybox/toys/pending/
Dgetty.c255 while (i < HOSTNAME_SIZE-1 && isgraph(TT.buff[i])) i++; in read_login_name()
/external/python/cpython2/Doc/library/
Dcurses.ascii.rst133 .. function:: isgraph(c)

12