Lines Matching refs:partial

838     in partial multi-segment matching, at least one character from the old
1117 5. Fixed several bugs concerned with partial matching of items that consist
1124 (b) \R did not give a hard partial match if \r was found at the end of the
1127 (c) \X did not give a hard partial match after matching one or more
1131 a partial match for the string "\r".
1134 a partial match for a CR character at the end of the subject string.
1394 change is that for partial matches, the last encountered mark name is
1786 partial match of an empty string instead of no match. This was specific to
1790 complete match instead of a partial match. This bug was dependent on both
1852 4. A partial match never returns an empty string (because you can always
1856 data for a partial match starts at this character. This means that, for
1857 example, /(?<=abc)def/ gives a partial match for the subject "abc"
1863 has an implication that the given string is incomplete (because a partial
1865 give a partial match in this situation. [Aside: previously, the one case
1866 /t\b/ matched against "cat" with PCRE_PARTIAL_HARD set did return a partial
2210 causing partial matching to fail when the end of the subject matched \W
2296 9. The restrictions on what a pattern can contain when partial matching is
2305 PCRE_PARTIAL_HARD, which causes a partial match to supersede a full match,
2308 11. Partial matching with pcre_exec() is now more intuitive. A partial match
2312 string "Z", which now yields "no match" instead of "partial match". In the
2316 12. Restarting a match using pcre_dfa_exec() after a partial match did not work
2318 earlier partial match, unless partial matching was again requested. For
2323 13. The string returned by pcre_dfa_exec() after a partial match has been
3828 1. When using the partial match feature with pcre_dfa_exec(), it was not
3829 anchoring the second and subsequent partial matches at the new starting
4189 including restarting after a partial match.
4402 19. Added support for partial matching via the PCRE_PARTIAL option for