Home
last modified time | relevance | path

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

123

/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/strings/c.strings/
Dcctype.pass.cpp38 #ifdef isgraph
39 #error isgraph defined
82 ASSERT_SAME_TYPE(int, decltype(std::isgraph(0))); in main()
97 assert( std::isgraph('a')); in main()
/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/include/
Dcctype25 int isgraph(int c);
67 #ifdef isgraph
68 #undef isgraph
109 using ::isgraph;
Dctype.h48 #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 33 <= _ctoi(c) <= 126 function
63 def ispunct(c): return isgraph(c) and not isalnum(c)
/external/python/cpython3/Lib/curses/
Dascii.py60 def isgraph(c): return 33 <= _ctoi(c) <= 126 function
63 def ispunct(c): return isgraph(c) and not isalnum(c)
/external/openssh/openbsd-compat/
Dvis.c50 (flag & VIS_GLOB) == 0) && isgraph((u_char)(c))) || \
56 isgraph((u_char)(c))))))
Dcharclass.h21 { "graph", isgraph },
/external/u-boot/include/linux/
Dctype.h26 #define isgraph(c) ((__ismask(c)&(_P|_U|_L|_D)) != 0) macro
/external/curl/lib/
Dcurl_ctype.h43 #define ISGRAPH(x) (isgraph((int) ((unsigned char)x)))
/external/pcre/dist2/src/
Dpcre2_maketables.c124 if (isgraph(i)) p[cbit_graph + i/8] |= 1 << (i&7);
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-strings/
Dllvm-strings.cpp83 if (std::isgraph(*P) || std::isblank(*P)) { in strings()
/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/python/cpython2/Lib/test/
Dtest_curses.py399 check(curses.ascii.isgraph, 32 < i <= 126)
416 self.assertFalse(curses.ascii.isgraph(i))
/external/python/cpython3/Lib/test/
Dtest_curses.py487 check(curses.ascii.isgraph, 32 < i <= 126)
504 self.assertFalse(curses.ascii.isgraph(i))
/external/icu/icu4c/source/samples/ucnv/
Dconvsamp.cpp64 (isgraph(c)) ) { in prettyPrintUChar()
150 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()

123