HomeSort by relevance Sort by last modified time
    Searched refs:isgraph (Results 1 - 25 of 155) sorted by null

1 2 3 4 5 6 7

  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locales/locale.convenience/classification/
isgraph.pass.cpp 12 // template <class charT> bool isgraph (charT c, const locale& loc);
20 assert(!std::isgraph(' ', l));
21 assert( std::isgraph('<', l));
22 assert(!std::isgraph('\x8', l));
23 assert( std::isgraph('A', l));
24 assert( std::isgraph('a', l));
25 assert( std::isgraph('z', l));
26 assert( std::isgraph('3', l));
27 assert( std::isgraph('.', l));
28 assert( std::isgraph('f', l))
    [all...]
  /external/webkit/Tools/android/flex-2.5.4a/MISC/fastwc/
mywc.c 13 if (isgraph(c)) {
20 } while (isgraph(c));
  /bionic/libc/unistd/
charclass.h 19 { "graph", isgraph },
  /external/openssh/openbsd-compat/
charclass.h 21 { "graph", isgraph },
  /bionic/libstdc++/include/
cctype 47 using ::isgraph;
  /external/webkit/Source/JavaScriptCore/wtf/
DisallowCType.h 46 #undef isgraph macro
63 #define isgraph isgraph_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h macro
  /ndk/sources/cxx-stl/gabi++/include/
cctype 47 using ::isgraph;
  /ndk/sources/cxx-stl/system/include/
cctype 47 using ::isgraph;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cctype 45 using ::isgraph;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cctype 45 using ::isgraph;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cctype 47 using ::isgraph;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cctype 47 using ::isgraph;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cctype 47 using ::isgraph;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cctype 47 using ::isgraph;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cctype 47 using ::isgraph;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cctype 47 using ::isgraph;
  /system/extras/tests/bionic/libstdc++/
test_cctype.cpp 53 #ifdef isgraph
87 using std::isgraph;
  /external/stlport/stlport/stl/
_cctype.h 36 using _STLP_VENDOR_CSTD::isgraph;
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/
ctype_h.pass.cpp 36 #ifdef isgraph
37 #error isgraph defined
79 static_assert((std::is_same<decltype(isgraph(0)), int>::value), "");
94 assert(isgraph('a'));
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 36 using _STLP_VENDOR_CSTD::isgraph;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 36 using _STLP_VENDOR_CSTD::isgraph;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 36 using _STLP_VENDOR_CSTD::isgraph;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 36 using _STLP_VENDOR_CSTD::isgraph;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 36 using _STLP_VENDOR_CSTD::isgraph;
  /external/tcpdump/
print-ascii.c 68 if (!isgraph(s) &&
95 *(asp++) = (isgraph(s1) ? s1 : '.');
96 *(asp++) = (isgraph(s2) ? s2 : '.');
112 *(asp++) = (isgraph(s1) ? s1 : '.');

Completed in 3792 milliseconds

1 2 3 4 5 6 7