/aoo41x/main/qadevOOo/tests/java/ifc/sheet/ |
H A D | _XSheetCellRangeContainer.java | 54 rAddr[i] = new CellRangeAddress(); in before() 55 rAddr[i].Sheet = i; in before() 56 rAddr[i].StartColumn = i; in before() 57 rAddr[i].StartRow = i; in before() 58 rAddr[i].EndColumn = i + 3; in before() 59 rAddr[i].EndRow = i + 3; in before() 81 oObj.addRangeAddress(rAddr[0], false); in _addRangeAddress() 86 if ( addr[i].Sheet == rAddr[0].Sheet && in _addRangeAddress() 112 oObj.removeRangeAddress(rAddr[0]); in _removeRangeAddress() 146 oObj.addRangeAddresses(rAddr, false); in _addRangeAddresses() [all …]
|
/aoo41x/main/oox/inc/oox/xls/ |
H A D | addressconverter.hxx | 63 …nAddress( const ::com::sun::star::table::CellAddress& rAddr ) : mnCol( rAddr.Column ), mnRow( rAdd… in BinAddress() 66 … set( const ::com::sun::star::table::CellAddress& rAddr ) { mnCol = rAddr.Column; mnRow = rAdd… in set() 112 inline explicit BinRange( const BinAddress& rAddr ) : maFirst( rAddr ), maLast( rAddr ) {} in BinRange() 116 … BinRange( const ::com::sun::star::table::CellAddress& rAddr ) : maFirst( rAddr ), maLast( rAddr … in BinRange() 131 bool contains( const BinAddress& rAddr ) const;
|
H A D | sheetdatacontext.hxx | 145 … bool readCellXfId( BiffInputStream& rStrm, const BinAddress& rAddr, bool bBiff2 );
|
/aoo41x/main/sc/inc/ |
H A D | address.hxx | 263 inline Details( formula::FormulaGrammar::AddressConvention eConvP, ScAddress const & rAddr ) in Details() 264 : eConv( eConvP ), nRow( rAddr.Row() ), nCol( rAddr.Col() ) in Details() 270 Details( const ScDocument* pDoc, const ScAddress & rAddr ); 576 inline bool ScRange::In( const ScAddress& rAddr ) const in In() 579 aStart.Col() <= rAddr.Col() && rAddr.Col() <= aEnd.Col() && in In() 580 aStart.Row() <= rAddr.Row() && rAddr.Row() <= aEnd.Row() && in In() 581 aStart.Tab() <= rAddr.Tab() && rAddr.Tab() <= aEnd.Tab(); in In()
|
H A D | bigrange.hxx | 224 inline sal_Bool ScBigRange::In( const ScBigAddress& rAddr ) const in In() 227 aStart.Col() <= rAddr.Col() && rAddr.Col() <= aEnd.Col() && in In() 228 aStart.Row() <= rAddr.Row() && rAddr.Row() <= aEnd.Row() && in In() 229 aStart.Tab() <= rAddr.Tab() && rAddr.Tab() <= aEnd.Tab(); in In()
|
H A D | conditio.hxx | 232 void SourceChanged( const ScAddress& rAddr ); 286 void SourceChanged( const ScAddress& rAddr );
|
H A D | document.hxx | 1680 void Broadcast( sal_uLong nHint, const ScAddress& rAddr,
|
/aoo41x/main/sc/source/filter/excel/ |
H A D | xilink.cxx | 408 const XclAddress& rAddr = p->GetAddress(); in LoadCachedValues() local 415 pCacheTable->setCell(rAddr.mnCol, rAddr.mnRow, pToken); in LoadCachedValues() 422 pCacheTable->setCell(rAddr.mnCol, rAddr.mnRow, pToken); in LoadCachedValues() 429 pCacheTable->setCell(rAddr.mnCol, rAddr.mnRow, pToken); in LoadCachedValues() 436 pCacheTable->setCell(rAddr.mnCol, rAddr.mnRow, pToken); in LoadCachedValues()
|
H A D | excimp8.cxx | 624 void XclImpAutoFilterData::SetExtractPos( const ScAddress& rAddr ) in SetExtractPos() argument 626 aParam.nDestCol = rAddr.Col(); in SetExtractPos() 627 aParam.nDestRow = rAddr.Row(); in SetExtractPos() 628 aParam.nDestTab = rAddr.Tab(); in SetExtractPos()
|
/aoo41x/main/sc/source/core/tool/ |
H A D | address.cxx | 50 nRow( rAddr.Row() ), in Details() 51 nCol( rAddr.Col() ) in Details() 959 const ScAddress aCurPos(rAddr); in lcl_ScAddress_Parse_OOo() 1024 nTab = rAddr.Tab(); in lcl_ScAddress_Parse_OOo() 1077 rAddr.Set( nCol, nRow, nTab ); in lcl_ScAddress_Parse_OOo() 1104 rAddr.SetTab( nTab); in lcl_ScAddress_Parse_OOo() 1126 rAddr.SetTab( nTab); in lcl_ScAddress_Parse_OOo() 1198 ScRange r = rAddr; in lcl_ScAddress_Parse() 1201 rAddr = r.aStart; in lcl_ScAddress_Parse() 1206 ScRange r = rAddr; in lcl_ScAddress_Parse() [all …]
|
/aoo41x/main/sc/source/filter/inc/ |
H A D | lotimpop.hxx | 95 inline void ImportLotus::Read( ScAddress& rAddr ) in Read() argument 99 rAddr.SetRow( static_cast<SCROW>(nRow) ); in Read() 102 rAddr.SetTab( static_cast<SCTAB>(nByte) ); in Read() 104 rAddr.SetCol( static_cast<SCCOL>(nByte) ); in Read()
|
H A D | htmlpars.hxx | 225 inline explicit ScHTMLPos( const ScAddress& rAddr ) { Set( rAddr ); } in ScHTMLPos() 231 inline void Set( const ScAddress& rAddr ) in Set() 232 { Set( rAddr.Col(), rAddr.Row() ); } in Set()
|
H A D | excimp8.hxx | 124 void SetExtractPos( const ScAddress& rAddr );
|
/aoo41x/main/oox/source/xls/ |
H A D | addressconverter.cxx | 146 bool BinRange::contains( const BinAddress& rAddr ) const in contains() 148 return (maFirst.mnCol <= rAddr.mnCol) && (rAddr.mnCol <= maLast.mnCol) && in contains() 149 (maFirst.mnRow <= rAddr.mnRow) && (rAddr.mnRow <= maLast.mnRow); in contains()
|
H A D | sheetdatacontext.cxx | 751 bool BiffSheetDataContext::readCellXfId( BiffInputStream& rStrm, const BinAddress& rAddr, bool bBif… in readCellXfId() argument 753 …bool bValidAddr = mrAddressConv.convertToCellAddress( maCellData.maCellAddr, rAddr, mnSheet, true … in readCellXfId()
|
/aoo41x/main/sc/source/core/data/ |
H A D | documen7.cxx | 86 void ScDocument::Broadcast( sal_uLong nHint, const ScAddress& rAddr, in Broadcast() argument 92 ScHint aHint( nHint, rAddr, pCell ); in Broadcast()
|
H A D | conditio.cxx | 1481 void ScConditionalFormat::SourceChanged( const ScAddress& rAddr ) in SourceChanged() argument 1484 ppEntries[i]->SourceChanged( rAddr ); in SourceChanged() 1585 void ScConditionalFormatList::SourceChanged( const ScAddress& rAddr ) in SourceChanged() argument 1589 (*this)[i]->SourceChanged( rAddr ); in SourceChanged()
|
/aoo41x/main/xmloff/source/chart/ |
H A D | SchXMLTableContext.hxx | 90 static void AdjustMax( const SchNumericCellRangeAddress& rAddr,
|
/aoo41x/main/sc/source/ui/vba/ |
H A D | vbarange.cxx | 2234 bool cellInRange( const table::CellRangeAddress& rAddr, const sal_Int32& nCol, const sal_Int32& nRo… in cellInRange() argument 2236 if ( nCol >= rAddr.StartColumn && nCol <= rAddr.EndColumn && in cellInRange() 2237 nRow >= rAddr.StartRow && nRow <= rAddr.EndRow ) in cellInRange()
|