Lines Matching refs:eDestCharSet

1014 sal_Bool SvStream::WriteUnicodeOrByteText( const String& rStr, rtl_TextEncoding eDestCharSet )  in WriteUnicodeOrByteText()  argument
1016 if ( eDestCharSet == RTL_TEXTENCODING_UNICODE ) in WriteUnicodeOrByteText()
1020 ByteString aStr( rStr, eDestCharSet ); in WriteUnicodeOrByteText()
1036 sal_Bool SvStream::WriteByteStringLine( const String& rStr, rtl_TextEncoding eDestCharSet ) in WriteByteStringLine() argument
1038 return WriteLine( ByteString( rStr, eDestCharSet ) ); in WriteByteStringLine()
1055 sal_Bool SvStream::WriteUniOrByteStringLine( const String& rStr, rtl_TextEncoding eDestCharSet ) in WriteUniOrByteStringLine() argument
1057 if ( eDestCharSet == RTL_TEXTENCODING_UNICODE ) in WriteUniOrByteStringLine()
1060 return WriteByteStringLine( rStr, eDestCharSet ); in WriteUniOrByteStringLine()
1073 sal_Bool SvStream::WriteByteStringLines( const String& rStr, rtl_TextEncoding eDestCharSet ) in WriteByteStringLines() argument
1075 return WriteLines( ByteString( rStr, eDestCharSet ) ); in WriteByteStringLines()
1095 sal_Bool SvStream::WriteUniOrByteStringLines( const String& rStr, rtl_TextEncoding eDestCharSet ) in WriteUniOrByteStringLines() argument
1097 if ( eDestCharSet == RTL_TEXTENCODING_UNICODE ) in WriteUniOrByteStringLines()
1100 return WriteByteStringLines( rStr, eDestCharSet ); in WriteUniOrByteStringLines()
1109 sal_Bool SvStream::WriteUniOrByteChar( sal_Unicode ch, rtl_TextEncoding eDestCharSet ) in WriteUniOrByteChar() argument
1111 if ( eDestCharSet == RTL_TEXTENCODING_UNICODE ) in WriteUniOrByteChar()
1115 ByteString aStr( ch, eDestCharSet ); in WriteUniOrByteChar()
1688 SvStream& SvStream::WriteByteString( const UniString& rStr, rtl_TextEncoding eDestCharSet ) in WriteByteString() argument
1691 if (eDestCharSet == RTL_TEXTENCODING_UNICODE) in WriteByteString()
1716 return WriteByteString(ByteString( rStr, eDestCharSet )); in WriteByteString()