Searched refs:isgraph (Results 1 - 25 of 41) sorted by relevance

12

/external/libcxx/test/localization/locales/locale.convenience/classification/
H A Disgraph.pass.cpp12 // template <class charT> bool isgraph (charT c, const locale& loc);
20 assert(!std::isgraph(' ', l));
21 assert( std::isgraph('<', l));
22 assert(!std::isgraph('\x8', l));
23 assert( std::isgraph('A', l));
24 assert( std::isgraph('a', l));
25 assert( std::isgraph('z', l));
26 assert( std::isgraph('3', l));
27 assert( std::isgraph('.', l));
28 assert( std::isgraph('
[all...]
H A DAndroid.mk55 test_name := localization/locales/locale.convenience/classification/isgraph
56 test_src := isgraph.pass.cpp
/external/libcxx/test/depr/depr.c.headers/
H A Dctype_h.pass.cpp36 #ifdef isgraph
37 #error isgraph defined
79 static_assert((std::is_same<decltype(isgraph(0)), int>::value), "");
94 assert(isgraph('a'));
/external/libcxx/test/strings/c.strings/
H A Dcctype.pass.cpp36 #ifdef isgraph
37 #error isgraph defined
79 static_assert((std::is_same<decltype(std::isgraph(0)), int>::value), "");
94 assert(isgraph('a'));
/external/stlport/stlport/stl/
H A D_cctype.h36 using _STLP_VENDOR_CSTD::isgraph;
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dhttpread.c121 end1 = !isgraph(c1);
122 end2 = !isgraph(c2);
173 while (isgraph(*hbp))
185 while (isgraph(*hbp))
211 if (!isgraph(*hbp))
220 while (isgraph(*hbp))
258 while (isgraph(*hbp))
268 while (isgraph(*hbp))
286 while (isgraph(*hbp))
311 if (!isgraph(*hb
[all...]
H A Dupnp_xml.c209 !isgraph(tagname[match_len]))) {
/external/wpa_supplicant_8/src/wps/
H A Dhttpread.c121 end1 = !isgraph(c1);
122 end2 = !isgraph(c2);
173 while (isgraph(*hbp))
185 while (isgraph(*hbp))
211 if (!isgraph(*hbp))
220 while (isgraph(*hbp))
258 while (isgraph(*hbp))
268 while (isgraph(*hbp))
286 while (isgraph(*hbp))
311 if (!isgraph(*hb
[all...]
H A Dupnp_xml.c209 !isgraph(tagname[match_len]))) {
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dhttpread.c121 end1 = !isgraph(c1);
122 end2 = !isgraph(c2);
173 while (isgraph(*hbp))
185 while (isgraph(*hbp))
211 if (!isgraph(*hbp))
220 while (isgraph(*hbp))
258 while (isgraph(*hbp))
268 while (isgraph(*hbp))
286 while (isgraph(*hbp))
311 if (!isgraph(*hb
[all...]
H A Dupnp_xml.c209 !isgraph(tagname[match_len]))) {
/external/stlport/stlport/
H A Dctype.h61 # undef isgraph macro
80 __inline int (isgraph)(int c) { return _isctype(c, _PUNCT|_ALPHA|_DIGIT); } function
H A Dlocale76 #undef isgraph
123 inline bool isgraph (_CharT c, const locale& loc)
/external/chromium_org/components/autofill/core/browser/
H A Dpassword_generator_unittest.cc53 EXPECT_TRUE(isgraph(password[i]));
/external/valgrind/main/coregrind/m_demangle/
H A Dsafe-ctype.h134 #undef isgraph macro
135 #define isgraph(c) do_not_use_isgraph_with_safe_ctype macro
/external/arduino/hardware/arduino/cores/arduino/
H A DWCharacter.h92 return ( isgraph (c) == 0 ? false : true);
/external/pcre/dist/
H A Dpcre_maketables.c123 if (isgraph(i)) p[cbit_graph + i/8] |= 1 << (i&7);
/external/ipsec-tools/src/racoon/
H A Dplog.c257 if (isgraph((int)binstr[p])) {
/external/libcxx/include/support/android/
H A Dlocale_bionic.h44 return isgraph(c);
/external/libedit/src/
H A Dchartype.h139 #define Isgraph(x) isgraph((unsigned char)x)
/external/chromium_org/third_party/icu/source/samples/ucnv/
H A Dconvsamp.cpp55 (isgraph(c)) ) {
141 if(isgraph(0x00FF & (int)uch[i])) {
/external/icu/icu4c/source/samples/ucnv/
H A Dconvsamp.cpp55 (isgraph(c)) ) {
141 if(isgraph(0x00FF & (int)uch[i])) {
/external/chromium_org/third_party/libxml/src/
H A Dtrio.c170 # define iswgraph(x) isgraph(x)
5340 if (isgraph(i))
/external/libxml2/
H A Dtrio.c170 # define iswgraph(x) isgraph(x)
5344 if (isgraph(i))
/external/qemu/include/
H A Dqemu-common.h203 #define qemu_isgraph(c) isgraph((unsigned char)(c))

Completed in 472 milliseconds

12