/external/libcxx/test/std/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 …]
|
/external/libcxx/test/std/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/std/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(!std::ispunct('a')); in main()
|
/external/libcxx/include/ |
D | cctype | 28 int ispunct(int c); 79 #ifdef ispunct 80 #undef ispunct 112 using ::ispunct;
|
D | ctype.h | 60 #undef ispunct
|
D | __locale | 763 ispunct(_CharT __c, const locale& __loc)
|
/external/clang/test/Sema/ |
D | libbuiltins-ctype-powerpc64.c | 11 int ispunct(int); 36 (void)ispunct(x); in test()
|
D | libbuiltins-ctype-x86_64.c | 11 int ispunct(int); 36 (void)ispunct(x); in test()
|
/external/valgrind/coregrind/m_demangle/ |
D | safe-ctype.h | 140 #undef ispunct 141 #define ispunct(c) do_not_use_ispunct_with_safe_ctype macro
|
/external/openssh/openbsd-compat/ |
D | charclass.h | 24 { "punct", ispunct },
|
/external/ltp/testcases/kernel/io/disktest/ |
D | Getopt.c | 105 if (isalnum(chOpt) || ispunct(chOpt)) { in getopt()
|
/external/syslinux/com32/include/ |
D | ctype.h | 85 __ctype_inline int ispunct(int __c) in ispunct() function
|
/external/pcre/dist2/src/ |
D | pcre2_maketables.c | 126 if (ispunct(i)) p[cbit_punct + i/8] |= 1 << (i&7);
|
/external/python/cpython2/Lib/curses/ |
D | ascii.py | 63 def ispunct(c): return isgraph(c) and not isalnum(c) function
|
/external/llvm/utils/TableGen/ |
D | SequenceToOffsetTable.h | 134 if (isalnum(UC) || ispunct(UC)) { in printChar()
|
/external/libcxx/include/support/xlocale/ |
D | __posix_l_fallback.h | 56 return ::ispunct(c); in ispunct_l()
|
/external/toybox/toys/pending/ |
D | tr.c | 178 if (ispunct(k)) set[i++] = k; in expand_set()
|
/external/toybox/lib/ |
D | args.c | 206 if (type == '-' && !ispunct(*arg)) l*=-1; in gotflag()
|
/external/python/cpython2/Doc/library/ |
D | curses.ascii.rst | 148 .. function:: ispunct(c)
|
/external/compiler-rt/lib/dfsan/ |
D | done_abilist.txt | 44 fun:ispunct=functional
|
/external/python/cpython2/Lib/test/ |
D | test_curses.py | 358 check(curses.ascii.ispunct, c in string.punctuation)
|
/external/skia/third_party/lua/src/ |
D | lstrlib.c | 274 case 'p' : res = ispunct(c); break; in match_class()
|
/external/syslinux/com32/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/libxml2/ |
D | trio.c | 183 # define iswpunct(x) ispunct(x) 5384 if (ispunct(i))
|