/external/libcxx/test/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 …]
|
D | Android.mk | 55 test_name := localization/locales/locale.convenience/classification/isgraph 56 test_src := isgraph.pass.cpp
|
/external/libcxx/include/ |
D | cctype | 25 int isgraph(int c); 90 #ifdef isgraph 91 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_isgraph(int __c) {return isgraph(__c);} 92 #undef isgraph 93 inline _LIBCPP_INLINE_VISIBILITY int isgraph(int __c) {return __libcpp_isgraph(__c);} 94 #else // isgraph 95 using ::isgraph; 96 #endif // isgraph
|
/external/libcxx/test/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/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 | 121 end1 = !isgraph(c1); in word_eq() 122 end2 = !isgraph(c2); in word_eq() 173 while (isgraph(*hbp)) in httpread_hdr_option_analyze() 185 while (isgraph(*hbp)) in httpread_hdr_option_analyze() 211 if (!isgraph(*hbp)) in httpread_hdr_analyze() 220 while (isgraph(*hbp)) in httpread_hdr_analyze() 258 while (isgraph(*hbp)) in httpread_hdr_analyze() 268 while (isgraph(*hbp)) in httpread_hdr_analyze() 286 while (isgraph(*hbp)) in httpread_hdr_analyze() 311 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 | 814 while (isgraph(*b) && *b != '#') in web_get_action() 821 while (isgraph(*b) && *b != '"') in web_get_action()
|
/external/stlport/stlport/ |
D | ctype.h | 61 # undef isgraph 80 __inline int (isgraph)(int c) { return _isctype(c, _PUNCT|_ALPHA|_DIGIT); }
|
D | locale | 76 #undef isgraph 123 inline bool isgraph (_CharT c, const locale& loc)
|
/external/valgrind/main/coregrind/m_demangle/ |
D | safe-ctype.h | 134 #undef isgraph 135 #define isgraph(c) do_not_use_isgraph_with_safe_ctype macro
|
/external/stlport/stlport/stl/ |
D | _cctype.h | 36 using _STLP_VENDOR_CSTD::isgraph;
|
/external/chromium_org/components/autofill/core/browser/ |
D | password_generator_unittest.cc | 53 EXPECT_TRUE(isgraph(password[i])); in TEST()
|
/external/pcre/dist/ |
D | pcre_maketables.c | 123 if (isgraph(i)) p[cbit_graph + i/8] |= 1 << (i&7); in pcre_maketables()
|
/external/arduino/hardware/arduino/cores/arduino/ |
D | WCharacter.h | 92 return ( isgraph (c) == 0 ? false : true); in isGraph()
|
/external/stlport/stlport/using/ |
D | locale | 24 using _STLP_NEW_IO_NAMESPACE::isgraph;
|
/external/ipsec-tools/src/racoon/ |
D | plog.c | 257 if (isgraph((int)binstr[p])) {
|
/external/libcxx/include/support/android/ |
D | locale_bionic.h | 44 return isgraph(c); in isgraph_l()
|
/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/chromium_org/third_party/icu/source/samples/ucnv/ |
D | convsamp.cpp | 55 (isgraph(c)) ) { in prettyPrintUChar() 141 if(isgraph(0x00FF & (int)uch[i])) { in printBytes()
|
/external/qemu/include/ |
D | qemu-common.h | 203 #define qemu_isgraph(c) isgraph((unsigned char)(c))
|
/external/qemu/distrib/zlib-1.2.8/ |
D | trees.c | 605 n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1)); 1076 Tracecv(isgraph(lc), (stderr," '%c' ", lc));
|
/external/chromium_org/third_party/zlib/ |
D | trees.c | 611 n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1)); 1092 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));
|