Searched refs:clearerr (Results 1 – 12 of 12) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0007-Fix-libc-compiler-error-when-calling-std-feof.patch | 7 defined in cstdio's std:: getchar, putchar, clearerr, feof, ferror 43 +#ifdef clearerr 44 +inline _LIBCPP_INLINE_VISIBILITY void __libcpp_clearerr(FILE* __stream) {return clearerr(__stream)… 45 +#undef clearerr 46 +inline _LIBCPP_INLINE_VISIBILITY void clearerr(FILE* __stream) {return __libcpp_clearerr(__stream)… 47 +#endif // clearerr
|
D | 0011-Fix-tests-for-Android.patch | 153 static_assert((std::is_same<decltype(clearerr(fp)), void>::value), ""); 201 static_assert((std::is_same<decltype(std::clearerr(fp)), void>::value), "");
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | unlocked-io.h | 37 # undef clearerr 38 # define clearerr(x) clearerr_unlocked (x) macro 40 # define clearerr_unlocked(x) clearerr (x)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cstdio | 91 void clearerr(FILE* stream); 148 #ifdef clearerr 149 inline _LIBCPP_INLINE_VISIBILITY void __libcpp_clearerr(FILE* __stream) {return clearerr(__stream);} 150 #undef clearerr 151 inline _LIBCPP_INLINE_VISIBILITY void clearerr(FILE* __stream) {return __libcpp_clearerr(__stream);} 152 #endif // clearerr 218 using ::clearerr;
|
/ndk/tests/build/issue66668-libc++-std-feof/jni/ |
D | issue66668-libc++-std-feof.cpp | 8 std::clearerr(fp); in main()
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
D | utils.c | 243 clearerr(stream); 258 clearerr(stream); 286 clearerr(stream); 334 clearerr(fp);
|
D | execute.c | 703 clearerr(stdin); /* clear any stale EOF indication */
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _cstdio.h | 66 using _STLP_VENDOR_CSTD::clearerr;
|
/ndk/sources/cxx-stl/system/include/ |
D | cstdio | 45 using ::clearerr;
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | cstdio | 45 using ::clearerr;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | stdio_h.pass.cpp | 132 static_assert((std::is_same<decltype(clearerr(fp)), void>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/c.files/ |
D | cstdio.pass.cpp | 135 static_assert((std::is_same<decltype(std::clearerr(fp)), void>::value), ""); in main()
|