HomeSort by relevance Sort by last modified time
    Searched refs:iscntrl (Results 1 - 25 of 42) sorted by null

1 2

  /external/libcxx/test/std/localization/locales/locale.convenience/classification/
iscntrl.pass.cpp 12 // 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('f', l))
    [all...]
  /external/clang/test/Sema/
libbuiltins-ctype-powerpc64.c 6 int iscntrl(int);
25 // CHECK: call signext i32 @iscntrl(i32 signext {{%[0-9]+}}) [[NUW_RO_CALL:#[0-9]+]]
26 (void)iscntrl(x);
52 // CHECK: declare signext i32 @iscntrl(i32 signext) [[NUW_RO:#[0-9]+]]
libbuiltins-ctype-x86_64.c 6 int iscntrl(int);
25 // CHECK: call i32 @iscntrl(i32 {{%[0-9]+}}) [[NUW_RO_CALL:#[0-9]+]]
26 (void)iscntrl(x);
52 // CHECK: declare i32 @iscntrl(i32) [[NUW_RO:#[0-9]+]]
  /bionic/libc/upstream-openbsd/lib/libc/gen/
charclass.h 17 { "cntrl", iscntrl },
isctype.c 64 #undef iscntrl macro
66 iscntrl(int c) function
70 DEF_STRONG(iscntrl); variable
  /external/openssh/openbsd-compat/
charclass.h 19 { "cntrl", iscntrl },
vis.c 131 if (iscntrl((u_char)c)) {
  /external/libcxx/include/
ctype.h 20 int iscntrl(int c);
46 #undef iscntrl macro
  /external/libcxx/test/std/depr/depr.c.headers/
ctype_h.pass.cpp 28 #ifdef iscntrl
29 #error iscntrl defined
77 static_assert((std::is_same<decltype(iscntrl(0)), int>::value), "");
92 assert(!iscntrl(' '));
  /external/libcxx/test/std/strings/c.strings/
cctype.pass.cpp 30 #ifdef iscntrl
31 #error iscntrl defined
80 ASSERT_SAME_TYPE(int, decltype(std::iscntrl(0)));
95 assert(!std::iscntrl(' '));
  /device/linaro/bootloader/edk2/StdLib/Include/
ctype.h 47 alphabetic characters for which none of iscntrl, isdigit, ispunct, or
69 /** The iscntrl function tests for any control character.
76 int iscntrl(int c);
97 is one of a locale-specific set of characters for which none of iscntrl,
144 is one of a locale-specific set of characters for which none of iscntrl,
226 #define iscntrl(c) (__isCClass( (int)c, (_CC))) macro
  /bionic/libc/bionic/
ctype.cpp 44 return iscntrl(c);
  /bionic/tests/headers/posix/
ctype_h.c 41 FUNCTION(iscntrl, int (*f)(int));
  /device/linaro/bootloader/edk2/StdLib/LibC/Ctype/
CClass.c 57 alphabetic characters for which none of iscntrl, isdigit, ispunct, or
74 /** The iscntrl function tests for any control character.
82 iscntrl( function
120 is one of a locale-specific set of characters for which none of iscntrl,
191 is one of a locale-specific set of characters for which none of iscntrl,
  /external/curl/lib/
curl_ctype.h 48 #define ISCNTRL(x) (iscntrl((int) ((unsigned char)x)))
73 #define ISCNTRL(x) (Curl_iscntrl((int) ((unsigned char)x)))
  /external/u-boot/include/linux/
ctype.h 24 #define iscntrl(c) ((__ismask(c)&(_C)) != 0) macro
  /bionic/libc/include/
ctype.h 85 int iscntrl(int __ch);
134 /** Like iscntrl but with an ignored `locale_t`. */
  /external/pcre/dist2/src/
pcre2_maketables.c 127 if (iscntrl(i)) p[cbit_cntrl + i/8] |= 1 << (i&7);
  /bionic/tests/
ctype_test.cpp 70 TEST(ctype, iscntrl) {
71 EXPECT_FALSE(iscntrl('1'));
72 EXPECT_TRUE(iscntrl('\b'));
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
iswctype_sb.c 83 return iscntrl((int)c);
  /external/libcups/filter/
commandtops.c 319 if (isspace(*bufptr & 255) || iscntrl(*bufptr & 255))
324 for (bufptr = buffer; isspace(*bufptr & 255) || iscntrl(*bufptr & 255);
  /external/webrtc/webrtc/modules/audio_coding/test/
PCMFile.cc 58 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/libcxx/include/support/xlocale/
__posix_l_fallback.h 36 return ::iscntrl(c);
  /external/python/cpython2/Lib/curses/
ascii.py 58 def iscntrl(c): return 0 <= _ctoi(c) <= 31 or _ctoi(c) == 127 function
  /external/python/cpython3/Lib/curses/
ascii.py 58 def iscntrl(c): return 0 <= _ctoi(c) <= 31 or _ctoi(c) == 127 function

Completed in 1211 milliseconds

1 2