PCRE_MULTILINE 160 core/RegExpObject.cpp m_optionFlags |= PCRE_MULTILINE; PCRE_MULTILINE 703 core/RegExpObject.cpp bool RegExpObject::get_multiline() { return hasOption(PCRE_MULTILINE); } PCRE_MULTILINE 2849 pcre/pcre_compile.cpp if ((options & PCRE_MULTILINE) != 0) PCRE_MULTILINE 5000 pcre/pcre_compile.cpp case 'm': *optset |= PCRE_MULTILINE; break; PCRE_MULTILINE 5811 pcre/pcre_compile.cpp wi_code + _pcre_OP_lengths[*wi_code], options, PCRE_MULTILINE, FALSE); PCRE_MULTILINE 5861 pcre/pcre_compile.cpp ((*options & PCRE_MULTILINE) != 0 || op != OP_CIRC)) PCRE_MULTILINE 699 pcre/pcre_dfa_exec.cpp ((ims & PCRE_MULTILINE) != 0 && PCRE_MULTILINE 751 pcre/pcre_dfa_exec.cpp ((ims & PCRE_MULTILINE) != 0 || ptr == end_subject - md->nllen) PCRE_MULTILINE 755 pcre/pcre_dfa_exec.cpp else if ((ims & PCRE_MULTILINE) != 0 && IS_NEWLINE(ptr)) PCRE_MULTILINE 2824 pcre/pcre_dfa_exec.cpp re->options & (PCRE_CASELESS|PCRE_MULTILINE|PCRE_DOTALL), /* ims flags */ PCRE_MULTILINE 1393 pcre/pcre_exec.cpp if ((ims & PCRE_MULTILINE) != 0) PCRE_MULTILINE 1428 pcre/pcre_exec.cpp if ((ims & PCRE_MULTILINE) != 0) PCRE_MULTILINE 4693 pcre/pcre_exec.cpp ims = re->options & (PCRE_CASELESS|PCRE_MULTILINE|PCRE_DOTALL); PCRE_MULTILINE 473 pcre/pcre_internal.h #define PCRE_IMS (PCRE_CASELESS|PCRE_MULTILINE|PCRE_DOTALL) PCRE_MULTILINE 499 pcre/pcre_internal.h (PCRE_CASELESS|PCRE_EXTENDED|PCRE_ANCHORED|PCRE_MULTILINE| \ PCRE_MULTILINE 714 pcre/pcrecpp_unittest.cc options.set_all_options(PCRE_MULTILINE | PCRE_EXTENDED); PCRE_MULTILINE 720 pcre/pcrecpp_unittest.cc RE_Options(PCRE_MULTILINE | PCRE_EXTENDED), PCRE_MULTILINE 1402 pcre/pcregrep.cpp case 'M': multiline = TRUE; options |= PCRE_MULTILINE|PCRE_FIRSTLINE; break; PCRE_MULTILINE 248 pcre/pcreposix.cpp if ((cflags & REG_NEWLINE) != 0) options |= PCRE_MULTILINE; PCRE_MULTILINE 1151 pcre/pcretest.cpp case 'm': options |= PCRE_MULTILINE; break; PCRE_MULTILINE 1233 pcre/pcretest.cpp if ((options & PCRE_MULTILINE) != 0) cflags |= REG_NEWLINE; PCRE_MULTILINE 1455 pcre/pcretest.cpp ((get_options & PCRE_MULTILINE) != 0)? " multiline" : "",