Home
last modified time | relevance | path

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

123

/trunk/main/sc/source/core/data/
H A Dtable6.cxx252 SCROW nRow = rRow; in Search()
369 rRow = nRow; in Search()
402 SCROW nRow = rRow; in Replace()
421 rRow = nRow; in Replace()
463 SCsROW nRow = rRow; in SearchStyle()
528 rRow = (SCROW) nRow; in SearchStyle()
542 bRet = SearchStyle(rSearchItem, rCol, rRow, rMark); in ReplaceStyle()
550 ApplyStyle( rCol, rRow, *pReplaceStyle ); in ReplaceStyle()
625 SCCOL& rCol, SCROW& rRow, ScMarkData& rMark, in SearchAndReplace() argument
630 if ( ValidColRow(rCol, rRow) || in SearchAndReplace()
[all …]
H A Dcolumn2.cxx1136 if ( rRow <= nBottom ) in Next()
1144 rRow = 0; in Next()
1426 if (Search( rRow, nIndex )) in GetNextDataPos()
1431 rRow = pItems[nIndex].nRow; in GetNextDataPos()
1447 SCROW nLast = rRow; in FindDataAreaPos()
1481 if (nLast==rRow) in FindDataAreaPos()
1487 rRow = nLast; in FindDataAreaPos()
1497 rRow = pItems[nIndex].nRow; in FindDataAreaPos()
1499 rRow = MAXROW; in FindDataAreaPos()
1506 rRow = pItems[nIndex-1].nRow; in FindDataAreaPos()
[all …]
H A Dtable1.cxx907 sal_Bool bThere = aCol[nNewCol].HasVisibleDataAt(rRow); in FindAreaPos()
939 aCol[rCol].FindDataAreaPos(rRow,nMovY); in FindAreaPos()
983 SCsROW nRow = rRow; in GetNextPos()
1136 rRow = nRow; in GetNextPos()
1147 ++rRow; // naechste Zelle ist gesucht in GetNextMarkedCell()
1152 while ( rRow <= MAXROW ) in GetNextMarkedCell()
1154 SCROW nStart = (SCROW) rArray.GetNextMarked( (SCsROW) rRow, sal_False ); in GetNextMarkedCell()
1165 rRow = nCellRow; in GetNextMarkedCell()
1169 rRow = nEnd + 1; // naechsten markierten Bereich suchen in GetNextMarkedCell()
1172 rRow = MAXROW + 1; // Ende der Spalte in GetNextMarkedCell()
[all …]
H A Ddocumen3.cxx1070 rRow = MAXROW+1; in GetSearchAndReplaceStart()
1075 rRow = MAXROW; in GetSearchAndReplaceStart()
1080 rRow = MAXROW; in GetSearchAndReplaceStart()
1088 rRow = MAXROW; in GetSearchAndReplaceStart()
1093 rRow = MAXROW; in GetSearchAndReplaceStart()
1098 rRow = MAXROW+1; in GetSearchAndReplaceStart()
1114 rRow = 0; in GetSearchAndReplaceStart()
1119 rRow = 0; in GetSearchAndReplaceStart()
1127 rRow = 0; in GetSearchAndReplaceStart()
1132 rRow = 0; in GetSearchAndReplaceStart()
[all …]
H A Ddptabres.cxx1548 long& rRow, long nMeasure ) const in FillDataResults() argument
1553 long nStartRow = rRow; in FillDataResults()
1569 ++rRow; // -> fill child dimension one row below in FillDataResults()
1572 rRow += GetSize( nMeasure ); in FillDataResults()
1601 nMoveSubTotal = rRow - nStartRow; // force to first (title) row in FillDataResults()
1602 rRow = nStartRow; in FillDataResults()
1624 DBG_ASSERT( rRow < rSequence.getLength(), "bumm" ); in FillDataResults()
1625 uno::Sequence<sheet::DataResult>& rSubSeq = rSequence.getArray()[rRow]; in FillDataResults()
1629 rRow += 1; in FillDataResults()
1638 rRow += nExtraSpace; in FillDataResults()
[all …]
/trunk/main/sw/source/filter/rtf/
H A Drtftbl.cxx72 static void SetRowBorder(SfxItemSet& rSet, const Row &rRow) in SetRowBorder() argument
76 …aBox.SetDistance( static_cast< sal_uInt16 >(rRow.mbUseLeftRowPad ? rRow.mnLeftRowPad : rRow.mnBrdD… in SetRowBorder()
79 …aBox.SetDistance( static_cast< sal_uInt16 >(rRow.mbUseRightRowPad ? rRow.mnRightRowPad : rRow.mnBr… in SetRowBorder()
82 aBox.SetDistance( static_cast< sal_uInt16 >(rRow.mbUseTopRowPad ? rRow.mnTopRowPad : 0), in SetRowBorder()
85 aBox.SetDistance( static_cast< sal_uInt16 >(rRow.mbUseBottomRowPad ? rRow.mnBottomRowPad : 0), in SetRowBorder()
94 aBox.SetDistance(rRow.mbUseLeftRowPad ? rRow.mnLeftRowPad : rRow.mnBrdDist, in SetRowBorder()
97 aBox.SetDistance(rRow.mbUseRightRowPad ? rRow.mnRightRowPad : rRow.mnBrdDist, in SetRowBorder()
100 aBox.SetDistance(rRow.mbUseTopRowPad ? rRow.mnTopRowPad : 0, in SetRowBorder()
103 aBox.SetDistance(rRow.mbUseBottomRowPad ? rRow.mnBottomRowPad : 0, in SetRowBorder()
/trunk/main/sw/source/filter/inc/
H A Dfltglbls.hxx83 void NormalizeRow( sal_uInt16 &rRow ) { rRow -= nRowStart; } in NormalizeRow() argument
84 void Normalize( sal_uInt16 &rCol, sal_uInt16 &rRow ) in Normalize() argument
85 { NormalizeCol( rCol ); NormalizeRow( rRow ); } in Normalize()
97 inline void RowLimitter( sal_uInt16 &rRow );
112 inline void FilterGlobals::RowLimitter( sal_uInt16 &rRow ) in RowLimitter() argument
114 if( rRow < nRowStart ) in RowLimitter()
115 rRow = nRowStart; in RowLimitter()
116 else if( rRow > nRowEnd ) in RowLimitter()
117 rRow = nRowEnd; in RowLimitter()
H A Dwrtswtbl.hxx153 inline int operator==( const SwWriteTableRow& rRow ) const;
157 inline int SwWriteTableRow::operator==( const SwWriteTableRow& rRow ) const in operator ==()
160 return (nPos >= rRow.nPos ? nPos - rRow.nPos : rRow.nPos - nPos ) <= in operator ==()
164 inline int SwWriteTableRow::operator<( const SwWriteTableRow& rRow ) const in operator <()
168 return nPos < rRow.nPos - (mbUseLayoutHeights ? 0 : ROWFUZZY); in operator <()
/trunk/main/svtools/source/control/
H A Dfmtfield.cxx162 StateTransitions& rRow = m_aTransitions[ START ]; in NumberValidator() local
163 rRow.insert( Transition( '_', NUM_START ) ); in NumberValidator()
172 lcl_insertSignTransitions( rRow, DIGIT_PRE_COMMA ); in NumberValidator()
179 lcl_insertStartExponentTransition( rRow ); in NumberValidator()
190 lcl_insertStartExponentTransition( rRow ); in NumberValidator()
194 lcl_insertStopTransition( rRow ); in NumberValidator()
205 lcl_insertStartExponentTransition( rRow ); in NumberValidator()
208 lcl_insertStopTransition( rRow ); in NumberValidator()
216 lcl_insertSignTransitions( rRow, EXPONENT_DIGIT ); in NumberValidator()
222 lcl_insertStopTransition( rRow ); in NumberValidator()
[all …]
/trunk/main/connectivity/source/drivers/dbase/
H A DDTable.cxx1546 sal_Bool bInsertRow = UpdateBuffer( rRow, NULL, _xCols ); in InsertRow()
1578 *rRow.get()[0] = m_nFilePos; // BOOKmark setzen in InsertRow()
1606 if (!UpdateBuffer(rRow, pOrgRow,_xCols) || !WriteBuffer()) in UpdateRow()
1755 …if(pOrgRow.isValid() && (rRow.get()[nPos]->getValue().isNull() || rRow.get()[nPos] == (pOrgRow->ge… in UpdateBuffer()
1765 if (pIndex->Find(0,*rRow.get()[nPos])) in UpdateBuffer()
1856 if ( !rRow.get()[nPos]->isBound() ) in UpdateBuffer()
1872 pIndex->Insert(m_nFilePos,*rRow.get()[nPos]); in UpdateBuffer()
1876 if (rRow.get()[nPos]->getValue().isNull()) in UpdateBuffer()
1917 aDate = rRow.get()[nPos]->getValue(); in UpdateBuffer()
1967 const double n = rRow.get()[nPos]->getValue(); in UpdateBuffer()
[all …]
/trunk/main/autodoc/source/display/idl/
H A Dhfi_linklist.cxx74 rRow = pTable->AddRow(); in Add_Line() local
76 pCurLinkColumn = & (rRow.AddCell() in Add_Line()
79 pCurCommentColumn = & rRow.AddCell(); in Add_Line()
131 Html::TableRow & rRow = pTable->AddRow(); in Add_Line() local
133 pCurDeclaration = &( rRow.AddCell() in Add_Line()
136 pCurDescription = & rRow.AddCell(); in Add_Line()
H A Dhfi_module.cxx226 rRow = aTable.Add_Row(); in produce_ChildList() local
227 produce_Link(rRow, *it); in produce_ChildList()
228 produce_LinkDoc(rRow, *it); in produce_ChildList()
/trunk/main/ucb/source/cacher/
H A Dcachedcontentresultset.cxx287 Any& rRow = getRowAny( nRow ); in getAny() local
289 rRow >>= aValue; in getAny()
292 rRow <<= aValue; in getAny()
298 const Sequence< Any >& rRow = in getAny() local
304 return rRow[nColumnIndex-1]; in getAny()
315 Any& rRow = getRowAny( nRow ); in getContentIdentifierString() local
317 rRow >>= aValue; in getContentIdentifierString()
338 Any& rRow = getRowAny( nRow ); in getContentIdentifier() local
340 rRow >>= aValue; in getContentIdentifier()
361 Any& rRow = getRowAny( nRow ); in getContent() local
[all …]
/trunk/main/sw/source/core/layout/
H A Dtabfrm.cxx260 const SwRowFrm& rRow = (SwRowFrm&)rTmpRow; in lcl_InsertNewFollowFlowLine()
354 void lcl_ShrinkCellsAndAllContent( SwRowFrm& rRow ) in lcl_ShrinkCellsAndAllContent() argument
886 long lcl_GetMaximumLayoutRowSpan( const SwRowFrm& rRow ) in lcl_GetMaximumLayoutRowSpan() argument
995 bool lcl_FindSectionsInRow( const SwRowFrm& rRow ) in lcl_FindSectionsInRow() argument
998 SwCellFrm* pLower = (SwCellFrm*)rRow.Lower(); in lcl_FindSectionsInRow()
1001 if ( pLower->IsVertical() != rRow.IsVertical() ) in lcl_FindSectionsInRow()
1674 SwPageFrm* pPageFrm = rRow.FindPageFrm(); in lcl_RecalcRow()
1693 while( lcl_InnerCalcLayout( &rRow, nBottom ) ) in lcl_RecalcRow()
1715 bCheck = SwCntntFrm::CalcLowers( &rRow, rRow.GetUpper(), nBottom, true ); in lcl_RecalcRow()
4234 sal_uInt16 lcl_GetTopSpace( const SwRowFrm& rRow ) in lcl_GetTopSpace() argument
[all …]
/trunk/main/autodoc/source/display/toolkit/
H A Dhf_funcdecl.cxx161 rRow = CurOut()
165 pFront = &(rRow >> *new Html::TableCell << new Html::VAlignAttr(C_sValignTop));
166 pTypes = &(rRow >> *new Html::TableCell << new Html::VAlignAttr(C_sValignTop));
167 pNames = &(rRow >> *new Html::TableCell << new Html::VAlignAttr(C_sValignTop));
H A Dhf_title.cxx75 rRow = Add_Row(); in Produce_Title() local
76 rRow in Produce_Title()
80 rTable = rRow in Produce_Title()
/trunk/main/sc/inc/
H A Dtable.hxx346 void GetFirstDataPos(SCCOL& rCol, SCROW& rRow) const;
347 void GetLastDataPos(SCCOL& rCol, SCROW& rRow) const;
442 void FindAreaPos( SCCOL& rCol, SCROW& rRow, SCsCOL nMovX, SCsROW nMovY );
443 void GetNextPos( SCCOL& rCol, SCROW& rRow, SCsCOL nMovX, SCsROW nMovY,
515 SCCOL& rCol, SCROW& rRow, ScMarkData& rMark,
825 sal_Bool Search(const SvxSearchItem& rSearchItem, SCCOL& rCol, SCROW& rRow,
829 sal_Bool Replace(const SvxSearchItem& rSearchItem, SCCOL& rCol, SCROW& rRow,
834 sal_Bool SearchStyle(const SvxSearchItem& rSearchItem, SCCOL& rCol, SCROW& rRow,
836 sal_Bool ReplaceStyle(const SvxSearchItem& rSearchItem, SCCOL& rCol, SCROW& rRow,
868 sal_Bool GetNextSpellingCell(SCCOL& rCol, SCROW& rRow, sal_Bool bInSel,
[all …]
H A Dcolumn.hxx162 sal_Bool GetPrevDataPos(SCROW& rRow) const;
163 sal_Bool GetNextDataPos(SCROW& rRow) const;
164 void FindDataAreaPos(SCROW& rRow, long nMovY) const; // (ohne Broadcaster)
340 sal_Bool SearchStyleRange( SCsROW& rRow, SCsROW& rEndRow, const ScStyleSheet* pSearchStyle,
426 sal_Bool Next( SCROW& rRow, ScBaseCell*& rpCell );
H A Ddociter.hxx75 void GetPos( SCCOL& rCol, SCROW& rRow, SCTAB& rTab );
435 ScBaseCell* GetNext( SCCOL& rCol, SCROW& rRow );
436 sal_Bool ReturnNext( SCCOL& rCol, SCROW& rRow );
504 const ScPatternAttr* GetNext( SCCOL& rCol1, SCCOL& rCol2, SCROW& rRow );
/trunk/main/sc/source/core/inc/
H A Djumpmatrix.hxx161 void GetPos( SCSIZE& rCol, SCSIZE& rRow ) const in GetPos()
164 rRow = nCurRow; in GetPos()
166 bool Next( SCSIZE& rCol, SCSIZE& rRow ) in Next() argument
181 GetPos( rCol, rRow ); in Next()
/trunk/main/dbaccess/source/core/api/
H A DRowSet.cxx705 ORowSetValueVector::Vector& rRow = ((*m_aCurrentRow)->get()); in updateValue() local
706 ORowSetNotifier aNotify(this,rRow); in updateValue()
721 ORowSetValueVector::Vector& rRow = ((*m_aCurrentRow)->get()); in updateNull() local
722 ORowSetNotifier aNotify(this,rRow); in updateNull()
723 m_pCache->updateNull(columnIndex,rRow,aNotify.getChangedColumns()); in updateNull()
819 ORowSetValueVector::Vector& rRow = ((*m_aCurrentRow)->get()); in updateCharacterStream() local
820 ORowSetNotifier aNotify(this,rRow); in updateCharacterStream()
863 ORowSetValueVector::Vector& rRow = ((*m_aCurrentRow)->get()); in updateObject() local
864 ORowSetNotifier aNotify(this,rRow); in updateObject()
877 ORowSetValueVector::Vector& rRow = ((*m_aCurrentRow)->get()); in updateNumericObject() local
[all …]
/trunk/main/xmloff/source/chart/
H A DSchXMLTableContext.cxx201 const ::std::vector< SchXMLCell > & rRow( rTable.aData[nRow] ); in lcl_fillRangeMapping() local
202 const size_t nTableColCount( rRow.size()); in lcl_fillRangeMapping()
205 OUString aRangeId( rRow[nCol].aRangeId ); in lcl_fillRangeMapping()
916 const ::std::vector< SchXMLCell >& rRow = *aRowIter; in applyTableToInternalDataProvider() local
917 if( !rRow.empty() ) in applyTableToInternalDataProvider()
921 lcl_ApplyCellToComplexLabel( rRow.front(), aComplexRowDescriptions[nRow] ); in applyTableToInternalDataProvider()
925 …lcl_ApplyCellToData aApplyCellToData = ::std::for_each( rRow.begin() + nColOffset, rRow.end(), lcl… in applyTableToInternalDataProvider()
/trunk/main/dbaccess/source/ui/tabledesign/
H A DTableRow.cxx67 OTableRow::OTableRow( const OTableRow& rRow, long nPosition ) in OTableRow() argument
70 ,m_bReadOnly(rRow.IsReadOnly()) in OTableRow()
75 OFieldDescription* pSrcField = rRow.GetActFieldDescr(); in OTableRow()
/trunk/main/svx/source/form/
H A Dformcontroller.cxx809 iter2 != rRow.end(); in impl_setTextOnAllFilter_throw()
859 const FmFilterRow& rRow = *row; in getFastPropertyValue() local
861 if ( rRow.empty() ) in getFastPropertyValue()
865 … for ( FmFilterRow::const_iterator condition = rRow.begin(); condition != rRow.end(); ++condition ) in getFastPropertyValue()
1023 const FmFilterRow& rRow( *row ); in getPredicateExpressions() local
1033 if ( predicate != rRow.end() ) in getPredicateExpressions()
1531 FmFilterRow& rRow = m_aFilterRows[ m_nCurrentFilterPosition ]; in textChanged() local
1535 rRow[xText] = aText; in textChanged()
1539 FmFilterRow::iterator iter = rRow.find(xText); in textChanged()
1541 if (iter != rRow.end()) in textChanged()
[all …]
/trunk/main/autodoc/source/display/html/
H A Dnav_main.cxx246 TableRow & rRow = pTable->AddRow(); in Write2() local
247 rRow in Write2()
254 (*it)->Write2( rRow ); in Write2()

Completed in 223 milliseconds

123