Home
last modified time | relevance | path

Searched refs:_strApplicationRule (Results 1 – 2 of 2) sorted by relevance

/external/parameter-framework/parameter/
DRuleParser.cpp48 _strApplicationRule(strApplicationRule), in CRuleParser()
153 assert(_uiCurrentPos <= _strApplicationRule.length()); in iterate()
156 if ((delimiter = _strApplicationRule.find_first_not_of(" ", _uiCurrentPos)) != string::npos) { in iterate()
163 …if ((_uiCurrentPos != _strApplicationRule.length()) && ((delimiter = _strApplicationRule.find_firs… in iterate()
165 switch(_strApplicationRule[delimiter]) { in iterate()
170 _strRuleType = _strApplicationRule.substr(_uiCurrentPos, delimiter - _uiCurrentPos); in iterate()
186 _strRuleType = _strApplicationRule.substr(_uiCurrentPos, delimiter - _uiCurrentPos); in iterate()
204 if (_uiCurrentPos != _strApplicationRule.length()) { in iterate()
246 if ((delimiter = _strApplicationRule.find_first_not_of(" ", _uiCurrentPos)) != string::npos) { in next()
252 if ((delimiter = _strApplicationRule.find_first_of("{} ,", _uiCurrentPos)) == string::npos) { in next()
[all …]
DRuleParser.h78 std::string _strApplicationRule; variable