Home
last modified time | relevance | path

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

/trunk/main/svtools/source/contnr/
H A Dtreelist.cxx706 sal_uLong nActualPos = pActEntry->GetChildListPos(); in Next() local
717 if ( pActualList->Count() > ( nActualPos + 1 ) ) in Next()
719 pActEntry = (SvListEntry*)(pActualList->GetObject( nActualPos + 1 )); in Next()
732 nActualPos = pParent->GetChildListPos(); in Next()
733 if ( pActualList->Count() > ( nActualPos + 1 ) ) in Next()
735 pActEntry = (SvListEntry*)(pActualList->GetObject( nActualPos + 1 )); in Next()
768 sal_uLong nActualPos = pActEntry->GetChildListPos(); in Prev() local
770 if ( nActualPos > 0 ) in Prev()
772 pActEntry = (SvListEntry*)(pActualList->GetObject( nActualPos - 1 )); in Prev()
915 sal_uLong nActualPos = pActEntry->GetChildListPos(); in NextVisible() local
[all …]
/trunk/main/tools/source/stream/
H A Dstream.cxx1308 sal_Size nActualPos = Tell(); in SeekRel() local
1312 if ( SAL_MAX_SIZE - nActualPos > (sal_Size)nPos ) in SeekRel()
1313 nActualPos += nPos; in SeekRel()
1318 if ( nActualPos >= nAbsPos ) in SeekRel()
1319 nActualPos -= nAbsPos; in SeekRel()
1322 pBufPos = pRWBuf + nActualPos; in SeekRel()
1323 return Seek( nActualPos ); in SeekRel()