Lines Matching refs:m_aErrDescList
2434 for (sal_uInt16 i = 0; i < m_aErrDescList.Count(); i++) in Parse()
2435 delete m_aErrDescList.Remove(i); in Parse()
2437 m_aErrDescList.Clear(); in Parse()
2479 m_aErrDescList.Insert(pErrDesc); in AddError()
2481 return (sal_uInt16) m_aErrDescList.GetPos(pErrDesc); in AddError()
2487 if (m_aErrDescList.Count()) in NextError()
2488 if (m_nCurError > 0) return m_aErrDescList.Seek(--m_nCurError); in NextError()
2492 return m_aErrDescList.Seek(m_nCurError); in NextError()
2500 if (m_aErrDescList.Count()) in PrevError()
2501 … if (m_nCurError < (int) (m_aErrDescList.Count() - 1)) return m_aErrDescList.Seek(++m_nCurError); in PrevError()
2504 m_nCurError = (int) (m_aErrDescList.Count() - 1); in PrevError()
2505 return m_aErrDescList.Seek(m_nCurError); in PrevError()
2513 return (/*i >= 0 &&*/ i < m_aErrDescList.Count()) in GetError()
2514 ? m_aErrDescList.Seek(i) in GetError()
2515 : m_aErrDescList.Seek(m_nCurError); in GetError()