Searched refs:iscntrl (Results 1 - 25 of 26) sorted by relevance

12

/external/libcxx/test/localization/locales/locale.convenience/classification/
H A Discntrl.pass.cpp12 // template <class charT> bool iscntrl (charT c, const locale& loc);
20 assert(!std::iscntrl(' ', l));
21 assert(!std::iscntrl('<', l));
22 assert( std::iscntrl('\x8', l));
23 assert(!std::iscntrl('A', l));
24 assert(!std::iscntrl('a', l));
25 assert(!std::iscntrl('z', l));
26 assert(!std::iscntrl('3', l));
27 assert(!std::iscntrl('.', l));
28 assert(!std::iscntrl('
[all...]
H A DAndroid.mk19 test_name := localization/locales/locale.convenience/classification/iscntrl
20 test_src := iscntrl.pass.cpp
/external/libcxx/test/depr/depr.c.headers/
H A Dctype_h.pass.cpp28 #ifdef iscntrl
29 #error iscntrl defined
77 static_assert((std::is_same<decltype(iscntrl(0)), int>::value), "");
92 assert(!iscntrl(' '));
/external/libcxx/test/strings/c.strings/
H A Dcctype.pass.cpp28 #ifdef iscntrl
29 #error iscntrl defined
77 static_assert((std::is_same<decltype(std::iscntrl(0)), int>::value), "");
92 assert(!iscntrl(' '));
/external/stlport/stlport/stl/
H A D_cctype.h34 using _STLP_VENDOR_CSTD::iscntrl;
/external/stlport/stlport/
H A Dctype.h53 # undef iscntrl macro
81 __inline int (iscntrl)(int c) { return _isctype(c, _CONTROL); } function
H A Dlocale68 #undef iscntrl
91 inline bool iscntrl (_CharT c, const locale& loc)
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
H A DISACHist.cc91 while(isspace(audioFileName[n]) || iscntrl(audioFileName[n]))
107 while((isspace(audioFileName[n]) || iscntrl(audioFileName[n])) &&
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A DPCMFile.cc58 while ((isspace(tmp_name[n]) || iscntrl(tmp_name[n])) && (tmp_name[n] != 0)
69 while ((isspace(tmp_name[n]) || iscntrl(tmp_name[n])) && (n >= 0)) {
/external/valgrind/main/coregrind/m_demangle/
H A Dsafe-ctype.h130 #undef iscntrl macro
131 #define iscntrl(c) do_not_use_iscntrl_with_safe_ctype macro
/external/arduino/hardware/arduino/cores/arduino/
H A DWCharacter.h78 return ( iscntrl (c) == 0 ? false : true);
/external/pcre/dist/
H A Dpcre_maketables.c126 if (iscntrl(i)) p[cbit_cntrl + i/8] |= 1 << (i&7);
/external/libcxx/include/support/android/
H A Dlocale_bionic.h36 return iscntrl(c);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
H A Dtty_node.cc230 if (IS_ECHOCTL && iscntrl(char_to_delete))
240 } else if (c != '\n' && iscntrl(c) && IS_ECHOCTL) {
/external/libedit/src/
H A Dchartype.h142 #define Iscntrl(x) iscntrl((unsigned char)x)
/external/chromium_org/third_party/libxml/src/
H A Dtrio.c168 # define iswcntrl(x) iscntrl(x)
5324 if (iscntrl(i))
/external/dnsmasq/src/
H A Dutil.c123 else if (isascii(c) && iscntrl(c))
124 /* iscntrl only gives expected results for ascii */
H A Drfc1035.c142 if (isascii(c) && !iscntrl(c) && c != '.')
/external/libxml2/
H A Dtrio.c168 # define iswcntrl(x) iscntrl(x)
5328 if (iscntrl(i))
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Derrwarn.c148 if (iscntrl(ch)) {
/external/qemu/include/
H A Dqemu-common.h201 #define qemu_iscntrl(c) iscntrl((unsigned char)(c))
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlstrlib.c270 case 'c' : res = iscntrl(c); break;
842 else if (*s == '\0' || iscntrl(uchar(*s))) {
/external/stlport/src/c_locale_dummy/
H A Dc_locale_dummy.c66 if (iscntrl(c)) ctable[(unsigned char)c] |= _Locale_CNTRL;
/external/fio/
H A Dparse.c350 while ((isspace((int) *s) || iscntrl((int) *s)) && (s > start))
H A Dinit.c1293 if (!isspace((int) line[i]) && !iscntrl((int) line[i]))

Completed in 3046 milliseconds

12