Lines Matching refs:String

40     String m_sFilename;
49 public IniFile(String _sFilename) in IniFile()
70 String aLine = ""; in loadLines()
115 boolean isRemark(String _sLine) in isRemark()
126 String getItem(int i) in getItem()
128 return (String)m_aList.get(i); in getItem()
131 String buildSectionName(String _sSectionName) in buildSectionName()
133 String sFindSection = "[" + _sSectionName + "]"; in buildSectionName()
136 String toLowerIfNeed(String _sName) in toLowerIfNeed()
142 int findSection(String _sSection) in findSection()
144 String sFindSection = toLowerIfNeed(buildSectionName(_sSection)); in findSection()
149 String sLine = toLowerIfNeed(getItem(i).trim()); in findSection()
168 int findKey(String _sSection, String _sKey) in findKey()
180 int findKeyFromKnownSection(int _nSectionIndex, String _sKey) in findKeyFromKnownSection()
185 String sLine = getItem(j).trim(); in findKeyFromKnownSection()
201 String sKey = toLowerIfNeed(sLine.substring(0, nEqual).trim()); in findKeyFromKnownSection()
212 int findLastKnownKeyIndex(int _nSectionIndex, String _sKey) in findLastKnownKeyIndex()
218 String sLine = getItem(j).trim(); in findLastKnownKeyIndex()
234 String sKey = toLowerIfNeed(sLine.substring(0, nEqual).trim()); in findLastKnownKeyIndex()
244 String getValue(int _nIndex) in getValue()
246 String sLine = getItem(_nIndex).trim(); in getValue()
254 String sKey = sLine.substring(0, nEqual).trim(); in getValue()
255 String sValue = sLine.substring(nEqual + 1).trim(); in getValue()
266 public String getValue(String _sSection, String _sKey) in getValue()
268 String sValue = ""; in getValue()
314 String sLine = getItem(i); in store()
344 public void insertValue(String _sSection, String _sKey, String _sValue) in insertValue()
350 String sFindSection = buildSectionName(_sSection); in insertValue()
353 String sKeyValuePair = _sKey + "=" + _sValue; in insertValue()
363 String sKeyValuePair = _sKey + "=" + _sValue; in insertValue()
371 String sKeyValuePair = _sKey + "=" + _sValue; in insertValue()