Lines Matching refs:partial

181 5.  Fixed several bugs concerned with partial matching of items that consist
188 (b) \R did not give a hard partial match if \r was found at the end of the
191 (c) \X did not give a hard partial match after matching one or more
195 a partial match for the string "\r".
198 a partial match for a CR character at the end of the subject string.
458 change is that for partial matches, the last encountered mark name is
850 partial match of an empty string instead of no match. This was specific to
854 complete match instead of a partial match. This bug was dependent on both
916 4. A partial match never returns an empty string (because you can always
920 data for a partial match starts at this character. This means that, for
921 example, /(?<=abc)def/ gives a partial match for the subject "abc"
927 has an implication that the given string is incomplete (because a partial
929 give a partial match in this situation. [Aside: previously, the one case
930 /t\b/ matched against "cat" with PCRE_PARTIAL_HARD set did return a partial
1274 causing partial matching to fail when the end of the subject matched \W
1360 9. The restrictions on what a pattern can contain when partial matching is
1369 PCRE_PARTIAL_HARD, which causes a partial match to supersede a full match,
1372 11. Partial matching with pcre_exec() is now more intuitive. A partial match
1376 string "Z", which now yields "no match" instead of "partial match". In the
1380 12. Restarting a match using pcre_dfa_exec() after a partial match did not work
1382 earlier partial match, unless partial matching was again requested. For
1387 13. The string returned by pcre_dfa_exec() after a partial match has been
2891 1. When using the partial match feature with pcre_dfa_exec(), it was not
2892 anchoring the second and subsequent partial matches at the new starting
3252 including restarting after a partial match.
3465 19. Added support for partial matching via the PCRE_PARTIAL option for