Home
last modified time | relevance | path

Searched refs:feof (Results 1 – 13 of 13) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/patches.android/
D0007-Fix-libc-compiler-error-when-calling-std-feof.patch4 Subject: [PATCH 07/12] Fix libc++ compiler error when calling std::feof()
7 defined in cstdio's std:: getchar, putchar, clearerr, feof, ferror
10 std::feof, for example, break compilation.
49 +#ifdef feof
50 +inline _LIBCPP_INLINE_VISIBILITY int __libcpp_feof(FILE* __stream) {return feof(__stream);}
51 +#undef feof
52 +inline _LIBCPP_INLINE_VISIBILITY int feof(FILE* __stream) {return __libcpp_feof(__stream);}
53 +#endif // feof
D0011-Fix-tests-for-Android.patch154 +#if !defined(feof)
155 + //check return type of feof only if it's not an macro which may be a compound expression
156 static_assert((std::is_same<decltype(feof(fp)), int>::value), "");
202 +#if !defined(feof)
203 + //check return type of feof only if it's not an macro which may be a compound expression
204 static_assert((std::is_same<decltype(std::feof(fp)), int>::value), "");
/ndk/tests/build/issue66668-libc++-std-feof/jni/
DAndroid.mk4 LOCAL_MODULE := issue66668-libc++-std-feof
5 LOCAL_SRC_FILES := issue66668-libc++-std-feof.cpp
Dissue66668-libc++-std-feof.cpp9 int c = std::feof(fp); in main()
/ndk/sources/android/support/src/stdio/
Dstdio_impl.h52 #undef feof
53 #define feof fake_feof macro
Dstdio_impl.c74 return feof(file->file); in fake_feof()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcstdio92 int feof(FILE* stream);
154 #ifdef feof
155 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_feof(FILE* __stream) {return feof(__stream);}
156 #undef feof
157 inline _LIBCPP_INLINE_VISIBILITY int feof(FILE* __stream) {return __libcpp_feof(__stream);}
158 #endif // feof
219 using ::feof;
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cstdio.h62 # undef feof
68 using _STLP_VENDOR_CSTD::feof;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dstdio_h.pass.cpp133 #if !defined(feof) in main()
135 static_assert((std::is_same<decltype(feof(fp)), int>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/c.files/
Dcstdio.pass.cpp136 #if !defined(feof) in main()
138 static_assert((std::is_same<decltype(std::feof(fp)), int>::value), ""); in main()
/ndk/sources/cxx-stl/system/include/
Dcstdio47 using ::feof;
/ndk/sources/cxx-stl/gabi++/include/
Dcstdio47 using ::feof;
/ndk/sources/host-tools/make-3.81/
Dmain.c1506 while (!feof (stdin) && ! ferror (stdin)) in main()