Lines Matching defs:str
69 const std::string& str = esc.ref;
70 for (std::string::const_iterator i = str.begin(); i != str.end(); ++i)
99 return os.str();
107 /// @param str the string representation of the regex.
111 compile(const std::string& str)
114 if (regcomp(r.get(), str.c_str(), REG_EXTENDED))
123 /// @param str a string.
127 match(const regex_t_sptr& r, const std::string& str)
129 return !regexec(r.get(), str.c_str(), 0, NULL, 0);