Lines Matching refs:delimiter
151 string::size_type delimiter; in iterate() local
156 if ((delimiter = _strApplicationRule.find_first_not_of(" ", _uiCurrentPos)) != string::npos) { in iterate()
159 _uiCurrentPos = delimiter; 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()
193 _uiCurrentPos = delimiter + 1; in iterate()
243 string::size_type delimiter; in next() local
246 if ((delimiter = _strApplicationRule.find_first_not_of(" ", _uiCurrentPos)) != string::npos) { in next()
249 _uiCurrentPos = delimiter; in next()
252 if ((delimiter = _strApplicationRule.find_first_of("{} ,", _uiCurrentPos)) == string::npos) { in next()
259 strNext = _strApplicationRule.substr(_uiCurrentPos, delimiter - _uiCurrentPos); in next()
262 _uiCurrentPos = delimiter; in next()