Lines Matching refs:string
36 using std::string;
48 CRuleParser::CRuleParser(const string &strApplicationRule,
61 bool CRuleParser::parse(CCompoundRule *pParentRule, string &strError)
147 bool CRuleParser::iterate(string &strError)
149 string::size_type delimiter;
154 if ((delimiter = _strApplicationRule.find_first_not_of(" ", _uiCurrentPos)) != string::npos) {
163 string::npos)) {
217 const string &CRuleParser::getType() const
241 bool CRuleParser::next(string &strNext, string &strError)
243 string::size_type delimiter;
246 if ((delimiter = _strApplicationRule.find_first_not_of(" ", _uiCurrentPos)) != string::npos) {
252 if ((delimiter = _strApplicationRule.find_first_of("{} ,", _uiCurrentPos)) == string::npos) {