Lines Matching refs:i

68                 for (int i = 0; i < _aList.length; i++)  in insertFirstComment()
70 m_aList.add(_aList[i]); in insertFirstComment()
162 private String getItem(int i) in getItem() argument
164 return m_aList.get(i); in getItem()
194 int i; in findSection() local
195 for (i = 0; i < m_aList.size(); i++) in findSection()
197 String sLine = toLowerIfNeed(getItem(i).trim()); in findSection()
205 return i - 1; in findSection()
209 return i; in findSection()
222 int i = findSection(_sSection); in hasSection() local
223 if (i == -1) in hasSection()
233 int i = findSection(_sSection); in findKey() local
234 if (i == -1) in findKey()
239 return findKeyFromKnownSection(i, _sKey); in findKey()
280 int i = _nSectionIndex + 1; in findLastKnownKeyIndex() local
281 for (int j = i; j < m_aList.size(); j++) in findLastKnownKeyIndex()
306 return i; in findLastKnownKeyIndex()
425 for (int i = 0; i < m_aList.size(); i++) in store()
427 String sLine = getItem(i); in store()
474 int i = findSection(_sSection); in insertValue() local
475 if (i == -1) in insertValue()
490 int j = findKeyFromKnownSection(i, _sKey); in insertValue()
494 j = findLastKnownKeyIndex(i, _sKey); in insertValue()
567 int i = findSection(_sSectionToRemove); in removeSection() local
568 if (i == -1) in removeSection()
574 int j = findNextSection(i + 1); in removeSection()
581 for (int k = i; k < j; k++) in removeSection()
583 m_aList.remove(i); in removeSection()
635 private int findNextSection(int i) in findNextSection() argument
637 if (i >= 0) in findNextSection()
639 while (i < m_aList.size()) in findNextSection()
641 String sLine = m_aList.get(i); in findNextSection()
644 return i; in findNextSection()
646 i++; in findNextSection()