Lines Matching refs:sLine
218 String sLine = toLowerIfNeed(getItem(i).trim()); in findSection() local
219 if (isRemark(sLine)) in findSection()
228 if (sLine.startsWith(sFindSection)) in findSection()
269 String sLine = getItem(j).trim(); in findKeyFromKnownSection() local
271 if (isRemark(sLine)) in findKeyFromKnownSection()
275 if (sLine.startsWith("[") /* && sLine.endsWith("]") */) in findKeyFromKnownSection()
284 int nEqual = sLine.indexOf("="); in findKeyFromKnownSection()
287 String sKey = toLowerIfNeed(sLine.substring(0, nEqual).trim()); in findKeyFromKnownSection()
304 String sLine = getItem(j).trim(); in findLastKnownKeyIndex() local
306 if (isRemark(sLine)) in findLastKnownKeyIndex()
311 if (sLine.startsWith("[") /* && sLine.endsWith("]") */) in findLastKnownKeyIndex()
317 int nEqual = sLine.indexOf("="); in findLastKnownKeyIndex()
320 String sKey = toLowerIfNeed(sLine.substring(0, nEqual).trim()); in findLastKnownKeyIndex()
332 String sLine = getItem(_nIndex).trim(); in getValue() local
333 if (isRemark(sLine)) in getValue()
337 int nEqual = sLine.indexOf("="); in getValue()
340 String sKey = sLine.substring(0, nEqual).trim(); in getValue()
341 String sValue = sLine.substring(nEqual + 1).trim(); in getValue()
452 String sLine = getItem(i); in store() local
453 if (sLine.startsWith("[")) in store()
458 aWriter.writeBytes(sLine); in store()
666 String sLine = m_aList.get(i); in findNextSection() local
667 if (sLine.startsWith("[")) in findNextSection()