Lines Matching refs:m_aList
43 private ArrayList<String> m_aList; field in IniFile
55 m_aList = loadLines(); in IniFile()
65 if (m_aList.size() == 0) in insertFirstComment()
70 m_aList.add(_aList[i]); in insertFirstComment()
131 return m_aList.size() > 1 ? true : false; in is()
164 return m_aList.get(i); in getItem()
195 for (i = 0; i < m_aList.size(); i++) in findSection()
246 for (int j = _nSectionIndex + 1; j < m_aList.size(); j++) in findKeyFromKnownSection()
281 for (int j = i; j < m_aList.size(); j++) in findLastKnownKeyIndex()
425 for (int i = 0; i < m_aList.size(); i++) in store()
481 m_aList.add(sFindSection); in insertValue()
485 m_aList.add(sKeyValuePair); in insertValue()
498 m_aList.add(j, sKeyValuePair); in insertValue()
507 m_aList.set(j, sKeyValuePair); in insertValue()
578 j = m_aList.size(); in removeSection()
583 m_aList.remove(i); in removeSection()
623 m_aEnumerationPos < m_aList.size()) in hasMoreElements()
639 while (i < m_aList.size()) in findNextSection()
641 String sLine = m_aList.get(i); in findNextSection()
661 String sSection = m_aList.get(nLineWithSection); in nextElement()
668 m_aEnumerationPos = m_aList.size(); in nextElement()