Lines Matching refs:options

6348   PCRE_SPTR subject, int length, int start_offset, int options, int *offsets,  in pcre_exec()  argument
6353 PCRE_SPTR16 subject, int length, int start_offset, int options, int *offsets, in pcre_exec()
6358 PCRE_SPTR32 subject, int length, int start_offset, int options, int *offsets, in pcre_exec()
6410 if ((options & ~PUBLIC_EXEC_OPTIONS) != 0) return PCRE_ERROR_BADOPTION; in pcre_exec()
6433 utf = md->utf = (re->options & PCRE_UTF8) != 0; in pcre_exec()
6434 md->partial = ((options & PCRE_PARTIAL_HARD) != 0)? 2 : in pcre_exec()
6435 ((options & PCRE_PARTIAL_SOFT) != 0)? 1 : 0; in pcre_exec()
6441 if (utf && (options & PCRE_NO_UTF8_CHECK) == 0) in pcre_exec()
6481 && (options & ~PUBLIC_JIT_EXEC_OPTIONS) == 0) in pcre_exec()
6484 start_offset, options, offsets, offsetcount); in pcre_exec()
6545 anchored = ((re->options | options) & PCRE_ANCHORED) != 0; in pcre_exec()
6547 firstline = (re->options & PCRE_FIRSTLINE) != 0; in pcre_exec()
6559 md->endonly = (re->options & PCRE_DOLLAR_ENDONLY) != 0; in pcre_exec()
6560 md->use_ucp = (re->options & PCRE_UCP) != 0; in pcre_exec()
6561 md->jscript_compat = (re->options & PCRE_JAVASCRIPT_COMPAT) != 0; in pcre_exec()
6567 md->notbol = (options & PCRE_NOTBOL) != 0; in pcre_exec()
6568 md->noteol = (options & PCRE_NOTEOL) != 0; in pcre_exec()
6569 md->notempty = (options & PCRE_NOTEMPTY) != 0; in pcre_exec()
6570 md->notempty_atstart = (options & PCRE_NOTEMPTY_ATSTART) != 0; in pcre_exec()
6584 switch (options & (PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) in pcre_exec()
6587 if ((re->options & (PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) != 0) in pcre_exec()
6588 md->bsr_anycrlf = (re->options & PCRE_BSR_ANYCRLF) != 0; in pcre_exec()
6611 switch ((((options & PCRE_NEWLINE_BITS) == 0)? re->options : in pcre_exec()
6612 (pcre_uint32)options) & PCRE_NEWLINE_BITS) in pcre_exec()
6777 if (((options | re->options) & PCRE_NO_START_OPTIMIZE) == 0) in pcre_exec()
6850 if (((options | re->options) & PCRE_NO_START_OPTIMIZE) == 0 && !md->partial) in pcre_exec()