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

1 2 3 4 5 6 7 8 910

  /external/libcxx/test/std/localization/locales/locale.convenience/classification/
ispunct.pass.cpp 12 // template <class charT> bool ispunct (charT c, const locale& loc);
20 assert(!std::ispunct(' ', l));
21 assert( std::ispunct('<', l));
22 assert(!std::ispunct('\x8', l));
23 assert(!std::ispunct('A', l));
24 assert(!std::ispunct('a', l));
25 assert(!std::ispunct('z', l));
26 assert(!std::ispunct('3', l));
27 assert( std::ispunct('.', l));
28 assert(!std::ispunct('f', l))
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/classification/
ispunct.pass.cpp 12 // template <class charT> bool ispunct (charT c, const locale& loc);
20 assert(!std::ispunct(' ', l));
21 assert( std::ispunct('<', l));
22 assert(!std::ispunct('\x8', l));
23 assert(!std::ispunct('A', l));
24 assert(!std::ispunct('a', l));
25 assert(!std::ispunct('z', l));
26 assert(!std::ispunct('3', l));
27 assert( std::ispunct('.', l));
28 assert(!std::ispunct('f', l))
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locales/locale.convenience/classification/
ispunct.pass.cpp 12 // template <class charT> bool ispunct (charT c, const locale& loc);
20 assert(!std::ispunct(' ', l));
21 assert( std::ispunct('<', l));
22 assert(!std::ispunct('\x8', l));
23 assert(!std::ispunct('A', l));
24 assert(!std::ispunct('a', l));
25 assert(!std::ispunct('z', l));
26 assert(!std::ispunct('3', l));
27 assert( std::ispunct('.', l));
28 assert(!std::ispunct('f', l))
    [all...]
  /prebuilts/ndk/r11/sources/android/support/src/musl-locale/
ispunct_l.c 5 return ispunct(c);
  /prebuilts/ndk/r13/sources/android/support/src/musl-locale/
ispunct_l.c 5 return ispunct(c);
  /external/clang/test/Sema/
libbuiltins-ctype-powerpc64.c 11 int ispunct(int);
35 // CHECK: call signext i32 @ispunct(i32 signext {{%[0-9]+}}) [[NUW_RO_CALL:#[0-9]+]]
36 (void)ispunct(x);
57 // CHECK: declare signext i32 @ispunct(i32 signext) [[NUW_RO:#[0-9]+]]
libbuiltins-ctype-x86_64.c 11 int ispunct(int);
35 // CHECK: call i32 @ispunct(i32 {{%[0-9]+}}) [[NUW_RO_CALL:#[0-9]+]]
36 (void)ispunct(x);
57 // CHECK: declare i32 @ispunct(i32) [[NUW_RO:#[0-9]+]]
  /bionic/libc/upstream-openbsd/lib/libc/gen/
charclass.h 22 { "punct", ispunct },
  /external/openssh/openbsd-compat/
charclass.h 24 { "punct", ispunct },
  /prebuilts/ndk/r10/sources/cxx-stl/gabi++/include/
cctype 50 using ::ispunct;
  /prebuilts/ndk/r10/sources/cxx-stl/llvm-libc++/gabi++/include/
cctype 50 using ::ispunct;
  /prebuilts/ndk/r10/sources/cxx-stl/system/include/
cctype 50 using ::ispunct;
  /prebuilts/ndk/r11/sources/cxx-stl/gabi++/include/
cctype 50 using ::ispunct;
  /prebuilts/ndk/r11/sources/cxx-stl/system/include/
cctype 50 using ::ispunct;
  /prebuilts/ndk/r13/sources/cxx-stl/gabi++/include/
cctype 50 using ::ispunct;
  /prebuilts/ndk/r13/sources/cxx-stl/system/include/
cctype 50 using ::ispunct;
  /external/libcxx/include/
ctype.h 25 int ispunct(int c);
60 #undef ispunct macro
  /external/libcxx/test/std/depr/depr.c.headers/
ctype_h.pass.cpp 48 #ifdef ispunct
49 #error ispunct defined
82 static_assert((std::is_same<decltype(ispunct(0)), int>::value), "");
97 assert(!ispunct('a'));
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
ctype.h 25 int ispunct(int c);
60 #undef ispunct macro
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/
ctype.h 25 int ispunct(int c);
60 #undef ispunct macro
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 39 using _STLP_VENDOR_CSTD::ispunct;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
ctype_h.pass.cpp 48 #ifdef ispunct
49 #error ispunct defined
82 static_assert((std::is_same<decltype(ispunct(0)), int>::value), "");
97 assert(!ispunct('a'));
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 39 using _STLP_VENDOR_CSTD::ispunct;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/
ctype.h 25 int ispunct(int c);
60 #undef ispunct macro
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
ctype_h.pass.cpp 48 #ifdef ispunct
49 #error ispunct defined
82 static_assert((std::is_same<decltype(ispunct(0)), int>::value), "");
97 assert(!ispunct('a'));

Completed in 720 milliseconds

1 2 3 4 5 6 7 8 910