Home
last modified time | relevance | path

Searched refs:RegexMatch (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/
H A Dpackage.d38 $(LREF RegexMatch)
700 @trusted public struct RegexMatch(R, alias Engine = ThompsonMatcher) in foreach() struct
841 return RegexMatch!(R, Engine)(input, re); in matchMany()
937 Returns: a $(D RegexMatch) object holding engine state after first match.
944 return RegexMatch!(Unqual!(typeof(input)),ThompsonMatcher)(input, re);
952 return RegexMatch!(Unqual!(typeof(input)),ThompsonMatcher)(input, regex(re));
959 return RegexMatch!(Unqual!(typeof(input)),BacktrackingMatcher!true)(input, re);
1028 $(LREF RegexMatch) object that represents matcher state
1117 Returns: a $(D RegexMatch) object holding engine
1125 return RegexMatch!(Unqual!(typeof(input)), BacktrackingMatcher!false)(input, re);
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/
H A Dpackage.d39 $(LREF RegexMatch)