Home
last modified time | relevance | path

Searched refs:m_aSet (Results 1 – 3 of 3) sorted by relevance

/AOO42X/main/dbaccess/source/core/api/
H A DStaticSet.cxx121 if ( !m_bEnd && (!m_nMaxRows || sal_Int32(m_aSet.size()) < m_nMaxRows) ) in fetchRow()
125m_aSet.push_back(new connectivity::ORowVector< connectivity::ORowSetValue >(m_xSetMetaData->getCol… in fetchRow()
126 m_aSetIter = m_aSet.end() - 1; in fetchRow()
144 m_aSet.push_back(pRow); in fillAllRows()
145 m_aSetIter = m_aSet.end() - 1; in fillAllRows()
164 if(m_aSetIter == m_aSet.end() && !fetchRow()) in next()
165 m_aSetIter = m_aSet.end(); in next()
175 return m_aSetIter == m_aSet.begin(); in isBeforeFirst()
181 return m_aSetIter == m_aSet.end() && m_bEnd; in isAfterLast()
187 return m_aSetIter == m_aSet.begin()+1; in isFirst()
[all …]
H A DStaticSet.hxx37 ORowSetMatrix m_aSet; member in dbaccess::OStaticSet
44 , m_aSetIter(m_aSet.end()) in OStaticSet()
47 m_aSet.push_back(NULL); // this is the beforefirst record in OStaticSet()
/AOO42X/main/connectivity/source/commontools/
H A Ddbtools.cxx1755 ::std::bit_vector m_aSet;
1758 …onst ::std::bit_vector& _aSet,const Reference<XIndexAccess>& _xSource) : m_aSet(_aSet),m_xSource(_… in OParameterWrapper()
1767 if ( m_aSet.empty() ) in hasElements()
1769 return (::std::find(m_aSet.begin(),m_aSet.end(),false) != m_aSet.end()); in hasElements()
1774 if ( m_aSet.empty() ) in getCount()
1776 return std_bitset_count(m_aSet.begin(),m_aSet.end(),false); in getCount()
1780 if ( m_aSet.empty() ) in getByIndex()
1782 if ( m_aSet.size() < (size_t)Index ) in getByIndex()
1785 ::std::bit_vector::iterator aIter = m_aSet.begin(); in getByIndex()
1786 ::std::bit_vector::iterator aEnd = m_aSet.end(); in getByIndex()