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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r11/sources/android/support/src/musl-locale/
iscntrl_l.c 5 return iscntrl(c);
  /prebuilts/ndk/r13/sources/android/support/src/musl-locale/
iscntrl_l.c 5 return iscntrl(c);
  /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...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/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...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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...]
  /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/libcxx/include/
cctype 23 int iscntrl(int c);
59 #ifdef iscntrl
60 #undef iscntrl
107 using ::iscntrl;
ctype.h 20 int iscntrl(int c);
55 #undef iscntrl macro
  /external/openssh/openbsd-compat/
charclass.h 19 { "cntrl", iscntrl },
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
cctype 23 int iscntrl(int c);
59 #ifdef iscntrl
60 #undef iscntrl
107 using ::iscntrl;
ctype.h 20 int iscntrl(int c);
55 #undef iscntrl macro
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/
cctype 23 int iscntrl(int c);
59 #ifdef iscntrl
60 #undef iscntrl
107 using ::iscntrl;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/
cctype 23 int iscntrl(int c);
59 #ifdef iscntrl
60 #undef iscntrl
107 using ::iscntrl;
  /prebuilts/ndk/r10/sources/cxx-stl/llvm-libc++/libcxx/include/
cctype 23 int iscntrl(int c);
74 #ifdef iscntrl
75 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_iscntrl(int __c) {return iscntrl(__c);}
76 #undef iscntrl
77 inline _LIBCPP_INLINE_VISIBILITY int iscntrl(int __c) {return __libcpp_iscntrl(__c);}
78 #else // iscntrl
79 using ::iscntrl;
80 #endif // iscntrl
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/include/
cctype 23 int iscntrl(int c);
74 #ifdef iscntrl
75 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_iscntrl(int __c) {return iscntrl(__c);}
76 #undef iscntrl
77 inline _LIBCPP_INLINE_VISIBILITY int iscntrl(int __c) {return __libcpp_iscntrl(__c);}
78 #else // iscntrl
79 using ::iscntrl;
80 #endif // iscntrl
  /bionic/tests/
ctype_test.cpp 48 TEST(ctype, iscntrl) {
49 EXPECT_FALSE(iscntrl('1'));
50 EXPECT_TRUE(iscntrl('\b'));
  /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]+]]
  /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 28 #ifdef iscntrl
29 #error iscntrl defined
77 static_assert((std::is_same<decltype(std::iscntrl(0)), int>::value), "");
92 assert(!std::iscntrl(' '));
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/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(' '));
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
cctype.pass.cpp 28 #ifdef iscntrl
29 #error iscntrl defined
77 static_assert((std::is_same<decltype(std::iscntrl(0)), int>::value), "");
92 assert(!iscntrl(' '));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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(' '));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/strings/c.strings/
cctype.pass.cpp 28 #ifdef iscntrl
29 #error iscntrl defined
77 static_assert((std::is_same<decltype(std::iscntrl(0)), int>::value), "");
92 assert(!std::iscntrl(' '));

Completed in 937 milliseconds

1 2 3 4 5 6 7 8 91011>>