/aoo4110/main/oox/inc/oox/xls/ |
H A D | stylesbuffer.hxx | 930 ::rtl::OUString createCellStyle( sal_Int32 nXfId ) const; 1031 XfRef getCellXf( sal_Int32 nXfId ) const; 1033 XfRef getStyleXf( sal_Int32 nXfId ) const; 1038 FontRef getFontFromCellXf( sal_Int32 nXfId ) const; 1052 ::rtl::OUString createCellStyle( sal_Int32 nXfId ) const; 1065 void writeCellXfToPropertyMap( PropertyMap& rPropMap, sal_Int32 nXfId ) const; 1067 void writeStyleXfToPropertyMap( PropertyMap& rPropMap, sal_Int32 nXfId ) const; 1070 void writeCellXfToPropertySet( PropertySet& rPropSet, sal_Int32 nXfId ) const; 1072 void writeStyleXfToPropertySet( PropertySet& rPropSet, sal_Int32 nXfId ) const;
|
H A D | sheetdatabuffer.hxx | 231 void setRowFormat( sal_Int32 nRow, sal_Int32 nXfId, bool bCustomFormat ); 300 void set( sal_Int32 nRow, sal_Int32 nXfId ); 301 bool tryExpand( sal_Int32 nRow, sal_Int32 nXfId ); 312 … set( const ::com::sun::star::table::CellAddress& rCellAddr, sal_Int32 nXfId, sal_Int32 nNumFmt… 313 …yExpand( const ::com::sun::star::table::CellAddress& rCellAddr, sal_Int32 nXfId, sal_Int32 nNumFmt…
|
H A D | worksheethelper.hxx | 301 … setDefaultColumnFormat( sal_Int32 nFirstCol, sal_Int32 nLastCol, sal_Int32 nXfId );
|
/aoo4110/main/oox/source/xls/ |
H A D | sheetdatabuffer.cxx | 489 void SheetDataBuffer::setRowFormat( sal_Int32 nRow, sal_Int32 nXfId, bool bCustomFormat ) in setRowFormat() argument 495 if( (maXfIdRowRange.maRowRange.mnLast < 0) || !maXfIdRowRange.tryExpand( nRow, nXfId ) ) in setRowFormat() 498 maXfIdRowRange.set( nRow, nXfId ); in setRowFormat() 571 void SheetDataBuffer::XfIdRowRange::set( sal_Int32 nRow, sal_Int32 nXfId ) in set() argument 574 mnXfId = nXfId; in set() 577 bool SheetDataBuffer::XfIdRowRange::tryExpand( sal_Int32 nRow, sal_Int32 nXfId ) in tryExpand() argument 579 if( mnXfId == nXfId ) in tryExpand() 595 void SheetDataBuffer::XfIdRange::set( const CellAddress& rCellAddr, sal_Int32 nXfId, sal_Int32 nNum… in set() argument 600 mnXfId = nXfId; in set() 604 bool SheetDataBuffer::XfIdRange::tryExpand( const CellAddress& rCellAddr, sal_Int32 nXfId, sal_Int3… in tryExpand() argument [all …]
|
H A D | stylesbuffer.cxx | 3100 return createCellStyle( maStylesByXf.get( nXfId ) ); in createCellStyle() 3334 XfRef StylesBuffer::getCellXf( sal_Int32 nXfId ) const in getCellXf() 3336 return maCellXfs.get( nXfId ); in getCellXf() 3339 XfRef StylesBuffer::getStyleXf( sal_Int32 nXfId ) const in getStyleXf() 3341 return maStyleXfs.get( nXfId ); in getStyleXf() 3352 if( const Xf* pXf = getCellXf( nXfId ).get() ) in getFontFromCellXf() 3432 return maCellStyles.createCellStyle( nXfId ); in createCellStyle() 3481 if( Xf* pXf = maCellXfs.get( nXfId ).get() ) in writeCellXfToPropertyMap() 3487 if( Xf* pXf = maStyleXfs.get( nXfId ).get() ) in writeStyleXfToPropertyMap() 3493 if( Xf* pXf = maCellXfs.get( nXfId ).get() ) in writeCellXfToPropertySet() [all …]
|
H A D | worksheetfragment.cxx | 940 sal_uInt16 nFirstCol, nLastCol, nWidth, nXfId, nFlags; in importColInfo() local 941 rStrm >> nFirstCol >> nLastCol >> nWidth >> nXfId >> nFlags; in importColInfo() 949 aModel.mnXfId = nXfId; in importColInfo() 960 sal_uInt16 nFirstCol, nLastCol, nXfId; in importColumnDefault() local 961 rStrm >> nFirstCol >> nLastCol >> nXfId; in importColumnDefault() 962 setDefaultColumnFormat( nFirstCol, nLastCol, nXfId ); in importColumnDefault()
|
H A D | sheetdatacontext.cxx | 404 sal_uInt32 nXfId; in readCellHeader() local 405 rStrm >> nXfId; in readCellHeader() 408 maCellData.mnXfId = extractValue< sal_Int32 >( nXfId, 0, 24 ); in readCellHeader() 409 maCellData.mbShowPhonetic = getFlag( nXfId, BIFF12_CELL_SHOWPHONETIC ); in readCellHeader()
|
H A D | worksheethelper.cxx | 324 … convertColumnFormat( sal_Int32 nFirstCol, sal_Int32 nLastCol, sal_Int32 nXfId ) const; 864 …sheetGlobals::convertColumnFormat( sal_Int32 nFirstCol, sal_Int32 nLastCol, sal_Int32 nXfId ) const in convertColumnFormat() 870 getStyles().writeCellXfToPropertySet( aPropSet, nXfId ); in convertColumnFormat() 1643 …WorksheetHelper::setDefaultColumnFormat( sal_Int32 nFirstCol, sal_Int32 nLastCol, sal_Int32 nXfId ) in setDefaultColumnFormat() argument 1645 mrSheetGlob.convertColumnFormat( nFirstCol, nLastCol, nXfId ); in setDefaultColumnFormat()
|
/aoo4110/main/oox/source/dump/ |
H A D | biffdumper.cxx | 250 rtl_TextEncoding BiffSharedData::getXfEncoding( sal_uInt16 nXfId ) const in getXfEncoding() 252 sal_uInt16 nFontId = (nXfId < getXfCount()) ? maXfFontIds[ nXfId ] : 0; in getXfEncoding() 3720 sal_uInt16 nXfId = getBiffData().getXfCount(); in dumpXfRec() local 3721 mxOut->resetItemIndex( nXfId ); in dumpXfRec()
|
/aoo4110/main/oox/inc/oox/dump/ |
H A D | biffdumper.hxx | 114 rtl_TextEncoding getXfEncoding( sal_uInt16 nXfId ) const;
|
/aoo4110/main/sc/source/filter/excel/ |
H A D | xestyle.cxx | 2112 sal_Int32 nXfId = 0; in SaveXml() local 2116 nXfId = rStrm.GetRoot().GetXFBuffer().GetXmlStyleIndex( nXFIndex ); in SaveXml() 2124 XML_xfId, IsStyleXF() ? NULL : OString::valueOf( nXfId ).getStr(), in SaveXml()
|