Home
last modified time | relevance | path

Searched refs:ispunct (Results 1 – 25 of 26) sorted by relevance

12

/external/libcxx/test/localization/locales/locale.convenience/classification/
Dispunct.pass.cpp20 assert(!std::ispunct(' ', l)); in main()
21 assert( std::ispunct('<', l)); in main()
22 assert(!std::ispunct('\x8', l)); in main()
23 assert(!std::ispunct('A', l)); in main()
24 assert(!std::ispunct('a', l)); in main()
25 assert(!std::ispunct('z', l)); in main()
26 assert(!std::ispunct('3', l)); in main()
27 assert( std::ispunct('.', l)); in main()
28 assert(!std::ispunct('f', l)); in main()
29 assert(!std::ispunct('9', l)); in main()
[all …]
DAndroid.mk35 test_name := localization/locales/locale.convenience/classification/ispunct
36 test_src := ispunct.pass.cpp
/external/libcxx/include/
Dcctype28 int ispunct(int c);
114 #ifdef ispunct
115 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_ispunct(int __c) {return ispunct(__c);}
116 #undef ispunct
117 inline _LIBCPP_INLINE_VISIBILITY int ispunct(int __c) {return __libcpp_ispunct(__c);}
118 #else // ispunct
119 using ::ispunct;
120 #endif // ispunct
D__locale743 ispunct(_CharT __c, const locale& __loc)
/external/libcxx/test/depr/depr.c.headers/
Dctype_h.pass.cpp48 #ifdef ispunct
49 #error ispunct defined
82 static_assert((std::is_same<decltype(ispunct(0)), int>::value), ""); in main()
97 assert(!ispunct('a')); in main()
/external/libcxx/test/strings/c.strings/
Dcctype.pass.cpp48 #ifdef ispunct
49 #error ispunct defined
82 static_assert((std::is_same<decltype(std::ispunct(0)), int>::value), ""); in main()
97 assert(!ispunct('a')); in main()
/external/stlport/stlport/
Dctype.h58 # undef ispunct
77 __inline int (ispunct)(int c) { return _isctype(c, _PUNCT); }
Dlocale73 #undef ispunct
111 inline bool ispunct (_CharT c, const locale& loc)
/external/valgrind/main/coregrind/m_demangle/
Dsafe-ctype.h140 #undef ispunct
141 #define ispunct(c) do_not_use_ispunct_with_safe_ctype macro
/external/stlport/stlport/stl/
D_cctype.h39 using _STLP_VENDOR_CSTD::ispunct;
/external/pcre/dist/
Dpcre_maketables.c125 if (ispunct(i)) p[cbit_punct + i/8] |= 1 << (i&7); in pcre_maketables()
DNON-AUTOTOOLS-BUILD655 documentation regarding isprint(), iscntrl(), isgraph() and ispunct(). I
692 $! isgraph() and ispunct() on OpenVMS must not produce the same results
/external/arduino/hardware/arduino/cores/arduino/
DWCharacter.h114 return ( ispunct (c) == 0 ? false : true); in isPunct()
/external/stlport/stlport/using/
Dlocale21 using _STLP_NEW_IO_NAMESPACE::ispunct;
/external/llvm/utils/TableGen/
DSequenceToOffsetTable.h130 if (isalnum(UC) || ispunct(UC)) { in printChar()
/external/libcxx/include/support/android/
Dlocale_bionic.h56 return ispunct(c); in ispunct_l()
/external/compiler-rt/lib/dfsan/
Ddone_abilist.txt44 fun:ispunct=functional
Dlibc_ubuntu1204_abilist.txt2348 fun:ispunct=uninstrumented
/external/qemu/include/
Dqemu-common.h206 #define qemu_ispunct(c) ispunct((unsigned char)(c))
/external/stlport/src/c_locale_dummy/
Dc_locale_dummy.c69 if (ispunct(c)) ctable[(unsigned char)c] |= _Locale_PUNCT; in _Locale_init()
/external/chromium_org/third_party/skia/third_party/lua/src/
Dlstrlib.c274 case 'p' : res = ispunct(c); break; in match_class()
/external/bison/
Dmaint.mk599 |isprint|ispunct|isspace|isupper|isxdigit|tolower|toupper
/external/pcre/dist/doc/html/
DNON-AUTOTOOLS-BUILD.txt655 documentation regarding isprint(), iscntrl(), isgraph() and ispunct(). I
692 $! isgraph() and ispunct() on OpenVMS must not produce the same results
/external/chromium_org/third_party/libxml/src/
Dtrio.c173 # define iswpunct(x) ispunct(x)
5364 if (ispunct(i))
/external/libxml2/
Dtrio.c173 # define iswpunct(x) ispunct(x)
5368 if (ispunct(i))

12