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

1 2

  /device/linaro/bootloader/edk2/StdLib/Include/
ctype.h 47 alphabetic characters for which none of iscntrl, isdigit, ispunct, or
98 isdigit, ispunct, or isspace is true. In the "C" locale, islower returns
117 /** The ispunct function tests for any printing character that is one of a
119 isalnum is true. In the "C" locale, ispunct returns true for every printing
127 int ispunct(int c);
145 isdigit, ispunct, or isspace is true. In the "C" locale, isupper returns
231 #define ispunct(c) (__isCClass( (int)c, (_CP))) macro
  /device/linaro/bootloader/edk2/StdLib/LibC/Ctype/
CClass.c 57 alphabetic characters for which none of iscntrl, isdigit, ispunct, or
121 isdigit, ispunct, or isspace is true. In the "C" locale, islower returns
152 /** The ispunct function tests for any printing character that is one of a
154 isalnum is true. In the "C" locale, ispunct returns true for every printing
163 ispunct( function
192 isdigit, ispunct, or isspace is true. In the "C" locale, isupper returns
  /external/libcxx/include/
ctype.h 25 int ispunct(int c);
51 #undef ispunct macro
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
ctype.h 25 int ispunct(int c);
60 #undef ispunct macro
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/c++/v1/
ctype.h 25 int ispunct(int c);
51 #undef ispunct macro
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/c++/v1/
ctype.h 25 int ispunct(int c);
51 #undef ispunct macro
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/c++/v1/
ctype.h 25 int ispunct(int c);
51 #undef ispunct macro
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/c++/v1/
ctype.h 25 int ispunct(int c);
51 #undef ispunct macro
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/c++/v1/
ctype.h 25 int ispunct(int c);
51 #undef ispunct macro
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/c++/v1/
ctype.h 25 int ispunct(int c);
51 #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/clang/host/linux-x86/clang-4393122/include/c++/v1/
ctype.h 25 int ispunct(int c);
51 #undef ispunct macro
  /prebuilts/clang/host/linux-x86/clang-4479392/include/c++/v1/
ctype.h 25 int ispunct(int c);
51 #undef ispunct macro
  /prebuilts/clang/host/linux-x86/clang-4579689/include/c++/v1/
ctype.h 25 int ispunct(int c);
51 #undef ispunct macro
  /prebuilts/clang/host/linux-x86/clang-4630689/include/c++/v1/
ctype.h 25 int ispunct(int c);
51 #undef ispunct macro
  /prebuilts/clang/host/linux-x86/clang-4639204/include/c++/v1/
ctype.h 25 int ispunct(int c);
51 #undef ispunct macro
  /prebuilts/clang/host/linux-x86/clang-4691093/include/c++/v1/
ctype.h 25 int ispunct(int c);
51 #undef ispunct macro
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/include/
ctype.h 25 int ispunct(int c);
51 #undef ispunct macro
  /bionic/libc/upstream-openbsd/lib/libc/gen/
isctype.c 104 #undef ispunct macro
106 ispunct(int c) function
110 DEF_STRONG(ispunct); variable
  /external/syslinux/com32/include/
ctype.h 85 __ctype_inline int ispunct(int __c) function
  /external/python/cpython2/Lib/curses/
ascii.py 63 def ispunct(c): return isgraph(c) and not isalnum(c) function
  /external/python/cpython3/Lib/curses/
ascii.py 63 def ispunct(c): return isgraph(c) and not isalnum(c) function
  /external/valgrind/coregrind/m_demangle/
safe-ctype.h 97 #define ISPUNCT(c) _sch_test(c, _sch_ispunct)
140 #undef ispunct macro
141 #define ispunct(c) do_not_use_ispunct_with_safe_ctype macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
safe-ctype.h 97 #define ISPUNCT(c) _sch_test(c, _sch_ispunct)
137 #undef ispunct macro
138 #define ispunct(c) do_not_use_ispunct_with_safe_ctype macro
  /prebuilts/gdb/darwin-x86/lib/python2.7/curses/
ascii.py 63 def ispunct(c): return _ctoi(c) != 32 and not isalnum(c) function

Completed in 642 milliseconds

1 2