Home | History | Annotate | Download | only in parameter

Lines Matching refs:delimiter

64         // Iterate till next relevant delimiter
149 string::size_type delimiter;
154 if ((delimiter = _strApplicationRule.find_first_not_of(" ", _uiCurrentPos)) != string::npos) {
157 _uiCurrentPos = delimiter;
162 ((delimiter = _strApplicationRule.find_first_of(_acDelimiters[_eStatus], _uiCurrentPos)) !=
165 switch (_strApplicationRule[delimiter]) {
170 _strRuleType = _strApplicationRule.substr(_uiCurrentPos, delimiter - _uiCurrentPos);
186 _strRuleType = _strApplicationRule.substr(_uiCurrentPos, delimiter - _uiCurrentPos);
193 _uiCurrentPos = delimiter + 1;
243 string::size_type delimiter;
246 if ((delimiter = _strApplicationRule.find_first_not_of(" ", _uiCurrentPos)) != string::npos) {
249 _uiCurrentPos = delimiter;
252 if ((delimiter = _strApplicationRule.find_first_of("{} ,", _uiCurrentPos)) == string::npos) {
259 strNext = _strApplicationRule.substr(_uiCurrentPos, delimiter - _uiCurrentPos);
262 _uiCurrentPos = delimiter;