Searched refs:putc (Results 1 – 18 of 18) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0007-Fix-libc-compiler-error-when-calling-std-feof.patch | 31 #ifdef putc 32 …inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putc(int __c, FILE* __stream) {return putc(__c, __st… 33 #undef putc 34 …inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __st… 35 #endif // putc
|
D | 0008-Remove-gcc-warning-about-redefinition-of-putchar-wit.patch | 24 …inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __st… 25 #endif // putc
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | unlocked-io.h | 114 # undef putc 115 # define putc(x,y) putc_unlocked (x,y) macro 117 # define putc_unlocked(x,y) putc (x,y)
|
D | error.c | 81 # undef putc 82 # define putc(c, fp) INTUSE(_IO_putc) (c, fp) macro 214 putc ('\n', stderr); in error_tail()
|
D | stdio.in.h | 452 # undef putc 453 # define putc rpl_fputc 454 extern int putc (int c, FILE *stream);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cstdio | 78 int putc(int c, FILE* stream); 123 #ifdef putc 124 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putc(int __c, FILE* __stream) {return putc(__c, __str… 125 #undef putc 126 inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __str… 127 #endif // putc 207 using ::putc;
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
D | fmt.c | 252 putc ('\n', outfile); in get_paragraph() 282 putc (c, outfile); in copy_rest() 563 putc ('\n', outfile); in put_line() 576 putc (*s++, outfile); in put_word() 587 putc (' ', outfile); in put_space()
|
D | utils.c | 82 putc('\n', stderr); in panic()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _cstdio.h | 58 # undef putc 91 using _STLP_VENDOR_CSTD::putc;
|
/ndk/sources/host-tools/make-3.81/ |
D | ansi2knr.c | 708 while ( p != endfn ) putc(*p, out), p++; 714 putc(*p, out); 720 putc(*p, out), p++;
|
D | misc.c | 252 putc ('\n', stderr);
|
D | variable.c | 1441 putc ('\n', stdout); in print_variable_set()
|
/ndk/sources/host-tools/nawk-20071023/ |
D | lib.c | 623 putc(*p, stderr); in eprint() 627 putc(*p, stderr); in eprint() 631 putc(c, stderr); in eprint() 634 putc('\n', stderr); in eprint()
|
/ndk/sources/cxx-stl/system/include/ |
D | cstdio | 69 using ::putc;
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | cstdio | 69 using ::putc;
|
/ndk/sources/cxx-stl/stlport/src/ |
D | stdio_streambuf.cpp | 227 int result = putc(c, _M_file); in overflow()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | stdio_h.pass.cpp | 121 static_assert((std::is_same<decltype(putc(0,fp)), int>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/c.files/ |
D | cstdio.pass.cpp | 124 static_assert((std::is_same<decltype(std::putc(0,fp)), int>::value), ""); in main()
|