/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/classification/ |
D | isprint.pass.cpp | 20 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/ |
D | ctype_unittest.cc | 13 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/ |
D | ctype_h.pass.cpp | 44 #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/ |
D | cctype.pass.cpp | 44 #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/ |
D | cctype | 27 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 | __locale | 707 isprint(_CharT __c, const locale& __loc)
|
D | locale | 72 template <class charT> bool isprint (charT c, const locale& loc);
|
/ndk/sources/android/support/src/musl-locale/ |
D | isprint_l.c | 5 return isprint(c); in isprint_l()
|
/ndk/sources/cxx-stl/stlport/stlport/ |
D | ctype.h | 52 # undef isprint 79 __inline int (isprint)(int c) { return _isctype(c, _BLANK|_PUNCT|_ALPHA|_DIGIT); }
|
D | locale | 67 #undef isprint 87 inline bool isprint (_CharT c, const locale& loc)
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _cctype.h | 38 using _STLP_VENDOR_CSTD::isprint;
|
/ndk/sources/cxx-stl/stlport/stlport/using/ |
D | locale | 15 using _STLP_NEW_IO_NAMESPACE::isprint;
|
/ndk/sources/host-tools/make-3.81/glob/ |
D | fnmatch.c | 75 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c)) 78 # define ISPRINT(c) (ISASCII (c) && isprint (c))
|
/ndk/sources/cxx-stl/system/include/ |
D | cctype | 49 using ::isprint;
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | cctype | 49 using ::isprint;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/ |
D | test_tools.ipp | 46 namespace std { using ::strcmp; using ::strlen; using ::isprint; } 63 if( (std::isprint)( static_cast<unsigned char>(t) ) )
|
D | exception_safety.ipp | 451 if( (std::isprint)( c ) )
|
/ndk/sources/cxx-stl/stlport/src/c_locale_dummy/ |
D | c_locale_dummy.c | 66 if (isprint(c)) ctable[(unsigned char)c] |= _Locale_PRINT; in _Locale_init()
|
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0001-android-Add-locale-support.patch | 183 +// isprint() properly. The implementation of isblank() relies on
|
/ndk/sources/host-tools/nawk-20071023/ |
D | b.c | 757 { "print", 5, isprint },
|
/ndk/sources/host-tools/ndk-stack/regex/ |
D | engine.c | 1005 if (isprint(ch) || ch == ' ') in pchar()
|
/ndk/tests/device/test-libc++-static-full/jni/ |
D | Android.mk | 2322 $(call gen-test, localization/locales/locale.convenience/classification/isprint)
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
D | Android.mk | 2331 $(call gen-test, localization/locales/locale.convenience/classification/isprint)
|