Home | History | Annotate | Download | only in yarr

Lines Matching refs:pattern

50     friend const char* parse(FriendDelegate& delegate, const UString& pattern, unsigned backReferenceLimit);
230 Parser(Delegate& delegate, const UString& pattern, unsigned backReferenceLimit)
234 , m_data(pattern.characters())
235 , m_size(pattern.length())
558 * This method loops over the input pattern reporting tokens to the delegate.
559 * The method returns when a parse error is detected, or the end of the pattern
693 REGEXP_ERROR_PREFIX "\\ at end of pattern"
808 * The parse method is passed a pattern to be parsed and a delegate upon which
865 const char* parse(Delegate& delegate, const UString& pattern, unsigned backReferenceLimit = quantifyInfinite)
867 return Parser<Delegate>(delegate, pattern, backReferenceLimit).parse();