Home
last modified time | relevance | path

Searched refs:mnCurrIndex (Results 1 – 2 of 2) sorted by relevance

/AOO42X/main/slideshow/source/engine/shapes/
H A Dintrinsicanimationactivity.cxx99 ::std::size_t mnCurrIndex;
137 mnCurrIndex(0), in IntrinsicAnimationActivity()
166 mnCurrIndex = 0; in dispose()
210 pDrawShape->setIntrinsicAnimationFrame( mnCurrIndex ); in perform()
213 mpWakeupEvent->setNextTimeout( maTimeouts[mnCurrIndex] ); in perform()
215 mnLoopCount += (mnCurrIndex + 1) / nNumFrames; in perform()
216 nNewIndex = (mnCurrIndex + 1) % nNumFrames; in perform()
222 ::std::size_t nTrueIndex( mnCurrIndex < nNumFrames ? in perform()
223 mnCurrIndex : in perform()
224 2*nNumFrames - mnCurrIndex - 1 ); in perform()
[all …]
/AOO42X/main/vbahelper/source/vbahelper/
H A Dcollectionbase.cxx51 sal_Int32 mnCurrIndex; member in vbahelper::__anone67ad3570111::CollectionEnumeration
56 mnCurrIndex( 1 ) // collection expects one-based indexes in CollectionEnumeration()
62 return mnCurrIndex <= mxCollection->getCount(); in hasMoreElements()
68 return mxCollection->getItemByIndex( mnCurrIndex++ ); in nextElement()