Lines Matching refs:partial

161               -2 partial match; always given if at end subject
466 /* These macros pack up tests that are used for partial matching, and which
469 something has been matched). For hard partial matching, we then return
474 if (md->partial != 0 && eptr >= md->end_subject && \
478 if (md->partial > 1) RRETURN(PCRE_ERROR_PARTIAL); \
482 if (md->partial != 0 && eptr > md->start_used_ptr) \
485 if (md->partial > 1) RRETURN(PCRE_ERROR_PARTIAL); \
2113 if (md->partial != 0 &&
2120 if (md->partial > 1) RRETURN(PCRE_ERROR_PARTIAL);
2157 if (md->partial != 0 &&
2164 if (md->partial > 1) RRETURN(PCRE_ERROR_PARTIAL);
2184 partial matching. */
2296 CRLF newlines and partial matching. */
2300 if (md->partial != 0 &&
2307 if (md->partial > 1) RRETURN(PCRE_ERROR_PARTIAL);
2834 the soft partial matching case. */
2836 if (slength == -2 && md->partial != 0 &&
2840 if (md->partial > 1) RRETURN(PCRE_ERROR_PARTIAL);
4385 if (md->partial != 0 &&
4392 if (md->partial > 1) RRETURN(PCRE_ERROR_PARTIAL);
4638 if (md->partial != 0 &&
4645 if (md->partial > 1) RRETURN(PCRE_ERROR_PARTIAL);
5150 if (md->partial != 0 && /* Take care with CRLF partial */
5157 if (md->partial > 1) RRETURN(PCRE_ERROR_PARTIAL);
5275 if (md->partial != 0 && /* Take care with CRLF partial */
5282 if (md->partial > 1) RRETURN(PCRE_ERROR_PARTIAL);
5703 if (md->partial != 0 && /* Take care with CRLF partial */
5710 if (md->partial > 1) RRETURN(PCRE_ERROR_PARTIAL);
5945 if (md->partial != 0 && /* Take care with CRLF partial */
5952 if (md->partial > 1) RRETURN(PCRE_ERROR_PARTIAL);
6422 md->partial = ((options & PCRE_PARTIAL_HARD) != 0)? 2 :
6441 return (errorcode <= PCRE_UTF8_ERR5 && md->partial > 1)?
6444 return (errorcode <= PCRE_UTF16_ERR1 && md->partial > 1)?
6474 /* PCRE_ERROR_NULL means that the selected normal or partial matching
6640 if (md->partial && (re->flags & PCRE_NOPARTIAL) != 0)
6834 /* The following two optimizations are disabled for partial matching or if
6837 if (((options | re->options) & PCRE_NO_START_OPTIMIZE) == 0 && !md->partial)
6915 first starting point for which a partial match was found. */
7115 /* For anything other than nomatch or partial match, just return the code. */
7126 /* Handle partial matches - disable any mark data */