Home
last modified time | relevance | path

Searched refs:isprint (Results 1 – 23 of 23) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/classification/
Disprint.pass.cpp20 assert( std::isprint(' ', l)); in main()
21 assert( std::isprint('<', l)); in main()
22 assert(!std::isprint('\x8', l)); in main()
23 assert( std::isprint('A', l)); in main()
24 assert( std::isprint('a', l)); in main()
25 assert( std::isprint('z', l)); in main()
26 assert( std::isprint('3', l)); in main()
27 assert( std::isprint('.', l)); in main()
28 assert( std::isprint('f', l)); in main()
29 assert( std::isprint('9', l)); in main()
[all …]
/ndk/sources/android/support/tests/
Dctype_unittest.cc13 TEST(ctype, isprint) { in TEST() argument
14 EXPECT_TRUE(isprint('a')); in TEST()
15 EXPECT_TRUE(isprint(' ')); in TEST()
16 EXPECT_FALSE(isprint('\t')); in TEST()
17 EXPECT_FALSE(isprint('\n')); in TEST()
18 EXPECT_FALSE(isprint('\f')); in TEST()
19 EXPECT_FALSE(isprint('\r')); in TEST()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dctype_h.pass.cpp44 #ifdef isprint
45 #error isprint defined
81 static_assert((std::is_same<decltype(isprint(0)), int>::value), ""); in main()
96 assert(isprint('a')); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
Dcctype.pass.cpp44 #ifdef isprint
45 #error isprint defined
81 static_assert((std::is_same<decltype(std::isprint(0)), int>::value), ""); in main()
96 assert(isprint('a')); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcctype27 int isprint(int c);
106 #ifdef isprint
107 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_isprint(int __c) {return isprint(__c);}
108 #undef isprint
109 inline _LIBCPP_INLINE_VISIBILITY int isprint(int __c) {return __libcpp_isprint(__c);}
110 #else // isprint
111 using ::isprint;
112 #endif // isprint
D__locale707 isprint(_CharT __c, const locale& __loc)
Dlocale72 template <class charT> bool isprint (charT c, const locale& loc);
/ndk/sources/android/support/src/musl-locale/
Disprint_l.c5 return isprint(c); in isprint_l()
/ndk/sources/cxx-stl/stlport/stlport/
Dctype.h52 # undef isprint
79 __inline int (isprint)(int c) { return _isctype(c, _BLANK|_PUNCT|_ALPHA|_DIGIT); }
Dlocale67 #undef isprint
87 inline bool isprint (_CharT c, const locale& loc)
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cctype.h38 using _STLP_VENDOR_CSTD::isprint;
/ndk/sources/cxx-stl/stlport/stlport/using/
Dlocale15 using _STLP_NEW_IO_NAMESPACE::isprint;
/ndk/sources/host-tools/make-3.81/glob/
Dfnmatch.c75 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
78 # define ISPRINT(c) (ISASCII (c) && isprint (c))
/ndk/sources/cxx-stl/system/include/
Dcctype49 using ::isprint;
/ndk/sources/cxx-stl/gabi++/include/
Dcctype49 using ::isprint;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
Dtest_tools.ipp46 namespace std { using ::strcmp; using ::strlen; using ::isprint; }
63 if( (std::isprint)( static_cast<unsigned char>(t) ) )
Dexception_safety.ipp451 if( (std::isprint)( c ) )
/ndk/sources/cxx-stl/stlport/src/c_locale_dummy/
Dc_locale_dummy.c66 if (isprint(c)) ctable[(unsigned char)c] |= _Locale_PRINT; in _Locale_init()
/ndk/sources/cxx-stl/llvm-libc++/patches.android/
D0001-android-Add-locale-support.patch183 +// isprint() properly. The implementation of isblank() relies on
/ndk/sources/host-tools/nawk-20071023/
Db.c757 { "print", 5, isprint },
/ndk/sources/host-tools/ndk-stack/regex/
Dengine.c1005 if (isprint(ch) || ch == ' ') in pchar()
/ndk/tests/device/test-libc++-static-full/jni/
DAndroid.mk2322 $(call gen-test, localization/locales/locale.convenience/classification/isprint)
/ndk/tests/device/test-libc++-shared-full/jni/
DAndroid.mk2331 $(call gen-test, localization/locales/locale.convenience/classification/isprint)