Lines Matching refs:Value

554     virtual void SAL_CALL writeBoolean(sal_Bool Value) throw (IOException, RuntimeException);
555 virtual void SAL_CALL writeByte(sal_Int8 Value) throw (IOException, RuntimeException);
556 virtual void SAL_CALL writeChar(sal_Unicode Value) throw (IOException, RuntimeException);
557 virtual void SAL_CALL writeShort(sal_Int16 Value) throw (IOException, RuntimeException);
558 virtual void SAL_CALL writeLong(sal_Int32 Value) throw (IOException, RuntimeException);
559 virtual void SAL_CALL writeHyper(sal_Int64 Value) throw (IOException, RuntimeException);
560 virtual void SAL_CALL writeFloat(float Value) throw (IOException, RuntimeException);
561 virtual void SAL_CALL writeDouble(double Value) throw (IOException, RuntimeException);
562 virtual void SAL_CALL writeUTF(const OUString& Value) throw (IOException, RuntimeException);
648 void ODataOutputStream::writeBoolean(sal_Bool Value) in writeBoolean() argument
652 if( Value ) in writeBoolean()
663 void ODataOutputStream::writeByte(sal_Int8 Value) in writeByte() argument
668 aTmp.getArray()[0] = Value; in writeByte()
672 void ODataOutputStream::writeChar(sal_Unicode Value) in writeChar() argument
678 pBytes[0] = sal_Int8(Value >> 8); in writeChar()
679 pBytes[1] = sal_Int8(Value); in writeChar()
684 void ODataOutputStream::writeShort(sal_Int16 Value) in writeShort() argument
690 pBytes[0] = sal_Int8(Value >> 8); in writeShort()
691 pBytes[1] = sal_Int8(Value); in writeShort()
695 void ODataOutputStream::writeLong(sal_Int32 Value) in writeLong() argument
701 pBytes[0] = sal_Int8(Value >> 24); in writeLong()
702 pBytes[1] = sal_Int8(Value >> 16); in writeLong()
703 pBytes[2] = sal_Int8(Value >> 8); in writeLong()
704 pBytes[3] = sal_Int8(Value); in writeLong()
708 void ODataOutputStream::writeHyper(sal_Int64 Value) in writeHyper() argument
714 pBytes[0] = sal_Int8(Value >> 56); in writeHyper()
715 pBytes[1] = sal_Int8(Value >> 48); in writeHyper()
716 pBytes[2] = sal_Int8(Value >> 40); in writeHyper()
717 pBytes[3] = sal_Int8(Value >> 32); in writeHyper()
718 pBytes[4] = sal_Int8(Value >> 24); in writeHyper()
719 pBytes[5] = sal_Int8(Value >> 16); in writeHyper()
720 pBytes[6] = sal_Int8(Value >> 8); in writeHyper()
721 pBytes[7] = sal_Int8(Value); in writeHyper()
726 void ODataOutputStream::writeFloat(float Value) in writeFloat() argument
731 a.f = Value; in writeFloat()
735 void ODataOutputStream::writeDouble(double Value) in writeDouble() argument
741 a.d = Value; in writeDouble()
756 void ODataOutputStream::writeUTF(const OUString& Value) in writeUTF() argument
760 sal_Int32 nStrLen = Value.getLength(); in writeUTF()
761 const sal_Unicode * pStr = Value.getStr(); in writeUTF()
1005 virtual void SAL_CALL writeBoolean(sal_Bool Value) throw (IOException, RuntimeException) in writeBoolean() argument
1006 { ODataOutputStream::writeBoolean( Value ); } in writeBoolean()
1007 virtual void SAL_CALL writeByte(sal_Int8 Value) throw (IOException, RuntimeException) in writeByte() argument
1008 { ODataOutputStream::writeByte( Value ); } in writeByte()
1009 virtual void SAL_CALL writeChar(sal_Unicode Value) throw (IOException, RuntimeException) in writeChar() argument
1010 { ODataOutputStream::writeChar( Value ); } in writeChar()
1011 virtual void SAL_CALL writeShort(sal_Int16 Value) throw (IOException, RuntimeException) in writeShort() argument
1012 { ODataOutputStream::writeShort( Value ); } in writeShort()
1013 virtual void SAL_CALL writeLong(sal_Int32 Value) throw (IOException, RuntimeException) in writeLong() argument
1014 { ODataOutputStream::writeLong( Value ); } in writeLong()
1015 virtual void SAL_CALL writeHyper(sal_Int64 Value) throw (IOException, RuntimeException) in writeHyper() argument
1016 { ODataOutputStream::writeHyper( Value ); } in writeHyper()
1017 virtual void SAL_CALL writeFloat(float Value) throw (IOException, RuntimeException) in writeFloat() argument
1018 { ODataOutputStream::writeFloat( Value ); } in writeFloat()
1019 virtual void SAL_CALL writeDouble(double Value) throw (IOException, RuntimeException) in writeDouble() argument
1020 { ODataOutputStream::writeDouble( Value ); } in writeDouble()
1021 virtual void SAL_CALL writeUTF(const OUString& Value) throw (IOException, RuntimeException) in writeUTF() argument
1022 { ODataOutputStream::writeUTF( Value );} in writeUTF()