Home
last modified time | relevance | path

Searched refs:clearerr (Results 1 – 12 of 12) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/patches.android/
D0007-Fix-libc-compiler-error-when-calling-std-feof.patch7 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
D0011-Fix-tests-for-Android.patch153 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/
Dunlocked-io.h37 # 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/
Dcstdio91 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/
Dissue66668-libc++-std-feof.cpp8 std::clearerr(fp); in main()
/ndk/sources/host-tools/sed-4.2.1/sed/
Dutils.c243 clearerr(stream);
258 clearerr(stream);
286 clearerr(stream);
334 clearerr(fp);
Dexecute.c703 clearerr(stdin); /* clear any stale EOF indication */
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cstdio.h66 using _STLP_VENDOR_CSTD::clearerr;
/ndk/sources/cxx-stl/system/include/
Dcstdio45 using ::clearerr;
/ndk/sources/cxx-stl/gabi++/include/
Dcstdio45 using ::clearerr;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dstdio_h.pass.cpp132 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/
Dcstdio.pass.cpp135 static_assert((std::is_same<decltype(std::clearerr(fp)), void>::value), ""); in main()