Lines Matching full:complete

25 complete match, though the details differ between the two types of matching
53 complete the match, or the addition of more characters might change what is
57 definitely needed to complete a match. In this case both hard and soft matching
60 Example 2: if the pattern is /ab+/ and the subject is "ab", a complete match
63 PCRE2_PARTIAL_SOFT returns the complete match.
97 A complete match has been found, starting and ending within this subject.
103 Adding more characters may result in a complete match that uses one or more
113 If it is matched against "456abc123xyz" the result is a complete match, and the
139 partial match is found, without continuing to search for possible complete
141 a later complete match. For this reason, the assumption is made that the end of
147 complete match can be found, PCRE2_ERROR_PARTIAL is returned instead of
148 PCRE2_ERROR_NOMATCH. This option is "soft" because it prefers a complete match
150 the subject string is potentially complete; \ez, \eZ, and $ match at the end of
161 PCRE2_PARTIAL_SOFT, it yields a complete match for "dog". However, if
167 In this case the result is always a complete match because that is found first,
168 and matching never continues after finding a complete match. It might be easier
206 PCRE2_PARTIAL_HARD, however, the subject is assumed not to be complete, so
295 have been no complete matches. Otherwise, the complete matches are returned.
297 complete matches. The portion of the string that was matched when the longest
307 Whereas the standard function stops as soon as it finds the complete match for
332 Notice that when the match is complete, only the last part is shown; PCRE2 does
350 doing it is to retain some or all of the segment and try a new complete match,