Lines Matching refs:i

89                 for (int i = 0; i < _aList.length; i++)  in insertFirstComment()
91 m_aList.add(_aList[i]); in insertFirstComment()
183 private String getItem(int i) in getItem() argument
185 return m_aList.get(i); in getItem()
215 int i; in findSection() local
216 for (i = 0; i < m_aList.size(); i++) in findSection()
218 String sLine = toLowerIfNeed(getItem(i).trim()); in findSection()
226 return i - 1; in findSection()
230 return i; in findSection()
243 int i = findSection(_sSection); in hasSection() local
244 if (i == -1) in hasSection()
254 int i = findSection(_sSection); in findKey() local
255 if (i == -1) in findKey()
260 return findKeyFromKnownSection(i, _sKey); in findKey()
301 int i = _nSectionIndex + 1; in findLastKnownKeyIndex() local
302 for (int j = i; j < m_aList.size(); j++) in findLastKnownKeyIndex()
327 return i; in findLastKnownKeyIndex()
450 for (int i = 0; i < m_aList.size(); i++) in store()
452 String sLine = getItem(i); in store()
499 int i = findSection(_sSection); in insertValue() local
500 if (i == -1) in insertValue()
515 int j = findKeyFromKnownSection(i, _sKey); in insertValue()
519 j = findLastKnownKeyIndex(i, _sKey); in insertValue()
592 int i = findSection(_sSectionToRemove); in removeSection() local
593 if (i == -1) in removeSection()
599 int j = findNextSection(i + 1); in removeSection()
606 for (int k = i; k < j; k++) in removeSection()
608 m_aList.remove(i); in removeSection()
660 private int findNextSection(int i) in findNextSection() argument
662 if (i >= 0) in findNextSection()
664 while (i < m_aList.size()) in findNextSection()
666 String sLine = m_aList.get(i); in findNextSection()
669 return i; in findNextSection()
671 i++; in findNextSection()