Lines Matching refs:size_t

42 const size_t SC_OL_NOLEVEL                  = static_cast< size_t >( -1 );
43 const size_t SC_OL_HEADERENTRY = static_cast< size_t >( -1 );
174 const ScOutlineEntry* ScOutlineWindow::GetOutlineEntry( size_t nLevel, size_t nEntry ) const in GetOutlineEntry()
242 size_t ScOutlineWindow::GetLevelCount() const in GetLevelCount()
245 size_t nLevelCount = pArray ? pArray->GetDepth() : 0; in GetLevelCount()
249 long ScOutlineWindow::GetLevelPos( size_t nLevel ) const in GetLevelPos()
256 size_t ScOutlineWindow::GetLevelFromPos( long nLevelPos ) const in GetLevelFromPos()
261 size_t nLevel = static_cast< size_t >( (nLevelPos - nStart) / SC_OL_BITMAPSIZE ); in GetLevelFromPos()
279 size_t nLevel, size_t nEntry, in GetEntryPos()
344 bool ScOutlineWindow::GetImagePos( size_t nLevel, size_t nEntry, Point& rPos ) const in GetImagePos()
362 bool ScOutlineWindow::IsButtonVisible( size_t nLevel, size_t nEntry ) const in IsButtonVisible()
380 bool ScOutlineWindow::ItemHit( const Point& rPos, size_t& rnLevel, size_t& rnEntry, bool& rbButton … in ItemHit()
388 size_t nLevel = GetLevelFromPos( mbHoriz ? rPos.Y() : rPos.X() ); in ItemHit()
412 size_t nEntry = pArray->GetCount( sal::static_int_cast<sal_uInt16>(nLevel) ); in ItemHit()
452 bool ScOutlineWindow::ButtonHit( const Point& rPos, size_t& rnLevel, size_t& rnEntry ) const in ButtonHit()
459 bool ScOutlineWindow::LineHit( const Point& rPos, size_t& rnLevel, size_t& rnEntry ) const in LineHit()
466 void ScOutlineWindow::DoFunction( size_t nLevel, size_t nEntry ) const in DoFunction()
484 void ScOutlineWindow::DoExpand( size_t nLevel, size_t nEntry ) const in DoExpand()
491 void ScOutlineWindow::DoCollapse( size_t nLevel, size_t nEntry ) const in DoCollapse()
552 void ScOutlineWindow::DrawBorderRel( size_t nLevel, size_t nEntry, bool bPressed ) in DrawBorderRel()
624 size_t nLevelCount = GetLevelCount(); in Paint()
631 for ( size_t nLevel = 0; nLevel < nLevelCount; ++nLevel ) in Paint()
646 for ( size_t nLevel = 0; nLevel + 1 < nLevelCount; ++nLevel ) in Paint()
651 size_t nEntryCount = pArray->GetCount( sal::static_int_cast<sal_uInt16>(nLevel) ); in Paint()
652 size_t nEntry; in Paint()
721 bool lcl_RotateValue( size_t& rnValue, size_t nMin, size_t nMax, bool bForward ) in lcl_RotateValue()
724 DBG_ASSERT( nMax < static_cast< size_t >( -1 ), "lcl_RotateValue - range overflow" ); in lcl_RotateValue()
761 size_t nEntryCount = pArray->GetCount( sal::static_int_cast<sal_uInt16>(mnFocusLevel) ); in ImplMoveFocusByEntry()
765 size_t nOldEntry = mnFocusEntry; in ImplMoveFocusByEntry()
803 size_t nLevelCount = GetLevelCount(); in ImplMoveFocusByLevel()
818 size_t nNewLevel = mnFocusLevel; in ImplMoveFocusByLevel()
819 size_t nNewEntry = 0; in ImplMoveFocusByLevel()
855 size_t nOldLevel = mnFocusLevel; in ImplMoveFocusByTabOrder()
856 size_t nOldEntry = mnFocusEntry; in ImplMoveFocusByTabOrder()
923 void ScOutlineWindow::StartMouseTracking( size_t nLevel, size_t nEntry ) in StartMouseTracking()
942 size_t nLevel, nEntry; in MouseMove()
959 size_t nLevel, nEntry; in MouseButtonUp()
968 size_t nLevel, nEntry; in MouseButtonDown()
1023 size_t nLevel = static_cast< size_t >( nCode - KEY_1 ); in KeyInput()