Lines Matching refs:sal_Int32

145 sal_Int32 EquidistantTickFactory::getTickDepth() const  in getTickDepth()
147 return static_cast<sal_Int32>(m_rIncrement.SubIncrements.size()) + 1; in getTickDepth()
150 void EquidistantTickFactory::addSubTicks( sal_Int32 nDepth, uno::Sequence< uno::Sequence< double > … in addSubTicks()
161 sal_Int32 nMaxSubTickCount = this->getMaxTickCount( nDepth ); in addSubTicks()
166 sal_Int32 nRealSubTickCount = 0; in addSubTicks()
167 sal_Int32 nIntervalCount = m_rIncrement.SubIncrements[nDepth-1].IntervalCount; in addSubTicks()
172 for( sal_Int32 nPartTick = 1; nPartTick<nIntervalCount; nPartTick++ ) in addSubTicks()
186 if(static_cast<sal_Int32>(m_rIncrement.SubIncrements.size())>nDepth) in addSubTicks()
191 sal_Int32 EquidistantTickFactory::getMaxTickCount( sal_Int32 nDepth ) const in getMaxTickCount()
213 sal_Int32 nIntervalCount = static_cast<sal_Int32>( fSub / m_rIncrement.Distance ); in getMaxTickCount()
216 for(sal_Int32 nN=0; nN<nDepth-1; nN++) in getMaxTickCount()
222 sal_Int32 nTickCount = nIntervalCount; in getMaxTickCount()
229 double* EquidistantTickFactory::getMajorTick( sal_Int32 nTick ) const in getMajorTick()
251 double* EquidistantTickFactory::getMinorTick( sal_Int32 nTick, sal_Int32 nDepth in getMinorTick()
259 if(nDepth>static_cast<sal_Int32>(m_rIncrement.SubIncrements.size()) || nDepth<=0) in getMinorTick()
324 sal_Int32 nDepthCount = this->getTickDepth(); in getAllTicks()
325 sal_Int32 nMaxMajorTickCount = this->getMaxTickCount( 0 ); in getAllTicks()
330 sal_Int32 nRealMajorTickCount = 0; in getAllTicks()
332 for( sal_Int32 nMajorTick=0; nMajorTick<nMaxMajorTickCount; nMajorTick++ ) in getAllTicks()
350 sal_Int32 nDepth = 0; in getAllTicks()
351 sal_Int32 nTick = 0; in getAllTicks()
354 sal_Int32 nInvisibleAtLowerBorder = 0; in getAllTicks()
355 sal_Int32 nInvisibleAtUpperBorder = 0; in getAllTicks()
357 sal_Int32 nCheckCount = 1; in getAllTicks()
358 for(sal_Int32 nN=0; nN<nDepth; nN++) in getAllTicks()
364 sal_Int32 nCount = rTicks.getLength(); in getAllTicks()
384 sal_Int32 nNewCount = nCount-nInvisibleAtUpperBorder-nInvisibleAtLowerBorder; in getAllTicks()
399 sal_Int32 nCount = aAllTicks[nDepth].getLength(); in getAllTicks()
404 for(sal_Int32 nN = 0; nN<nCount; nN++) in getAllTicks()
426 , sal_Int32 nMinDepth, sal_Int32 nMaxDepth ) in EquidistantTickIter()
440 , sal_Int32 nMinDepth, sal_Int32 nMaxDepth ) in EquidistantTickIter()
452 void EquidistantTickIter::initIter( sal_Int32 /*nMinDepth*/, sal_Int32 nMaxDepth ) in initIter() argument
458 sal_Int32 nDepth = 0; in initIter()
465 m_pnPositions = new sal_Int32[m_nMaxDepth+1]; in initIter()
467 m_pnPreParentCount = new sal_Int32[m_nMaxDepth+1]; in initIter()
476 sal_Int32 nPreParentCount = 0; in initIter()
477 sal_Int32 nCount = getTickCount(nDepth); in initIter()
478 for(sal_Int32 nN = 0; nN<nCount; nN++) in initIter()
502 sal_Int32 EquidistantTickIter::getStartDepth() const in getStartDepth()
506 sal_Int32 nReturnDepth=0; in getStartDepth()
508 for(sal_Int32 nDepth = 0; nDepth<=m_nMaxDepth ;nDepth++ ) in getStartDepth()
510 sal_Int32 nCount = getTickCount(nDepth); in getStartDepth()
540 sal_Int32 EquidistantTickIter::getIntervalCount( sal_Int32 nDepth ) in getIntervalCount()
542 if(nDepth>static_cast<sal_Int32>(m_rIncrement.SubIncrements.size()) || nDepth<0) in getIntervalCount()
555 sal_Int32 nIntervalCount = getIntervalCount( m_nCurrentDepth ); in isAtLastPartTick()
560 sal_Int32 nPos = m_pnPositions[m_nCurrentDepth]+1; in isAtLastPartTick()
577 for(sal_Int32 nDepth = 0; nDepth<=m_nMaxDepth ;nDepth++ ) in gotoFirst()
617 bool EquidistantTickIter::gotoIndex( sal_Int32 nTickIndex ) in gotoIndex()
635 sal_Int32 EquidistantTickIter::getCurrentIndex() const in getCurrentIndex()
639 sal_Int32 EquidistantTickIter::getMaxIndex() const in getMaxIndex()
657 static_cast< sal_Int32 >( in nextInfo()