Searched refs:feof (Results 1 – 13 of 13) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0007-Fix-libc-compiler-error-when-calling-std-feof.patch | 4 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
|
D | 0011-Fix-tests-for-Android.patch | 154 +#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/ |
D | Android.mk | 4 LOCAL_MODULE := issue66668-libc++-std-feof 5 LOCAL_SRC_FILES := issue66668-libc++-std-feof.cpp
|
D | issue66668-libc++-std-feof.cpp | 9 int c = std::feof(fp); in main()
|
/ndk/sources/android/support/src/stdio/ |
D | stdio_impl.h | 52 #undef feof 53 #define feof fake_feof macro
|
D | stdio_impl.c | 74 return feof(file->file); in fake_feof()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cstdio | 92 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.h | 62 # undef feof 68 using _STLP_VENDOR_CSTD::feof;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | stdio_h.pass.cpp | 133 #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/ |
D | cstdio.pass.cpp | 136 #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/ |
D | cstdio | 47 using ::feof;
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | cstdio | 47 using ::feof;
|
/ndk/sources/host-tools/make-3.81/ |
D | main.c | 1506 while (!feof (stdin) && ! ferror (stdin)) in main()
|