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

1 2 3 4 5 6 7 8 910

  /external/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...]
  /ndk/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...]
  /ndk/sources/android/support/src/musl-locale/
ispunct_l.c 5 return ispunct(c);
  /bionic/libc/upstream-openbsd/lib/libc/gen/
charclass.h 22 { "punct", ispunct },
  /bionic/libstdc++/include/
cctype 50 using ::ispunct;
  /ndk/sources/cxx-stl/gabi++/include/
cctype 50 using ::ispunct;
  /ndk/sources/cxx-stl/system/include/
cctype 50 using ::ispunct;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cctype 48 using ::ispunct;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cctype 48 using ::ispunct;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cctype 50 using ::ispunct;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cctype 50 using ::ispunct;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cctype 50 using ::ispunct;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cctype 50 using ::ispunct;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cctype 50 using ::ispunct;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cctype 50 using ::ispunct;
  /prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
cctype 50 using ::ispunct;
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/gabi++/include/
cctype 50 using ::ispunct;
  /prebuilts/ndk/9/sources/cxx-stl/system/include/
cctype 50 using ::ispunct;
  /system/extras/tests/bionic/libstdc++/
test_cctype.cpp 62 #ifdef ispunct
88 using std::ispunct;
  /external/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'));
  /external/stlport/stlport/stl/
_cctype.h 39 using _STLP_VENDOR_CSTD::ispunct;
  /ndk/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'));
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 39 using _STLP_VENDOR_CSTD::ispunct;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 39 using _STLP_VENDOR_CSTD::ispunct;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 39 using _STLP_VENDOR_CSTD::ispunct;

Completed in 39 milliseconds

1 2 3 4 5 6 7 8 910