Home
last modified time | relevance | path

Searched refs:ValueRange (Results 1 – 8 of 8) sorted by relevance

/aoo4110/main/oox/inc/oox/helper/
H A Dcontainerhelper.hxx47 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 …]
/aoo4110/main/oox/source/xls/
H A Dworksheethelper.cxx152 void RowModel::insertColSpan( const ValueRange& rColSpan ) in insertColSpan()
253 Reference< XTableColumns > getColumns( const ValueRange& rColRange ) const;
255 Reference< XTableRows > getRows( 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()
1180 convertColumns( aColLevels, ValueRange( nNextCol, nMaxCol ), maDefColModel ); in convertColumns()
1186 const ValueRange& rColRange, const ColumnModel& rModel ) in convertColumns()
1227 convertRows( aRowLevels, ValueRange( nNextRow, nMaxRow ), maDefRowModel ); in convertRows()
1233 const ValueRange& rRowRange, const RowModel& rModel, double fDefHeight ) in convertRows()
1456 Reference< XTableColumns > WorksheetHelper::getColumns( const ValueRange& rColRange ) const in getColumns()
[all …]
H A Dsheetdatabuffer.cxx116 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 Dsheetdatacontext.cxx310 … aModel.insertColSpan( ValueRange( aColSpanToken.copy( 0, nSepPos ).toInt32() - 1, nLastCol ) ); in importRow()
388 aModel.insertColSpan( ValueRange( nFirstCol, ::std::min( nLastCol, nMaxCol ) ) ); in importRow()
712 aModel.insertColSpan( ValueRange( nFirstUsedCol, nLastCol ) ); in importRow()
H A Dpivotcachebuffer.cxx1433 maColSpans.insert( ValueRange( rRange.StartColumn, rRange.EndColumn ) ); in prepareSourceDataSheet()
/aoo4110/main/oox/source/helper/
H A Dcontainerhelper.cxx50 …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()
/aoo4110/main/oox/inc/oox/xls/
H A Dworksheethelper.hxx84 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 Dsheetdatabuffer.hxx93 …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.

Completed in 65 milliseconds