Lines Matching refs:m_nRowPos

60 	  m_nRowPos(-1),  in MacabResultSet()
219 if (m_nRowPos != -1 && m_nRowPos != nRecords && m_xMetaData.is()) in getString()
222 macabfield *aField = m_aMacabRecords->getField(m_nRowPos,nFieldNumber); in getString()
278 if (m_nRowPos != -1 && m_nRowPos != nRecords && m_xMetaData.is()) in getInt()
281 macabfield *aField = m_aMacabRecords->getField(m_nRowPos,nFieldNumber); in getInt()
307 if (m_nRowPos != -1 && m_nRowPos != nRecords && m_xMetaData.is()) in getLong()
310 macabfield *aField = m_aMacabRecords->getField(m_nRowPos,nFieldNumber); in getLong()
336 if (m_nRowPos != -1 && m_nRowPos != nRecords && m_xMetaData.is()) in getFloat()
339 macabfield *aField = m_aMacabRecords->getField(m_nRowPos,nFieldNumber); in getFloat()
365 if (m_nRowPos != -1 && m_nRowPos != nRecords && m_xMetaData.is()) in getDouble()
368 macabfield *aField = m_aMacabRecords->getField(m_nRowPos,nFieldNumber); in getDouble()
426 if (m_nRowPos != -1 && m_nRowPos != nRecords && m_xMetaData.is()) in getTimestamp()
429 macabfield *aField = m_aMacabRecords->getField(m_nRowPos,nFieldNumber); in getTimestamp()
531 if (m_nRowPos == -1) in isBeforeFirst()
543 if (m_nRowPos == nRecords) in isAfterLast()
554 if (m_nRowPos == 0) in isFirst()
566 if (m_nRowPos == nRecords - 1) in isLast()
578 m_nRowPos = -1; in beforeFirst()
588 m_nRowPos = nRecords; in afterLast()
609 m_nRowPos = 0; in first()
622 m_nRowPos = nRecords - 1; in last()
631 return m_nRowPos; in getRow()
644 m_nRowPos = row; in absolute()
653 return absolute(m_nRowPos + row); in relative()
661 return absolute(m_nRowPos + 1); in next()
669 return absolute(m_nRowPos - 1); in previous()
886 if (m_nRowPos != -1 && m_nRowPos != nRecords) in getBookmark()
888 …macabfield *uidField = m_aMacabRecords->getField(m_nRowPos,::rtl::OUString::createFromAscii("UID")… in getBookmark()
910 …macabfield *uidField = m_aMacabRecords->getField(m_nRowPos,::rtl::OUString::createFromAscii("UID")… in moveToBookmark()
918 m_nRowPos = nRow; in moveToBookmark()
932 sal_Int32 nRowSave = m_nRowPos; in moveRelativeToBookmark()
938 m_nRowPos += rows; in moveRelativeToBookmark()
940 if (-1 < m_nRowPos && m_nRowPos < nRecords) in moveRelativeToBookmark()
944 m_nRowPos = nRowSave; in moveRelativeToBookmark()