Home
last modified time | relevance | path

Searched refs:rRow (Results 1 – 25 of 219) sorted by relevance

123456789

/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/core/data/
H A Dtable6.cxx290 SCROW nLastRow = rRow; in SkipFilteredRows()
337 SCROW nRow = rRow; in Search()
512 rRow = nRow; in Search()
553 rRow += 1; in UpdateSearchItemAddressForReplace()
560 rRow -= 1; in UpdateSearchItemAddressForReplace()
568 SCROW nRow = rRow; in Replace()
575 rRow = nRow; in Replace()
622 SCROW nRow = rRow; in SearchStyle()
699 rRow = nRow; in SearchStyle()
944 rRow = nRow; in lcl_maybeReplaceCellString()
[all …]
H A Dtable1.cxx1399 if ( !ValidRow( rRow )) in SkipRow()
1404 if ( rRow > nUsedY ) in SkipRow()
1407 rRow += nMovY; in SkipRow()
1410 rRow = rMark.GetNextMarked( nCol, rRow, bUp ); in SkipRow()
1421 rRow += nMovY; in SkipRow()
1423 rRow = rMark.GetNextMarked( nCol, rRow, bUp ); in SkipRow()
1461 rRow = nRow; in GetNextPos()
1475 nEndRow = rRow; in GetNextPos()
1492 rRow = nRow; in GetNextPos()
1673 rRow = nRow; in GetNextPos()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/core/data/
H A Dtable6.cxx326 SCROW nRow = rRow; in Search()
501 rRow = nRow; in Search()
542 rRow += 1; in UpdateSearchItemAddressForReplace()
549 rRow -= 1; in UpdateSearchItemAddressForReplace()
557 SCROW nRow = rRow; in Replace()
564 rRow = nRow; in Replace()
611 SCROW nRow = rRow; in SearchStyle()
688 rRow = nRow; in SearchStyle()
792 ((rRow == MAXROWCOUNT || rRow == -1) && ValidCol(rCol)) in SearchAndReplace()
934 rRow = nRow; in lcl_maybeReplaceCellString()
[all …]
H A Dtable1.cxx1355 if ( !ValidRow( rRow )) in SkipRow()
1360 if ( rRow > nUsedY ) in SkipRow()
1363 rRow += nMovY; in SkipRow()
1366 rRow = rMark.GetNextMarked( nCol, rRow, bUp ); in SkipRow()
1377 rRow += nMovY; in SkipRow()
1379 rRow = rMark.GetNextMarked( nCol, rRow, bUp ); in SkipRow()
1417 rRow = nRow; in GetNextPos()
1431 nEndRow = rRow; in GetNextPos()
1448 rRow = nRow; in GetNextPos()
1629 rRow = nRow; in GetNextPos()
[all …]
/dports/editors/kate/kate-21.12.3/addons/katebuild-plugin/
H A DTargetModel.cpp206 quint32 rRow = itemIndex.internalId(); in command() local
208 if (rRow == TargetModel::InvalidIndex) { in command()
209 rRow = cRow; in command()
229 quint32 rRow = itemIndex.internalId(); in cmdName() local
231 if (rRow == TargetModel::InvalidIndex) { in cmdName()
232 rRow = cRow; in cmdName()
252 quint32 rRow = itemIndex.internalId(); in workDir() local
254 if (rRow == TargetModel::InvalidIndex) { in workDir()
255 rRow = cRow; in workDir()
271 quint32 rRow = itemIndex.internalId(); in targetName() local
[all …]
/dports/graphics/opencolorio/OpenColorIO-1.1.1/src/core/
H A DImagePacking.cpp71 char* rRow = reinterpret_cast<char*>(srcImg.rData) +
79 float* rPtr = reinterpret_cast<float*>(rRow + xStrideBytes*xIndex);
113 rRow += yStrideBytes;
118 rPtr = reinterpret_cast<float*>(rRow);
162 rRow += yStrideBytes;
166 rPtr = reinterpret_cast<float*>(rRow);
208 char* rRow = reinterpret_cast<char*>(dstImg.rData) +
250 rRow += yStrideBytes;
255 rPtr = reinterpret_cast<float*>(rRow);
296 rRow += yStrideBytes;
[all …]
/dports/graphics/opencolorio-tools/OpenColorIO-1.1.1/src/core/
H A DImagePacking.cpp71 char* rRow = reinterpret_cast<char*>(srcImg.rData) +
79 float* rPtr = reinterpret_cast<float*>(rRow + xStrideBytes*xIndex);
113 rRow += yStrideBytes;
118 rPtr = reinterpret_cast<float*>(rRow);
162 rRow += yStrideBytes;
166 rPtr = reinterpret_cast<float*>(rRow);
208 char* rRow = reinterpret_cast<char*>(dstImg.rData) +
250 rRow += yStrideBytes;
255 rPtr = reinterpret_cast<float*>(rRow);
296 rRow += yStrideBytes;
[all …]
/dports/graphics/py-opencolorio/OpenColorIO-1.1.1/src/core/
H A DImagePacking.cpp71 char* rRow = reinterpret_cast<char*>(srcImg.rData) +
79 float* rPtr = reinterpret_cast<float*>(rRow + xStrideBytes*xIndex);
113 rRow += yStrideBytes;
118 rPtr = reinterpret_cast<float*>(rRow);
162 rRow += yStrideBytes;
166 rPtr = reinterpret_cast<float*>(rRow);
208 char* rRow = reinterpret_cast<char*>(dstImg.rData) +
250 rRow += yStrideBytes;
255 rPtr = reinterpret_cast<float*>(rRow);
296 rRow += yStrideBytes;
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/lotuswordpro/source/filter/xfilter/
H A Dxftable.cxx84 void XFTable::AddRow(rtl::Reference<XFRow> const & rRow) in AddRow() argument
86 assert(rRow); in AddRow()
88 for (sal_Int32 i = 0; i < rRow->GetCellCount(); ++i) in AddRow()
90 XFCell* pFirstCell = rRow->GetCell(i + 1); //starts at 1, not 0 in AddRow()
95 int row = rRow->GetRow(); in AddRow()
98 rRow->SetRow(m_aRows.size()+1); in AddRow()
100 row = rRow->GetRow(); in AddRow()
102 rRow->SetOwnerTable(this); in AddRow()
103 m_aRows[row] = rRow; in AddRow()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/lotuswordpro/source/filter/xfilter/
H A Dxftable.cxx84 void XFTable::AddRow(rtl::Reference<XFRow> const & rRow) in AddRow() argument
86 assert(rRow.get()); in AddRow()
88 for (sal_Int32 i = 0; i < rRow->GetCellCount(); ++i) in AddRow()
90 XFCell* pFirstCell = rRow->GetCell(i + 1); //starts at 1, not 0 in AddRow()
95 int row = rRow->GetRow(); in AddRow()
98 rRow->SetRow(m_aRows.size()+1); in AddRow()
100 row = rRow->GetRow(); in AddRow()
102 rRow->SetOwnerTable(this); in AddRow()
103 m_aRows[row] = rRow; in AddRow()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/ui/view/
H A Dtabview2.cxx170 if (rRow < 0) in checkBoundary()
172 rRow = 0; in checkBoundary()
177 rRow = pDoc->MaxRow(); in checkBoundary()
257 SCROW nOld = rRow; in moveCursorByMergedCell()
261 if (nOrigY < pDoc->MaxRow() && nOrigY < rRow && rRow <= nOrigY + nRowSpan - 1) in moveCursorByMergedCell()
269 if (nOld < rRow) in moveCursorByMergedCell()
274 --rRow; in moveCursorByMergedCell()
280 SCROW nOld = rRow; in moveCursorByMergedCell()
283 if (nOrigY > 0 && nOrigY <= rRow && rRow < nOrigY + nRowSpan - 1) in moveCursorByMergedCell()
292 if (nOld > rRow) in moveCursorByMergedCell()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/ui/view/
H A Dtabview2.cxx169 if (rRow < 0) in checkBoundary()
171 rRow = 0; in checkBoundary()
176 rRow = pDoc->MaxRow(); in checkBoundary()
256 SCROW nOld = rRow; in moveCursorByMergedCell()
260 if (nOrigY < pDoc->MaxRow() && nOrigY < rRow && rRow <= nOrigY + nRowSpan - 1) in moveCursorByMergedCell()
268 if (nOld < rRow) in moveCursorByMergedCell()
273 --rRow; in moveCursorByMergedCell()
278 SCROW nOld = rRow; in moveCursorByMergedCell()
281 if (nOrigY > 0 && nOrigY <= rRow && rRow < nOrigY + nRowSpan - 1) in moveCursorByMergedCell()
290 if (nOld > rRow) in moveCursorByMergedCell()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/source/control/
H A Dfmtfield.cxx127 StateTransitions& rRow = m_aTransitions[ START ]; in NumberValidator() local
128 rRow.insert( Transition( '_', NUM_START ) ); in NumberValidator()
137 lcl_insertSignTransitions( rRow, DIGIT_PRE_COMMA ); in NumberValidator()
144 lcl_insertStartExponentTransition( rRow ); in NumberValidator()
155 lcl_insertStartExponentTransition( rRow ); in NumberValidator()
159 lcl_insertStopTransition( rRow ); in NumberValidator()
170 lcl_insertStartExponentTransition( rRow ); in NumberValidator()
173 lcl_insertStopTransition( rRow ); in NumberValidator()
181 lcl_insertSignTransitions( rRow, EXPONENT_DIGIT ); in NumberValidator()
187 lcl_insertStopTransition( rRow ); in NumberValidator()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/source/control/
H A Dfmtfield.cxx91 StateTransitions& rRow = m_aTransitions[ START ]; in NumberValidator() local
92 rRow.insert( Transition( '_', NUM_START ) ); in NumberValidator()
101 lcl_insertSignTransitions( rRow, DIGIT_PRE_COMMA ); in NumberValidator()
108 lcl_insertStartExponentTransition( rRow ); in NumberValidator()
119 lcl_insertStartExponentTransition( rRow ); in NumberValidator()
123 lcl_insertStopTransition( rRow ); in NumberValidator()
134 lcl_insertStartExponentTransition( rRow ); in NumberValidator()
137 lcl_insertStopTransition( rRow ); in NumberValidator()
145 lcl_insertSignTransitions( rRow, EXPONENT_DIGIT ); in NumberValidator()
151 lcl_insertStopTransition( rRow ); in NumberValidator()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/connectivity/source/drivers/mork/
H A DMorkParser.cxx609 for ( const auto& rRow : rows->map ) in retrieveLists() local
613 << ( ( int ) rRow.first < 0 ? "-" : " ") in retrieveLists()
614 << rRow.first << std::endl; in retrieveLists()
618 MorkCells::const_iterator cellsIter = rRow.second.find(0xC1); in retrieveLists()
619 if (cellsIter != rRow.second.end()) in retrieveLists()
643 for ( const auto& rRow : rows->map ) in getRecordKeysForListTable() local
647 << ( ( int ) rRow.first < 0 ? "-" : " ") in getRecordKeysForListTable()
648 << rRow.first << std::endl; in getRecordKeysForListTable()
653 for ( const auto& [rColumnId, rValueId] : rRow.second ) in getRecordKeysForListTable()
728 for (const auto& [rRowId, rRow] : rRowScope.map) in dump()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sw/source/filter/inc/
H A Dwrtswtbl.hxx136 inline bool operator==( const SwWriteTableRow& rRow ) const;
140 inline bool SwWriteTableRow::operator==( const SwWriteTableRow& rRow ) const in operator ==()
143 return (nPos >= rRow.nPos ? nPos - rRow.nPos : rRow.nPos - nPos ) <= in operator ==()
147 inline bool SwWriteTableRow::operator<( const SwWriteTableRow& rRow ) const in operator <()
151 return nPos < rRow.nPos - (mbUseLayoutHeights ? 0 : ROWFUZZY); in operator <()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/filter/inc/
H A Dwrtswtbl.hxx137 inline bool operator==( const SwWriteTableRow& rRow ) const;
141 inline bool SwWriteTableRow::operator==( const SwWriteTableRow& rRow ) const in operator ==()
144 return (nPos >= rRow.nPos ? nPos - rRow.nPos : rRow.nPos - nPos ) <= in operator ==()
148 inline bool SwWriteTableRow::operator<( const SwWriteTableRow& rRow ) const in operator <()
152 return nPos < rRow.nPos - (mbUseLayoutHeights ? 0 : ROWFUZZY); in operator <()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/source/filter/png/
H A DPngImageReader.cxx149 for (auto& rRow : aRows) in reader() local
150 rRow.resize(aRowSizeBytes, 0); in reader()
188 for (auto& rRow : aRows) in reader() local
189 rRow.resize(aRowSizeBytes, 0); in reader()
225 for (auto& rRow : aRows) in reader() local
226 rRow.resize(aRowSizeBytes, 0); in reader()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/xmloff/source/chart/
H A DSchXMLTableContext.cxx111 const ::std::vector< SchXMLCell > & rRow( rTable.aData[nRow] ); in lcl_fillRangeMapping() local
112 const size_t nTableColCount( rRow.size()); in lcl_fillRangeMapping()
115 const OUString aRangeId( rRow[nCol].aRangeId ); in lcl_fillRangeMapping()
293 for( auto& rRow : mrTable.aData ) in EndElement() local
299 const size_t nRowSize = rRow.size(); in EndElement()
311 aModifiedRow.reserve( rRow.size()); in EndElement()
312 … ::std::copy( rRow.begin(), rRow.end(), ::std::back_inserter( aModifiedRow )); in EndElement()
316 aModifiedRow[ nDestinationIndex ] = rRow[ nSourceIndex ]; in EndElement()
769 const ::std::vector< SchXMLCell >& rRow = *aRowIter; in applyTableToInternalDataProvider() local
770 if( !rRow.empty() ) in applyTableToInternalDataProvider()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/xmloff/source/chart/
H A DSchXMLTableContext.cxx113 const ::std::vector< SchXMLCell > & rRow( rTable.aData[nRow] ); in lcl_fillRangeMapping() local
114 const size_t nTableColCount( rRow.size()); in lcl_fillRangeMapping()
117 const OUString aRangeId( rRow[nCol].aRangeId ); in lcl_fillRangeMapping()
286 for( auto& rRow : mrTable.aData ) in endFastElement() local
292 const size_t nRowSize = rRow.size(); in endFastElement()
304 aModifiedRow.insert( aModifiedRow.end(), rRow.begin(), rRow.end() ); in endFastElement()
308 aModifiedRow[ nDestinationIndex ] = rRow[ nSourceIndex ]; in endFastElement()
314 ::std::copy( aModifiedRow.begin(), aModifiedRow.end(), rRow.begin()); in endFastElement()
734 const ::std::vector< SchXMLCell >& rRow = *aRowIter; in applyTableToInternalDataProvider() local
735 if( !rRow.empty() ) in applyTableToInternalDataProvider()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/cui/source/options/
H A Doptgenrl.cxx263 Row& rRow = *vRows.back(); in InitControls() local
270 rRow.nFirstField = vFields.size(); in InitControls()
283 rRow.nLastField = vFields.size(); in InitControls()
466 Row& rRow = *i; in SetData_Impl() local
469 for (unsigned iField = rRow.nFirstField; iField != rRow.nLastField; ++iField) in SetData_Impl()
480 rRow.xLabel->set_sensitive(bEnableLabel); in SetData_Impl()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/cui/source/options/
H A Doptgenrl.cxx262 Row& rRow = *vRows.back(); in InitControls() local
269 rRow.nFirstField = vFields.size(); in InitControls()
282 rRow.nLastField = vFields.size(); in InitControls()
465 Row& rRow = *i; in SetData_Impl() local
468 for (unsigned iField = rRow.nFirstField; iField != rRow.nLastField; ++iField) in SetData_Impl()
479 rRow.xLabel->set_sensitive(bEnableLabel); in SetData_Impl()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/core/tool/
H A Djumpmatrix.cxx104 void ScJumpMatrix::GetPos(SCSIZE& rCol, SCSIZE& rRow) const in GetPos()
107 rRow = nCurRow; in GetPos()
110 bool ScJumpMatrix::Next(SCSIZE& rCol, SCSIZE& rRow) in Next() argument
125 GetPos(rCol, rRow); in Next()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/core/tool/
H A Djumpmatrix.cxx106 void ScJumpMatrix::GetPos(SCSIZE& rCol, SCSIZE& rRow) const in GetPos()
109 rRow = nCurRow; in GetPos()
112 bool ScJumpMatrix::Next(SCSIZE& rCol, SCSIZE& rRow) in Next() argument
127 GetPos(rCol, rRow); in Next()
/dports/editors/libreoffice/libreoffice-7.2.6.2/oox/source/drawingml/chart/
H A Dchartconverter.cxx57 static OUString lclGenerateApiArray(const std::vector<Any>& rRow, sal_Int32 nStart, sal_Int32 nCoun… in lclGenerateApiArray() argument
59 OSL_ENSURE( !rRow.empty(), "ChartConverter::lclGenerateApiArray - missing matrix values" ); in lclGenerateApiArray()
62 for (auto aBeg = rRow.begin() + nStart, aIt = aBeg, aEnd = aBeg + nCount; aIt != aEnd; ++aIt) in lclGenerateApiArray()

123456789