Searched refs:ValueRange (Results 1 – 8 of 8) sorted by relevance
| /AOO42X/main/oox/inc/oox/helper/ |
| H A D | containerhelper.hxx | 47 struct ValueRange struct 52 inline explicit ValueRange( sal_Int32 nValue = 0 ) : mnFirst( nValue ), mnLast( nValue ) {} in ValueRange() argument 53 …inline explicit ValueRange( sal_Int32 nFirst, sal_Int32 nLast ) : mnFirst( nFirst ), mnLast( n… in ValueRange() function 55 …inline bool operator==( const ValueRange& rRange ) const { return (mnFirst == rRange.mnFir… in operator ==() argument 56 inline bool operator!=( const ValueRange& rRange ) const { return !(*this == rRange); } in operator !=() argument 58 …inline bool contains( const ValueRange& rRange ) const { return (mnFirst <= rRange.mnFirst… in contains() argument 59 …inline bool intersects( const ValueRange& rRange ) const { return (mnFirst <= rRange.mnLas… in intersects() argument 64 typedef ::std::vector< ValueRange > ValueRangeVector; 77 inline void insert( sal_Int32 nValue ) { insert( ValueRange( nValue ) ); } in insert() 79 void insert( const ValueRange& rRange ); [all …]
|
| /AOO42X/main/oox/source/xls/ |
| H A D | worksheethelper.cxx | 152 void RowModel::insertColSpan( const ValueRange& rColSpan ) in insertColSpan() 253 Reference< XTableColumns > getColumns( const ValueRange& rColRange ) const; 255 Reference< XTableRows > getRows( const ValueRange& rRowRange ) const; 362 …void convertColumns( OutlineLevelVec& orColLevels, const ValueRange& rColRange, con… 367 …void convertRows( OutlineLevelVec& orRowLevels, const ValueRange& rRowRange, const … 547 Reference< XTableColumns > WorksheetGlobals::getColumns( const ValueRange& rColRange ) const in getColumns() 560 Reference< XTableRows > WorksheetGlobals::getRows( const ValueRange& rRowRange ) const in getRows() 1169 …ValueRange aColRange( ::std::max( aIt->first, nNextCol ), ::std::min( aIt->second.second, nMaxCol … in convertColumns() 1172 … convertColumns( aColLevels, ValueRange( nNextCol, aColRange.mnFirst - 1 ), maDefColModel ); in convertColumns() 1180 convertColumns( aColLevels, ValueRange( nNextCol, nMaxCol ), maDefColModel ); in convertColumns() [all …]
|
| H A D | sheetdatabuffer.cxx | 116 CellBlock::CellBlock( const WorksheetHelper& rHelper, const ValueRange& rColSpan, sal_Int32 nRow ) : in CellBlock() 127 bool CellBlock::isExpandable( const ValueRange& rColSpan ) const in isExpandable() 132 bool CellBlock::isBefore( const ValueRange& rColSpan ) const in isBefore() 265 const ValueRange& rColSpan = *aVIt; in getCellBlock() 573 maRowRange = ValueRange( nRow ); in set()
|
| H A D | sheetdatacontext.cxx | 329 … aModel.insertColSpan( ValueRange( aColSpanToken.copy( 0, nSepPos ).toInt32() - 1, nLastCol ) ); in importRow() 420 aModel.insertColSpan( ValueRange( nFirstCol, ::std::min( nLastCol, nMaxCol ) ) ); in importRow() 744 aModel.insertColSpan( ValueRange( nFirstUsedCol, nLastCol ) ); in importRow()
|
| H A D | pivotcachebuffer.cxx | 1433 maColSpans.insert( ValueRange( rRange.StartColumn, rRange.EndColumn ) ); in prepareSourceDataSheet()
|
| /AOO42X/main/oox/source/helper/ |
| H A D | containerhelper.cxx | 50 …inline bool operator()( const ValueRange& rRange, sal_Int32 nValue ) const { return rRange… in operator ()() 57 void ValueRangeSet::insert( const ValueRange& rRange ) in insert() 87 ValueRangeVector ValueRangeSet::getIntersection( const ValueRange& rRange ) const in getIntersection() 93 …aRanges.push_back( ValueRange( ::std::max( aIt->mnFirst, rRange.mnFirst ), ::std::min( aIt->mnLast… in getIntersection()
|
| /AOO42X/main/oox/inc/oox/xls/ |
| H A D | worksheethelper.hxx | 84 ValueRange maRange; /// 1-based (!) range of the described columns. 119 void insertColSpan( const ValueRange& rColSpan ); 235 getColumns( const ValueRange& rColRange ) const; 238 getRows( const ValueRange& rRowRange ) const;
|
| H A D | sheetdatabuffer.hxx | 93 …explicit CellBlock( const WorksheetHelper& rHelper, const ValueRange& rColSpan, sal_Int… 98 bool isBefore( const ValueRange& rColSpan ) const; 100 bool isExpandable( const ValueRange& rColSpan ) const; 295 ValueRange maRowRange; /// Indexes of first and last row.
|