Home | History | Annotate | Download | only in text

Lines Matching defs:RegularExpression

29 #include "RegularExpression.h"
37 class RegularExpression::Private : public RefCounted<RegularExpression::Private> {
61 LOG_ERROR("RegularExpression: YARR compile failed with '%s'", m_constructionError);
74 RegularExpression::RegularExpression(const String& pattern, TextCaseSensitivity caseSensitivity)
79 RegularExpression::RegularExpression(const RegularExpression& re)
84 RegularExpression::~RegularExpression()
88 RegularExpression& RegularExpression::operator=(const RegularExpression& re)
94 int RegularExpression::match(const String& str, int startFrom, int* matchLength) const
128 int RegularExpression::searchRev(const String& str) const
153 int RegularExpression::matchedLength() const
158 void replace(String& string, const RegularExpression& target, const String& replacement)