Home
last modified time | relevance | path

Searched refs:PCRE_NEWLINE_ANY (Results 1 – 6 of 6) sorted by relevance

/third_party/glib/glib/pcre/
Dpcre.h136 #define PCRE_NEWLINE_ANY 0x00400000 /* Compile, exec, DFA exec */ macro
Dpcre_internal.h873 #define PCRE_NEWLINE_BITS (PCRE_NEWLINE_CR|PCRE_NEWLINE_LF|PCRE_NEWLINE_ANY| \
Dpcre_dfa_exec.c3257 case PCRE_NEWLINE_ANY: newline = -1; break; in pcre_dfa_exec()
Dpcre_compile.c7732 { skipatstart += 6; newnl = PCRE_NEWLINE_ANY; } in pcre_compile2()
7805 case PCRE_NEWLINE_ANY: newline = -1; break; in pcre_compile2()
Dpcre_exec.c6589 case PCRE_NEWLINE_ANY: newline = -1; break; in pcre_exec()
Dpcre_jit_compile.c6903 …case PCRE_NEWLINE_ANY: common->newline = (CHAR_CR << 8) | CHAR_NL; common->nltype = NLTYPE_ANY; br… in PRIV()