Lines Matching refs:writeByte
555 virtual void SAL_CALL writeByte(sal_Int8 Value) throw (IOException, RuntimeException);
654 writeByte( 1 ); in writeBoolean()
658 writeByte( 0 ); in writeBoolean()
663 void ODataOutputStream::writeByte(sal_Int8 Value) in writeByte() function in io_stm::ODataOutputStream
799 writeByte(sal_Int8(c)); in writeUTF()
803 writeByte(sal_Int8(0xE0 | ((c >> 12) & 0x0F))); in writeUTF()
804 writeByte(sal_Int8(0x80 | ((c >> 6) & 0x3F))); in writeUTF()
805 writeByte(sal_Int8(0x80 | ((c >> 0) & 0x3F))); in writeUTF()
810 writeByte(sal_Int8(0xC0 | ((c >> 6) & 0x1F))); in writeUTF()
811 writeByte(sal_Int8(0x80 | ((c >> 0) & 0x3F))); in writeUTF()
1007 virtual void SAL_CALL writeByte(sal_Int8 Value) throw (IOException, RuntimeException) in writeByte() function in io_stm::OObjectOutputStream
1008 { ODataOutputStream::writeByte( Value ); } in writeByte()