Lines Matching refs:m_pResult

127 	: m_pResult( NULL )  in CCRS_Cache()
135 delete m_pResult; in ~CCRS_Cache()
141 if( m_pResult ) in clear()
143 delete m_pResult; in clear()
144 m_pResult = NULL; in clear()
153 m_pResult = new FetchResult( rResult ); in loadData()
159 if( !m_pResult ) in hasRow()
161 long nStart = m_pResult->StartIndex; in hasRow()
163 if( m_pResult->Orientation ) in hasRow()
164 nEnd += m_pResult->Rows.getLength() - 1; in hasRow()
166 nStart -= m_pResult->Rows.getLength() + 1; in hasRow()
174 if( !m_pResult ) in getMaxRow()
176 long nEnd = m_pResult->StartIndex; in getMaxRow()
177 if( m_pResult->Orientation ) in getMaxRow()
178 return nEnd += m_pResult->Rows.getLength() - 1; in getMaxRow()
186 if( !m_pResult ) in hasKnownLast()
189 if( ( m_pResult->FetchError & FetchError::ENDOFDATA ) in hasKnownLast()
190 && m_pResult->Orientation in hasKnownLast()
191 && m_pResult->Rows.getLength() ) in hasKnownLast()
200 if( !m_pResult ) in hasCausedException()
202 if( !( m_pResult->FetchError & FetchError::EXCEPTION ) ) in hasCausedException()
205 long nEnd = m_pResult->StartIndex; in hasCausedException()
206 if( m_pResult->Orientation ) in hasCausedException()
207 nEnd += m_pResult->Rows.getLength(); in hasCausedException()
219 if( !m_pResult ) in getRowAny()
224 long nDiff = nRow - m_pResult->StartIndex; in getRowAny()
228 return (m_pResult->Rows)[nDiff]; in getRowAny()
235 if( !m_pResult ) in remindMapped()
237 long nDiff = nRow - m_pResult->StartIndex; in remindMapped()
248 if( !m_pMappedReminder || !m_pResult ) in isRowMapped()
250 long nDiff = nRow - m_pResult->StartIndex; in isRowMapped()
270 sal_Int32 nCount = m_pResult->Rows.getLength(); in getMappedReminder()