Home
last modified time | relevance | path

Searched refs:getchar (Results 1 – 9 of 9) 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
25 +#ifdef getchar
26 +inline _LIBCPP_INLINE_VISIBILITY int __libcpp_getchar(void) {return getchar();}
27 +#undef getchar
28 +inline _LIBCPP_INLINE_VISIBILITY int getchar(void) {return __libcpp_getchar();}
29 +#endif // getchar
/ndk/sources/host-tools/sed-4.2.1/lib/
Dunlocked-io.h107 # undef getchar
108 # define getchar() getchar_unlocked () macro
110 # define getchar_unlocked() getchar ()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcstdio76 int getchar(void);
117 #ifdef getchar
118 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_getchar(void) {return getchar();}
119 #undef getchar
120 inline _LIBCPP_INLINE_VISIBILITY int getchar(void) {return __libcpp_getchar();}
121 #endif // getchar
203 using ::getchar;
/ndk/tests/build/issue66668-libc++-std-feof/jni/
Dissue66668-libc++-std-feof.cpp6 int a = std::getchar(); in main()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cstdio.h60 # undef getchar
93 using _STLP_VENDOR_CSTD::getchar;
/ndk/sources/cxx-stl/system/include/
Dcstdio65 using ::getchar;
/ndk/sources/cxx-stl/gabi++/include/
Dcstdio65 using ::getchar;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dstdio_h.pass.cpp119 static_assert((std::is_same<decltype(getchar()), int>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/c.files/
Dcstdio.pass.cpp120 static_assert((std::is_same<decltype(std::getchar()), int>::value), ""); in main()