Lines Matching refs:m_nCurPos
1508 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()
1594 nRet += sal_uInt8( m_pData[m_nCurPos++] ) * nFactor; in readInt32()
1607 if( m_nCurPos + 2 <= m_nSize ) in readUnicodeChar()
1609 nRet = nRet + sal_uInt8( m_pData[m_nCurPos++] ); in readUnicodeChar()
1610 nRet += 256 * sal_uInt8( m_pData[m_nCurPos++] ); in readUnicodeChar()