Searched refs:PCRE_NEWLINE_BITS (Results 1 – 7 of 7) sorted by relevance
135 PCRE_NEWLINE_BITS = PCRE_NEWLINE_CR or PCRE_NEWLINE_LF or PCRE_NEWLINE_ANY;149 + PCRE_DUPNAMES + PCRE_FIRSTLINE + PCRE_NEWLINE_BITS159 + PCRE_NEWLINE_BITS170 PCRE_NEWLINE_BITS
1111 #define PCRE_NEWLINE_BITS (PCRE_NEWLINE_CR|PCRE_NEWLINE_LF|PCRE_NEWLINE_ANY| \ macro1119 PCRE_DUPNAMES|PCRE_NEWLINE_BITS|PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE| \1124 PCRE_NO_UTF8_CHECK|PCRE_PARTIAL_HARD|PCRE_PARTIAL_SOFT|PCRE_NEWLINE_BITS| \1130 PCRE_DFA_RESTART|PCRE_NEWLINE_BITS|PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE| \
4256 switch (get_options & PCRE_NEWLINE_BITS) in main()5511 if ((obits & PCRE_NEWLINE_BITS) == 0) in main()5523 if (((obits & PCRE_NEWLINE_BITS) == PCRE_NEWLINE_ANY || in main()5524 (obits & PCRE_NEWLINE_BITS) == PCRE_NEWLINE_CRLF || in main()5525 (obits & PCRE_NEWLINE_BITS) == PCRE_NEWLINE_ANYCRLF) in main()
3299 switch ((((options & PCRE_NEWLINE_BITS) == 0)? re->options : (pcre_uint32)options) & in pcre_dfa_exec()3300 PCRE_NEWLINE_BITS) in pcre_dfa_exec()
6611 switch ((((options & PCRE_NEWLINE_BITS) == 0)? re->options : in pcre_exec()6612 (pcre_uint32)options) & PCRE_NEWLINE_BITS) in pcre_exec()
9167 options = (options & ~PCRE_NEWLINE_BITS) | newnl; in pcre_compile2()9230 switch (options & PCRE_NEWLINE_BITS) in pcre_compile2()
9835 switch(re->options & PCRE_NEWLINE_BITS) in PRIV()