Home
last modified time | relevance | path

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

12

/external/libcxx/test/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 …]
DAndroid.mk55 test_name := localization/locales/locale.convenience/classification/isgraph
56 test_src := isgraph.pass.cpp
/external/libcxx/include/
Dcctype25 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/
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/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.c121 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()
Dupnp_xml.c209 !isgraph(tagname[match_len]))) { in xml_get_first_item()
Dwps_upnp_web.c814 while (isgraph(*b) && *b != '#') in web_get_action()
821 while (isgraph(*b) && *b != '"') in web_get_action()
/external/stlport/stlport/
Dctype.h61 # undef isgraph
80 __inline int (isgraph)(int c) { return _isctype(c, _PUNCT|_ALPHA|_DIGIT); }
Dlocale76 #undef isgraph
123 inline bool isgraph (_CharT c, const locale& loc)
/external/valgrind/main/coregrind/m_demangle/
Dsafe-ctype.h134 #undef isgraph
135 #define isgraph(c) do_not_use_isgraph_with_safe_ctype macro
/external/stlport/stlport/stl/
D_cctype.h36 using _STLP_VENDOR_CSTD::isgraph;
/external/chromium_org/components/autofill/core/browser/
Dpassword_generator_unittest.cc53 EXPECT_TRUE(isgraph(password[i])); in TEST()
/external/pcre/dist/
Dpcre_maketables.c123 if (isgraph(i)) p[cbit_graph + i/8] |= 1 << (i&7); in pcre_maketables()
/external/arduino/hardware/arduino/cores/arduino/
DWCharacter.h92 return ( isgraph (c) == 0 ? false : true); in isGraph()
/external/stlport/stlport/using/
Dlocale24 using _STLP_NEW_IO_NAMESPACE::isgraph;
/external/ipsec-tools/src/racoon/
Dplog.c257 if (isgraph((int)binstr[p])) {
/external/libcxx/include/support/android/
Dlocale_bionic.h44 return isgraph(c); in isgraph_l()
/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/chromium_org/third_party/icu/source/samples/ucnv/
Dconvsamp.cpp55 (isgraph(c)) ) { in prettyPrintUChar()
141 if(isgraph(0x00FF & (int)uch[i])) { in printBytes()
/external/qemu/include/
Dqemu-common.h203 #define qemu_isgraph(c) isgraph((unsigned char)(c))
/external/qemu/distrib/zlib-1.2.8/
Dtrees.c605 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/
Dtrees.c611 n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1));
1092 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));

12