HomeSort by relevance Sort by last modified time
    Searched refs:ispunct (Results 201 - 225 of 244) sorted by null

1 2 3 4 5 6 7 8910

  /toolchain/binutils/binutils-2.25/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
  /external/pcre/dist2/src/
pcre2_maketables.c 126 if (ispunct(i)) p[cbit_punct + i/8] |= 1 << (i&7);
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
iswctype_sb.c 118 return ispunct((int)c);
  /external/llvm/utils/TableGen/
SequenceToOffsetTable.h 134 if (isalnum(UC) || ispunct(UC)) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
localefwd.h 96 ispunct(_CharT, const locale&);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
localefwd.h 96 ispunct(_CharT, const locale&);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
localefwd.h 96 ispunct(_CharT, const locale&);
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
localefwd.h 96 ispunct(_CharT, const locale&);
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/
locale 73 #undef ispunct
111 inline bool ispunct (_CharT c, const locale& loc)
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
localefwd.h 96 ispunct(_CharT, const locale&);
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/
locale 73 #undef ispunct
111 inline bool ispunct (_CharT c, const locale& loc)
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
localefwd.h 96 ispunct(_CharT, const locale&);
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/
locale 73 #undef ispunct
111 inline bool ispunct (_CharT c, const locale& loc)
  /external/libcxx/include/support/xlocale/
__posix_l_fallback.h 56 return ::ispunct(c);
  /external/python/cpython2/Lib/curses/
ascii.py 63 def ispunct(c): return isgraph(c) and not isalnum(c) function
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/support/xlocale/
__posix_l_fallback.h 56 return ::ispunct(c);
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/support/xlocale/
__posix_l_fallback.h 56 return ::ispunct(c);
  /prebuilts/gdb/darwin-x86/lib/python2.7/curses/
ascii.py 63 def ispunct(c): return _ctoi(c) != 32 and not isalnum(c) function
  /prebuilts/gdb/linux-x86/lib/python2.7/curses/
ascii.py 63 def ispunct(c): return _ctoi(c) != 32 and not isalnum(c) function
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/support/xlocale/
__posix_l_fallback.h 56 return ::ispunct(c);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
ascii.py 63 def ispunct(c): return _ctoi(c) != 32 and not isalnum(c) function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
ascii.py 63 def ispunct(c): return _ctoi(c) != 32 and not isalnum(c) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
ctype.h 109 __exctype (ispunct); variable
180 # define ispunct(c) __isctype((c), _ISpunct) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
ctype.h 119 __exctype (ispunct); variable
206 # define ispunct(c) __isctype((c), _ISpunct)
  /bionic/libc/bionic/
wctype.cpp 87 return u_ispunct ? u_ispunct(wc) : ispunct(wc);

Completed in 2216 milliseconds

1 2 3 4 5 6 7 8910