Lines Matching refs:_sSection
211 private int findSection(String _sSection) in findSection() argument
213 String sFindSection = toLowerIfNeed(buildSectionName(_sSection)); in findSection()
241 public boolean hasSection(String _sSection) in hasSection() argument
243 int i = findSection(_sSection); in hasSection()
252 private int findKey(String _sSection, String _sKey) in findKey() argument
254 int i = findSection(_sSection); in findKey()
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
499 int i = findSection(_sSection); in insertValue()
503 String sFindSection = buildSectionName(_sSection); in insertValue()