Searched refs:ispunct (Results 1 – 25 of 26) sorted by relevance
12
/external/libcxx/test/localization/locales/locale.convenience/classification/ |
D | ispunct.pass.cpp | 20 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 …]
|
D | Android.mk | 35 test_name := localization/locales/locale.convenience/classification/ispunct 36 test_src := ispunct.pass.cpp
|
/external/libcxx/include/ |
D | cctype | 28 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 | __locale | 743 ispunct(_CharT __c, const locale& __loc)
|
/external/libcxx/test/depr/depr.c.headers/ |
D | ctype_h.pass.cpp | 48 #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/ |
D | cctype.pass.cpp | 48 #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/ |
D | ctype.h | 58 # undef ispunct 77 __inline int (ispunct)(int c) { return _isctype(c, _PUNCT); }
|
D | locale | 73 #undef ispunct 111 inline bool ispunct (_CharT c, const locale& loc)
|
/external/valgrind/main/coregrind/m_demangle/ |
D | safe-ctype.h | 140 #undef ispunct 141 #define ispunct(c) do_not_use_ispunct_with_safe_ctype macro
|
/external/stlport/stlport/stl/ |
D | _cctype.h | 39 using _STLP_VENDOR_CSTD::ispunct;
|
/external/pcre/dist/ |
D | pcre_maketables.c | 125 if (ispunct(i)) p[cbit_punct + i/8] |= 1 << (i&7); in pcre_maketables()
|
D | NON-AUTOTOOLS-BUILD | 655 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/ |
D | WCharacter.h | 114 return ( ispunct (c) == 0 ? false : true); in isPunct()
|
/external/stlport/stlport/using/ |
D | locale | 21 using _STLP_NEW_IO_NAMESPACE::ispunct;
|
/external/llvm/utils/TableGen/ |
D | SequenceToOffsetTable.h | 130 if (isalnum(UC) || ispunct(UC)) { in printChar()
|
/external/libcxx/include/support/android/ |
D | locale_bionic.h | 56 return ispunct(c); in ispunct_l()
|
/external/compiler-rt/lib/dfsan/ |
D | done_abilist.txt | 44 fun:ispunct=functional
|
D | libc_ubuntu1204_abilist.txt | 2348 fun:ispunct=uninstrumented
|
/external/qemu/include/ |
D | qemu-common.h | 206 #define qemu_ispunct(c) ispunct((unsigned char)(c))
|
/external/stlport/src/c_locale_dummy/ |
D | c_locale_dummy.c | 69 if (ispunct(c)) ctable[(unsigned char)c] |= _Locale_PUNCT; in _Locale_init()
|
/external/chromium_org/third_party/skia/third_party/lua/src/ |
D | lstrlib.c | 274 case 'p' : res = ispunct(c); break; in match_class()
|
/external/bison/ |
D | maint.mk | 599 |isprint|ispunct|isspace|isupper|isxdigit|tolower|toupper
|
/external/pcre/dist/doc/html/ |
D | NON-AUTOTOOLS-BUILD.txt | 655 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/ |
D | trio.c | 173 # define iswpunct(x) ispunct(x) 5364 if (ispunct(i))
|
/external/libxml2/ |
D | trio.c | 173 # define iswpunct(x) ispunct(x) 5368 if (ispunct(i))
|
12