Lines Matching refs:rToFill

511 void lcl_RefreshHidden( SwTabCols &rToFill, sal_uInt16 nPos )  in lcl_RefreshHidden()  argument
513 for ( sal_uInt16 i = 0; i < rToFill.Count(); ++i ) in lcl_RefreshHidden()
515 if ( Abs((long)(nPos - rToFill[i])) <= COLFUZZY ) in lcl_RefreshHidden()
517 rToFill.SetHidden( i, sal_False ); in lcl_RefreshHidden()
523 void lcl_SortedTabColInsert( SwTabCols &rToFill, const SwTableBox *pBox, in lcl_SortedTabColInsert() argument
528 const long nAct = rToFill.GetRight() - rToFill.GetLeft(); // +1 why? in lcl_SortedTabColInsert()
566 for ( sal_uInt16 j = 0; bInsert && (j < rToFill.Count()); ++j ) in lcl_SortedTabColInsert()
568 long nCmp = rToFill[j]; in lcl_SortedTabColInsert()
577 rToFill.Insert( nPos, bHidden, j ); in lcl_SortedTabColInsert()
581 rToFill.Insert( nPos, bHidden, rToFill.Count() ); in lcl_SortedTabColInsert()
583 ::lcl_RefreshHidden( rToFill, nPos ); in lcl_SortedTabColInsert()
594 for ( sal_uInt16 j = 0; !(bFoundPos && bFoundMax ) && j < rToFill.Count(); ++j ) in lcl_SortedTabColInsert()
596 SwTabColsEntry& rEntry = rToFill.GetEntry( j ); in lcl_SortedTabColInsert()
597 long nCmp = rToFill[j]; in lcl_SortedTabColInsert()
627 void lcl_ProcessBoxGet( const SwTableBox *pBox, SwTabCols &rToFill, in lcl_ProcessBoxGet() argument
636 ::lcl_ProcessBoxGet( rBoxes[j], rToFill, pTabFmt, bRefreshHidden); in lcl_ProcessBoxGet()
640 ::lcl_SortedTabColInsert( rToFill, pBox, pTabFmt, sal_False, bRefreshHidden ); in lcl_ProcessBoxGet()
643 void lcl_ProcessLineGet( const SwTableLine *pLine, SwTabCols &rToFill, in lcl_ProcessLineGet() argument
650 ::lcl_SortedTabColInsert( rToFill, pBox, pTabFmt, sal_True, sal_False ); in lcl_ProcessLineGet()
653 ::lcl_ProcessLineGet( pBox->GetTabLines()[j], rToFill, pTabFmt ); in lcl_ProcessLineGet()
663 void SwTable::GetTabCols( SwTabCols &rToFill, const SwTableBox *pStart, in GetTabCols() argument
672 for ( i = 0; i < rToFill.Count(); ++i ) in GetTabCols()
674 SwTabColsEntry& rEntry = rToFill.GetEntry( i ); in GetTabCols()
675 rEntry.nPos -= rToFill.GetLeft(); in GetTabCols()
676 rEntry.nMin -= rToFill.GetLeft(); in GetTabCols()
677 rEntry.nMax -= rToFill.GetLeft(); in GetTabCols()
681 for ( i = 0; i < rToFill.Count(); ++i ) in GetTabCols()
682 rToFill.SetHidden( i, sal_True ); in GetTabCols()
686 rToFill.Remove( 0, rToFill.Count() ); in GetTabCols()
714 ::lcl_ProcessBoxGet( rBoxes[i], rToFill, pTabFmt, bRefreshHidden ); in GetTabCols()
723 ::lcl_SortedTabColInsert( rToFill, rBoxes2[k], in GetTabCols()
734 ::lcl_ProcessLineGet( aLines[i], rToFill, pTabFmt ); in GetTabCols()
737 rToFill.Remove( 0, 1 ); in GetTabCols()
744 for ( i = 0; i < rToFill.Count(); ++i ) in GetTabCols()
746 SwTabColsEntry& rEntry = rToFill.GetEntry( i ); in GetTabCols()
747 rEntry.nPos += rToFill.GetLeft(); in GetTabCols()
748 rEntry.nMin += rToFill.GetLeft(); in GetTabCols()
749 rEntry.nMax += rToFill.GetLeft(); in GetTabCols()