Lines Matching refs:_sKey

161     public boolean hasValue(String _sSectionName, String _sKey)  in hasValue()  argument
163 int n = findKey(_sSectionName, _sKey); in hasValue()
252 private int findKey(String _sSection, String _sKey) in findKey() argument
260 return findKeyFromKnownSection(i, _sKey); in findKey()
264 private int findKeyFromKnownSection(int _nSectionIndex, String _sKey) in findKeyFromKnownSection() argument
266 _sKey = toLowerIfNeed(_sKey); in findKeyFromKnownSection()
288 if (sKey.equals(_sKey)) in findKeyFromKnownSection()
298 private int findLastKnownKeyIndex(int _nSectionIndex, String _sKey) in findLastKnownKeyIndex() argument
300 _sKey = toLowerIfNeed(_sKey); in findLastKnownKeyIndex()
321 if (sKey.equals(_sKey)) in findLastKnownKeyIndex()
354 public String getValue(String _sSection, String _sKey) in getValue() argument
357 int m_nCurrentPosition = findKey(_sSection, _sKey); in getValue()
388 public int getIntValue(String _sSection, String _sKey, int _nDefault) in getIntValue() argument
390 String sValue = getValue(_sSection, _sKey); in getIntValue()
477 public void insertValue(String _sSection, String _sKey, int _nValue) in insertValue() argument
479 insertValue(_sSection, _sKey, String.valueOf(_nValue)); in insertValue()
482 public void insertValue(String _sSection, String _sKey, long _nValue) in insertValue() argument
484 insertValue(_sSection, _sKey, String.valueOf(_nValue)); in insertValue()
497 public void insertValue(String _sSection, String _sKey, String _sValue) in insertValue() argument
507 if (_sKey.length() > 0) in insertValue()
509 String sKeyValuePair = _sKey + "=" + _sValue; in insertValue()
515 int j = findKeyFromKnownSection(i, _sKey); in insertValue()
519 j = findLastKnownKeyIndex(i, _sKey); in insertValue()
520 if (_sKey.length() > 0) in insertValue()
522 String sKeyValuePair = _sKey + "=" + _sValue; in insertValue()
531 String sKeyValuePair = _sKey + "=" + _sValue; in insertValue()