Lines Matching refs:rAttribs

127 …xtHandlerRef SheetDataContext::onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs )  in onCreateContext()  argument
132 if( nElement == XLS_TOKEN( row ) ) { importRow( rAttribs ); return this; } in onCreateContext()
137 if( nElement == XLS_TOKEN( c ) && importCell( rAttribs ) ) in onCreateContext()
150 importFormula( rAttribs ); in onCreateContext()
297 void SheetDataContext::importRow( const AttributeList& rAttribs ) in importRow() argument
300 aModel.mnRow = rAttribs.getInteger( XML_r, -1 ); in importRow()
306 aModel.mfHeight = rAttribs.getDouble( XML_ht, -1.0 ); in importRow()
307 aModel.mnXfId = rAttribs.getInteger( XML_s, -1 ); in importRow()
308 aModel.mnLevel = rAttribs.getInteger( XML_outlineLevel, 0 ); in importRow()
309 aModel.mbCustomHeight = rAttribs.getBool( XML_customHeight, false ); in importRow()
310 aModel.mbCustomFormat = rAttribs.getBool( XML_customFormat, false ); in importRow()
311 aModel.mbShowPhonetic = rAttribs.getBool( XML_ph, false ); in importRow()
312 aModel.mbHidden = rAttribs.getBool( XML_hidden, false ); in importRow()
313 aModel.mbCollapsed = rAttribs.getBool( XML_collapsed, false ); in importRow()
314 aModel.mbThickTop = rAttribs.getBool( XML_thickTop, false ); in importRow()
315 aModel.mbThickBottom = rAttribs.getBool( XML_thickBot, false ); in importRow()
318 OUString aColSpansText = rAttribs.getString( XML_spans, OUString() ); in importRow()
337 bool SheetDataContext::importCell( const AttributeList& rAttribs ) in importCell() argument
339 OUString r = rAttribs.getString( XML_r, OUString() ); in importCell()
342 …bValidAddr = mrAddressConv.convertToCellAddress( maCellData.maCellAddr, rAttribs.getString( XML_r,… in importCell()
355 maCellData.mnCellType = rAttribs.getToken( XML_t, XML_n ); in importCell()
356 maCellData.mnXfId = rAttribs.getInteger( XML_s, -1 ); in importCell()
357 maCellData.mbShowPhonetic = rAttribs.getBool( XML_ph, false ); in importCell()
370 void SheetDataContext::importFormula( const AttributeList& rAttribs ) in importFormula() argument
373 …mbValidRange = mrAddressConv.convertToCellRange( maFmlaData.maFormulaRef, rAttribs.getString( XML_… in importFormula()
375 maFmlaData.mnFormulaType = rAttribs.getToken( XML_t, XML_normal ); in importFormula()
376 maFmlaData.mnSharedId = rAttribs.getInteger( XML_si, -1 ); in importFormula()
380 maTableData.maRef1 = rAttribs.getString( XML_r1, OUString() ); in importFormula()
381 maTableData.maRef2 = rAttribs.getString( XML_r2, OUString() ); in importFormula()
382 maTableData.mb2dTable = rAttribs.getBool( XML_dt2D, false ); in importFormula()
383 maTableData.mbRowTable = rAttribs.getBool( XML_dtr, false ); in importFormula()
384 maTableData.mbRef1Deleted = rAttribs.getBool( XML_del1, false ); in importFormula()
385 maTableData.mbRef2Deleted = rAttribs.getBool( XML_del2, false ); in importFormula()