Lines Matching refs:_sSection
190 private int findSection(String _sSection) in findSection() argument
192 String sFindSection = toLowerIfNeed(buildSectionName(_sSection)); in findSection()
220 public boolean hasSection(String _sSection) in hasSection() argument
222 int i = findSection(_sSection); in hasSection()
231 private int findKey(String _sSection, String _sKey) in findKey() argument
233 int i = findSection(_sSection); in findKey()
333 public String getValue(String _sSection, String _sKey) in getValue() argument
336 int m_nCurrentPosition = findKey(_sSection, _sKey); in getValue()
367 public int getIntValue(String _sSection, String _sKey, int _nDefault) in getIntValue() argument
369 String sValue = getValue(_sSection, _sKey); in getIntValue()
452 public void insertValue(String _sSection, String _sKey, int _nValue) in insertValue() argument
454 insertValue(_sSection, _sKey, String.valueOf(_nValue)); in insertValue()
457 public void insertValue(String _sSection, String _sKey, long _nValue) in insertValue() argument
459 insertValue(_sSection, _sKey, String.valueOf(_nValue)); in insertValue()
472 public void insertValue(String _sSection, String _sKey, String _sValue) in insertValue() argument
474 int i = findSection(_sSection); in insertValue()
478 String sFindSection = buildSectionName(_sSection); in insertValue()