Lines Matching refs:_sKey
168 int findKey(String _sSection, String _sKey) in findKey() argument
176 return findKeyFromKnownSection(i, _sKey); in findKey()
180 int findKeyFromKnownSection(int _nSectionIndex, String _sKey) in findKeyFromKnownSection() argument
182 _sKey = toLowerIfNeed(_sKey); in findKeyFromKnownSection()
202 if (sKey.equals(_sKey)) in findKeyFromKnownSection()
212 int findLastKnownKeyIndex(int _nSectionIndex, String _sKey) in findLastKnownKeyIndex() argument
214 _sKey = toLowerIfNeed(_sKey); in findLastKnownKeyIndex()
235 if (sKey.equals(_sKey)) in findLastKnownKeyIndex()
266 public String getValue(String _sSection, String _sKey) in getValue() argument
269 int i = findKey(_sSection, _sKey); in getValue()
344 public void insertValue(String _sSection, String _sKey, String _sValue) in insertValue() argument
353 String sKeyValuePair = _sKey + "=" + _sValue; in insertValue()
358 int j = findKeyFromKnownSection(i, _sKey); in insertValue()
362 j = findLastKnownKeyIndex(i, _sKey); in insertValue()
363 String sKeyValuePair = _sKey + "=" + _sValue; in insertValue()
371 String sKeyValuePair = _sKey + "=" + _sValue; in insertValue()