/aoo41x/main/sc/source/filter/excel/ |
H A D | xistream.cxx | 926 if( b16Bit ) in ReadRawUniString() 938 if( b16Bit ) in ReadRawUniString() 962 JumpToNextStringContinue( b16Bit ); in ReadRawUniString() 971 bool b16Bit; in ReadUniString() local 972 sal_Size nExtSize = ReadUniStringExtHeader( b16Bit, nFlags ); in ReadUniString() 973 String aRet( ReadRawUniString( nChars, b16Bit ) ); in ReadUniString() 995 if( b16Bit ) in IgnoreRawUniString() 1010 JumpToNextStringContinue( b16Bit ); in IgnoreRawUniString() 1016 bool b16Bit; in IgnoreUniString() local 1017 sal_Size nExtSize = ReadUniStringExtHeader( b16Bit, nFlags ); in IgnoreUniString() [all …]
|
H A D | xistring.cxx | 76 bool b16Bit, bRich, bFarEast; in Read() local 79 rStrm.ReadUniStringExtHeader( b16Bit, bRich, bFarEast, nRunCount, nExtInf, nFlagField ); in Read() 83 maString = rStrm.ReadRawUniString( nChars, b16Bit ); in Read()
|
H A D | xicontent.cxx | 114 void lclAppendString32( String& rString, XclImpStream& rStrm, sal_uInt32 nChars, bool b16Bit ) in lclAppendString32() argument 117 rString.Append( rStrm.ReadRawUniString( nReadChars, b16Bit ) ); in lclAppendString32() 120 if( b16Bit ) in lclAppendString32() 127 void lclAppendString32( String& rString, XclImpStream& rStrm, bool b16Bit ) in lclAppendString32() argument 129 lclAppendString32( rString, rStrm, rStrm.ReaduInt32(), b16Bit ); in lclAppendString32() 134 void lclIgnoreString32( XclImpStream& rStrm, bool b16Bit ) in lclIgnoreString32() argument 138 if( b16Bit ) in lclIgnoreString32()
|
/aoo41x/main/oox/source/xls/ |
H A D | richstring.cxx | 194 void FontPortionModelList::importPortions( BiffInputStream& rStrm, bool b16Bit ) in importPortions() argument 196 sal_uInt16 nCount = b16Bit ? rStrm.readuInt16() : rStrm.readuInt8(); in importPortions() 197 importPortions( rStrm, nCount, b16Bit ? BIFF_FONTPORTION_16BIT : BIFF_FONTPORTION_8BIT ); in importPortions() 461 bool b16Bit = getFlag( nFlagField, BIFF_STRF_16BIT ); in importUniString() local 468 OUString aBaseText = rStrm.readUniStringChars( nChars, b16Bit ); in importUniString()
|
H A D | stylesbuffer.cxx | 412 void Color::importColorId( BiffInputStream& rStrm, bool b16Bit ) in importColorId() argument 414 setIndexed( b16Bit ? rStrm.readuInt16() : rStrm.readuInt8() ); in importColorId()
|
/aoo41x/main/oox/inc/oox/dump/ |
H A D | biffdumper.hxx | 429 sal_uInt16 dumpPatternIdx( const String& rName = EMPTY_STRING, bool b16Bit = true ); 430 sal_uInt16 dumpColorIdx( const String& rName = EMPTY_STRING, bool b16Bit = true ); 431 sal_uInt16 dumpFontIdx( const String& rName = EMPTY_STRING, bool b16Bit = true );
|
/aoo41x/main/sc/source/filter/inc/ |
H A D | xistream.hxx | 417 String ReadRawUniString( sal_uInt16 nChars, bool b16Bit ); 427 void IgnoreRawUniString( sal_uInt16 nChars, bool b16Bit );
|
/aoo41x/main/oox/source/dump/ |
H A D | biffdumper.cxx | 483 bool b16Bit = getFlag( nFlagField, BIFF_STRF_16BIT ); in dumpUniString() local 490 OUString aString = mxBiffStrm->readUniStringChars( nChars, b16Bit, true ); in dumpUniString() 3223 sal_uInt16 WorkbookStreamObject::dumpPatternIdx( const String& rName, bool b16Bit ) in dumpPatternIdx() argument 3225 return dumpDec< sal_uInt16, sal_uInt8 >( b16Bit, rName( "fill-pattern" ), mxFillPatterns ); in dumpPatternIdx() 3228 sal_uInt16 WorkbookStreamObject::dumpColorIdx( const String& rName, bool b16Bit ) in dumpColorIdx() argument 3230 return dumpDec< sal_uInt16, sal_uInt8 >( b16Bit, rName( "color-idx" ), mxColors ); in dumpColorIdx() 3233 sal_uInt16 WorkbookStreamObject::dumpFontIdx( const String& rName, bool b16Bit ) in dumpFontIdx() argument 3235 return dumpDec< sal_uInt16, sal_uInt8 >( b16Bit, rName( "font-idx" ), mxFontNames ); in dumpFontIdx()
|
/aoo41x/main/sw/source/filter/ww8/ |
H A D | ww8par.cxx | 210 void lclIgnoreString32( SvMemoryStream& rStrm, bool b16Bit ) in lclIgnoreString32() argument 214 if( b16Bit ) in lclIgnoreString32() 219 String SwWW8ImplReader::ReadRawUniString( SvMemoryStream& rStrm,sal_uInt16 nChars, bool b16Bit ) in ReadRawUniString() argument 233 if( b16Bit ) in ReadRawUniString() 258 void lclAppendString32( String& rString, SvMemoryStream& rStrm, sal_uInt32 nChars, bool b16Bit ) in lclAppendString32() argument 261 String urlStr = SwWW8ImplReader::ReadRawUniString( rStrm, nReadChars, b16Bit ); in lclAppendString32() 265 void lclAppendString32( String& rString, SvMemoryStream& rStrm, bool b16Bit ) in lclAppendString32() argument 269 lclAppendString32( rString, rStrm, nValue, b16Bit ); in lclAppendString32()
|
H A D | ww8par.hxx | 1758 static String ReadRawUniString( SvMemoryStream& rStrm,sal_uInt16 nChars, bool b16Bit );
|
/aoo41x/main/oox/inc/oox/xls/ |
H A D | richstring.hxx | 131 void importPortions( BiffInputStream& rStrm, bool b16Bit );
|
H A D | stylesbuffer.hxx | 118 void importColorId( BiffInputStream& rStrm, bool b16Bit = true );
|