Searched refs:iscntrl (Results 1 – 25 of 26) sorted by relevance
12
/external/libcxx/test/std/localization/locales/locale.convenience/classification/ |
D | iscntrl.pass.cpp | 20 assert(!std::iscntrl(' ', l)); in main() 21 assert(!std::iscntrl('<', l)); in main() 22 assert( std::iscntrl('\x8', l)); in main() 23 assert(!std::iscntrl('A', l)); in main() 24 assert(!std::iscntrl('a', l)); in main() 25 assert(!std::iscntrl('z', l)); in main() 26 assert(!std::iscntrl('3', l)); in main() 27 assert(!std::iscntrl('.', l)); in main() 28 assert(!std::iscntrl('f', l)); in main() 29 assert(!std::iscntrl('9', l)); in main() [all …]
|
/external/libcxx/include/ |
D | cctype | 23 int iscntrl(int c); 75 #ifdef iscntrl 76 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_iscntrl(int __c) {return iscntrl(__c);} 77 #undef iscntrl 78 inline _LIBCPP_INLINE_VISIBILITY int iscntrl(int __c) {return __libcpp_iscntrl(__c);} 79 #else // iscntrl 80 using ::iscntrl; 81 #endif // iscntrl
|
D | __locale | 719 iscntrl(_CharT __c, const locale& __loc)
|
D | locale | 73 template <class charT> bool iscntrl (charT c, const locale& loc);
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | ctype_h.pass.cpp | 28 #ifdef iscntrl 29 #error iscntrl defined 77 static_assert((std::is_same<decltype(iscntrl(0)), int>::value), ""); in main() 92 assert(!iscntrl(' ')); in main()
|
/external/libcxx/test/std/strings/c.strings/ |
D | cctype.pass.cpp | 28 #ifdef iscntrl 29 #error iscntrl defined 77 static_assert((std::is_same<decltype(std::iscntrl(0)), int>::value), ""); in main() 92 assert(!iscntrl(' ')); in main()
|
/external/valgrind/coregrind/m_demangle/ |
D | safe-ctype.h | 130 #undef iscntrl 131 #define iscntrl(c) do_not_use_iscntrl_with_safe_ctype macro
|
/external/webrtc/webrtc/modules/audio_coding/test/ |
D | PCMFile.cc | 58 while ((isspace(tmp_name[n]) || iscntrl(tmp_name[n])) && (tmp_name[n] != 0) in ChooseFile() 69 while ((isspace(tmp_name[n]) || iscntrl(tmp_name[n])) && (n >= 0)) { in ChooseFile()
|
/external/bison/lib/ |
D | mbswidth.c | 179 if (!iscntrl (c)) in mbsnwidth()
|
/external/pcre/dist/ |
D | pcre_maketables.c | 126 if (iscntrl(i)) p[cbit_cntrl + i/8] |= 1 << (i&7); in pcre_maketables()
|
D | NON-AUTOTOOLS-BUILD | 663 documentation regarding isprint(), iscntrl(), isgraph() and ispunct(). I 699 $! The test results did not match 100%. The functions isprint(), iscntrl(),
|
/external/libcxx/include/support/xlocale/ |
D | xlocale.h | 38 return iscntrl(c); in iscntrl_l()
|
/external/toybox/toys/pending/ |
D | tr.c | 182 if (iscntrl(k)) set[i++] = k; in expand_set()
|
/external/libedit/src/ |
D | chartype.h | 142 #define Iscntrl(x) iscntrl((unsigned char)x)
|
/external/selinux/libselinux/src/ |
D | selinux_config.c | 184 (isspace(*end) || iscntrl(*end))) { in init_selinux_config()
|
/external/dnsmasq/src/ |
D | util.c | 125 else if (isascii(c) && iscntrl(c)) in check_name()
|
D | rfc1035.c | 142 if (isascii(c) && !iscntrl(c) && c != '.') in extract_name()
|
/external/fio/ |
D | parse.c | 392 while ((isspace((int) *s) || iscntrl((int) *s)) && (s > start)) in strip_blank_end()
|
D | init.c | 1427 if (!isspace((int) line[i]) && !iscntrl((int) line[i])) in is_empty_or_comment()
|
/external/bison/ |
D | maint.mk | 598 ctype_re = isalnum|isalpha|isascii|isblank|iscntrl|isdigit|isgraph|islower\
|
/external/pcre/dist/doc/html/ |
D | NON-AUTOTOOLS-BUILD.txt | 663 documentation regarding isprint(), iscntrl(), isgraph() and ispunct(). I 699 $! The test results did not match 100%. The functions isprint(), iscntrl(),
|
/external/libxml2/ |
D | trio.c | 178 # define iswcntrl(x) iscntrl(x) 5344 if (iscntrl(i))
|
/external/compiler-rt/lib/dfsan/ |
D | libc_ubuntu1404_abilist.txt | 2086 fun:iscntrl=uninstrumented
|
/external/google-breakpad/src/processor/testdata/symbols/libc-2.13.so/F4F8DFCD5A5FB5A7CE64717E9E6AE3890/ |
D | libc-2.13.so.sym | 36 PUBLIC 2ba50 0 iscntrl
|
/external/google-breakpad/src/processor/testdata/ |
D | module0.out | 17681 FUNC 1a98f 29 4 iscntrl
|
12