/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/test/std/strings/c.strings/ |
D | cctype.pass.cpp | 38 #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/ |
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/include/ |
D | cctype | 25 int isgraph(int c); 67 #ifdef isgraph 68 #undef isgraph 109 using ::isgraph;
|
D | ctype.h | 48 #undef isgraph
|
/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()
|
/external/clang/test/Sema/ |
D | libbuiltins-ctype-powerpc64.c | 8 int isgraph(int); 30 (void)isgraph(x); in test()
|
D | libbuiltins-ctype-x86_64.c | 8 int isgraph(int); 30 (void)isgraph(x); in test()
|
/external/python/cpython2/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)
|
/external/python/cpython3/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)
|
/external/openssh/openbsd-compat/ |
D | vis.c | 50 (flag & VIS_GLOB) == 0) && isgraph((u_char)(c))) || \ 56 isgraph((u_char)(c))))))
|
D | charclass.h | 21 { "graph", isgraph },
|
/external/u-boot/include/linux/ |
D | ctype.h | 26 #define isgraph(c) ((__ismask(c)&(_P|_U|_L|_D)) != 0) macro
|
/external/curl/lib/ |
D | curl_ctype.h | 43 #define ISGRAPH(x) (isgraph((int) ((unsigned char)x)))
|
/external/pcre/dist2/src/ |
D | pcre2_maketables.c | 124 if (isgraph(i)) p[cbit_graph + i/8] |= 1 << (i&7);
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-strings/ |
D | llvm-strings.cpp | 83 if (std::isgraph(*P) || std::isblank(*P)) { in strings()
|
/external/libcxx/include/support/xlocale/ |
D | __posix_l_fallback.h | 44 return ::isgraph(c); in isgraph_l()
|
/external/ipsec-tools/src/racoon/ |
D | plog.c | 257 if (isgraph((int)binstr[p])) {
|
/external/python/cpython2/Lib/test/ |
D | test_curses.py | 399 check(curses.ascii.isgraph, 32 < i <= 126) 416 self.assertFalse(curses.ascii.isgraph(i))
|
/external/python/cpython3/Lib/test/ |
D | test_curses.py | 487 check(curses.ascii.isgraph, 32 < i <= 126) 504 self.assertFalse(curses.ascii.isgraph(i))
|
/external/icu/icu4c/source/samples/ucnv/ |
D | convsamp.cpp | 64 (isgraph(c)) ) { in prettyPrintUChar() 150 if(isgraph(0x00FF & (int)uch[i])) { in printBytes()
|
/external/ImageMagick/coders/ |
D | vicar.c | 211 while (isgraph(c) && ((image->columns == 0) || (image->rows == 0))) in ReadVICARImage()
|
/external/toybox/toys/pending/ |
D | getty.c | 255 while (i < HOSTNAME_SIZE-1 && isgraph(TT.buff[i])) i++; in read_login_name()
|