/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
progress.hpp | 41 : m_os(os) {} 51 std::istream::fmtflags old_flags = m_os.setf( std::istream::fixed, 53 std::streamsize old_prec = m_os.precision( 2 ); 54 m_os << elapsed() << " s\n" // "s" is System International d'Unites std 56 m_os.flags( old_flags ); 57 m_os.precision( old_prec ); 64 std::ostream & m_os; member in class:boost::progress_timer 86 : m_os(os), m_s1(s1), m_s2(s2), m_s3(s3) { restart(expected_count); } 95 m_os << m_s1 << "0% 10 20 30 40 50 60 70 80 90 100%\n" 116 std::ostream & m_os; // may not be present in all imp member in class:boost::progress_display [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
WriterToASCI.java | 43 private final OutputStream m_os; field in class:WriterToASCI 53 m_os = os; 75 m_os.write(chars[i]); 92 m_os.write(c); 107 m_os.write(s.charAt(i)); 122 m_os.flush(); 134 m_os.close(); 145 return m_os;
|
WriterToUTF8Buffered.java | 55 private final OutputStream m_os; field in class:WriterToUTF8Buffered 83 m_os = out; 109 // m_os = out; 447 m_os.write(m_outputBytes, 0, count); 467 m_os.flush(); 482 m_os.close(); 493 return m_os;
|
/external/zlib/src/contrib/iostream2/ |
zstream.h | 158 ozstream() : m_fp(0), m_os(0) { 161 : m_fp(0), m_os(0) { 165 : m_fp(0), m_os(0) { 199 if (m_os) { 200 ::gzwrite(m_fp, m_os->str(), m_os->pcount()); 201 delete[] m_os->str(); delete m_os; m_os = 0; 237 if (m_os == 0) m_os = new ostrstream 255 ostrstream* m_os; member in class:ozstream [all...] |