Lines Matching refs:delimiter
149 string::size_type delimiter; in iterate() local
154 if ((delimiter = _strApplicationRule.find_first_not_of(" ", _uiCurrentPos)) != string::npos) { in iterate()
157 _uiCurrentPos = delimiter; in iterate()
162 ((delimiter = _strApplicationRule.find_first_of(_acDelimiters[_eStatus], _uiCurrentPos)) != 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()