HomeSort by relevance Sort by last modified time
    Searched refs:sputc (Results 1 - 9 of 9) sorted by null

  /external/astl/tests/
test_streambuf.cpp 54 EXPECT_TRUE(buf.sputc('A') == 65);
55 EXPECT_TRUE(buf.sputc('B') == 66);
56 EXPECT_TRUE(buf.sputc('C') == 67);
57 EXPECT_TRUE(buf.sputc('D') == 68);
58 EXPECT_TRUE(buf.sputc('E') == 69);
59 // TODO: The sputc implementation has been changed to use
62 // EXPECT_TRUE(buf.sputc('F') == char_traits<char>::eof());
63 // EXPECT_TRUE(buf.sputc('G') == char_traits<char>::eof());
test_sstream.cpp 91 buf.sputc('A');
92 buf.sputc('B');
93 buf.sputc('C');
94 buf.sputc('D');
  /external/astl/include/
streambuf 44 * - sputc
70 int_type sputc(char_type c) {
77 * Write str[0] to str[n-1] to output sequence. Stops if sputc
  /external/astl/src/
sstream.cpp 83 mStringBuf.sputc(c);
  /external/stlport/stlport/stl/
_ostreambuf_iterator.h 62 _M_ok = _M_ok && !traits_type::eq_int_type(_M_buf->sputc(__c),
_ostream.c 169 if (this->_S_eof(__to->sputc(_Traits::to_char_type(__c))))
308 __failed = this->_S_eof(this->rdbuf()->sputc(__c));
310 __failed = this->_S_eof(this->rdbuf()->sputc(__c));
316 __failed = __failed || this->_S_eof(this->rdbuf()->sputc(__c));
400 if (this->_S_eof(__buf->sputc(this->widen(*__s++))))
414 __failed = this->_S_eof(this->rdbuf()->sputc(__c));
_streambuf.h 198 int_type sputc(char_type __c) { function in class:basic_streambuf
_string_io.c 21 if (_Traits::eq_int_type(__buf->sputc(__f), _Traits::eof()))
_istream.c     [all...]

Completed in 76 milliseconds