Home
last modified time | relevance | path

Searched refs:m_nCurPos (Results 1 – 6 of 6) sorted by relevance

/trunk/main/package/qa/storages/
H A DBorderedStream.java44 int m_nCurPos; field in BorderedStream
51 m_nCurPos = 0; in BorderedStream()
84 int nAvailable = m_nCurSize - m_nCurPos; in readBytes()
90 aData[0][nInd] = m_pBytes[m_nCurPos+nInd]; in readBytes()
93 m_nCurPos += nRead; in readBytes()
117 if ( m_nCurSize - m_nCurPos > nBytesToSkip ) in skipBytes()
118 m_nCurPos += nBytesToSkip; in skipBytes()
120 m_nCurPos = m_nCurSize; in skipBytes()
148 if ( aData.length > m_nMaxSize - m_nCurPos ) in writeBytes()
152 m_pBytes[m_nCurPos+nInd] = aData[nInd]; in writeBytes()
[all …]
/trunk/main/sfx2/source/appl/
H A Dhelpinterceptor.cxx52 m_nCurPos ( 0 ) in HelpInterceptor_Impl()
73 if ( nCount && m_nCurPos < ( nCount - 1 ) ) in addURL()
75 for ( sal_uIntPtr i = nCount - 1; i > m_nCurPos; i-- ) in addURL()
85 m_pHistory->GetObject(m_nCurPos)->aViewData = xController->getViewData(); in addURL()
91 m_nCurPos = m_pHistory->Count() - 1; in addURL()
126 m_nCurPos = m_pHistory->Count() - 1; in SetStartURL()
135 return m_pHistory && ( m_nCurPos > 0 ); in HasHistoryPred()
140 return m_pHistory && ( m_nCurPos < ( m_pHistory->Count() - 1 ) ); in HasHistorySucc()
256 if(m_pHistory->Count() > m_nCurPos) in dispatch()
264 m_pHistory->GetObject(m_nCurPos)->aViewData = xController->getViewData(); in dispatch()
[all …]
H A Dhelpinterceptor.hxx74 sal_uIntPtr m_nCurPos; member in HelpInterceptor_Impl
/trunk/main/package/source/package/zippackage/
H A Dwrapstreamforshare.cxx37 , m_nCurPos( 0 ) in WrapStreamForShare()
63 m_xSeekable->seek( m_nCurPos ); in readBytes()
66 m_nCurPos += nRead; in readBytes()
82 m_xSeekable->seek( m_nCurPos ); in readSomeBytes()
85 m_nCurPos += nRead; in readSomeBytes()
101 m_xSeekable->seek( m_nCurPos ); in skipBytes()
104 m_nCurPos = m_xSeekable->getPosition(); in skipBytes()
150 m_nCurPos = m_xSeekable->getPosition(); in seek()
162 return m_nCurPos; in getPosition()
H A Dwrapstreamforshare.hxx41 sal_Int64 m_nCurPos; member in WrapStreamForShare
/trunk/main/scripting/source/stringresource/
H A Dstringresource.cxx1508 sal_Int32 m_nCurPos; member in stringresource::BinaryInput
1519 { return m_nCurPos; } in getPosition()
1534 m_nCurPos = 0; in BinaryInput()
1541 if( m_nCurPos + nSize <= m_nSize ) in getInputStreamForSection()
1547 Sequence< sal_Int8 > aSection( m_pData + m_nCurPos, nSize ); in getInputStreamForSection()
1566 m_nCurPos = nPos; in seek()
1575 if( m_nCurPos + 2 <= m_nSize ) in readInt16()
1577 nRet = nRet + sal_Int16( sal_uInt8( m_pData[m_nCurPos++] ) ); in readInt16()
1578 nRet += 256 * sal_Int16( sal_uInt8( m_pData[m_nCurPos++] ) ); in readInt16()
1589 if( m_nCurPos + 4 <= m_nSize ) in readInt32()
[all …]