PCRE_DOTALL 163 core/RegExpObject.cpp m_optionFlags |= PCRE_DOTALL; PCRE_DOTALL 704 core/RegExpObject.cpp bool RegExpObject::get_dotall() { return hasOption(PCRE_DOTALL); } PCRE_DOTALL 5001 pcre/pcre_compile.cpp case 's': *optset |= PCRE_DOTALL; break; PCRE_DOTALL 5850 pcre/pcre_compile.cpp op == OP_TYPEPOSSTAR) && (*options & PCRE_DOTALL) != 0) PCRE_DOTALL 735 pcre/pcre_dfa_exec.cpp if (clen > 0 && ((ims & PCRE_DOTALL) != 0 || !IS_NEWLINE(ptr))) PCRE_DOTALL 868 pcre/pcre_dfa_exec.cpp (ims & PCRE_DOTALL) != 0 || PCRE_DOTALL 894 pcre/pcre_dfa_exec.cpp (ims & PCRE_DOTALL) != 0 || PCRE_DOTALL 919 pcre/pcre_dfa_exec.cpp (ims & PCRE_DOTALL) != 0 || PCRE_DOTALL 942 pcre/pcre_dfa_exec.cpp (ims & PCRE_DOTALL) != 0 || PCRE_DOTALL 966 pcre/pcre_dfa_exec.cpp (ims & PCRE_DOTALL) != 0 || PCRE_DOTALL 2824 pcre/pcre_dfa_exec.cpp re->options & (PCRE_CASELESS|PCRE_MULTILINE|PCRE_DOTALL), /* ims flags */ PCRE_DOTALL 1516 pcre/pcre_exec.cpp if ((ims & PCRE_DOTALL) == 0) PCRE_DOTALL 3039 pcre/pcre_exec.cpp ((ims & PCRE_DOTALL) == 0 && IS_NEWLINE(eptr))) PCRE_DOTALL 3277 pcre/pcre_exec.cpp if ((ims & PCRE_DOTALL) == 0) PCRE_DOTALL 3539 pcre/pcre_exec.cpp (ctype == OP_ANY && (ims & PCRE_DOTALL) == 0 && PCRE_DOTALL 3711 pcre/pcre_exec.cpp ((ims & PCRE_DOTALL) == 0 && IS_NEWLINE(eptr))) PCRE_DOTALL 3985 pcre/pcre_exec.cpp if ((ims & PCRE_DOTALL) == 0) PCRE_DOTALL 4009 pcre/pcre_exec.cpp if ((ims & PCRE_DOTALL) == 0) PCRE_DOTALL 4225 pcre/pcre_exec.cpp if ((ims & PCRE_DOTALL) == 0) PCRE_DOTALL 4693 pcre/pcre_exec.cpp ims = re->options & (PCRE_CASELESS|PCRE_MULTILINE|PCRE_DOTALL); PCRE_DOTALL 473 pcre/pcre_internal.h #define PCRE_IMS (PCRE_CASELESS|PCRE_MULTILINE|PCRE_DOTALL) PCRE_DOTALL 500 pcre/pcre_internal.h PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_UNGREEDY|PCRE_UTF8| \ PCRE_DOTALL 709 pcre/pcrecpp_unittest.cc options.set_all_options(PCRE_CASELESS | PCRE_DOTALL); PCRE_DOTALL 249 pcre/pcreposix.cpp if ((cflags & REG_DOTALL) != 0) options |= PCRE_DOTALL; PCRE_DOTALL 1152 pcre/pcretest.cpp case 's': options |= PCRE_DOTALL; break; PCRE_DOTALL 1234 pcre/pcretest.cpp if ((options & PCRE_DOTALL) != 0) cflags |= REG_DOTALL; PCRE_DOTALL 1457 pcre/pcretest.cpp ((get_options & PCRE_DOTALL) != 0)? " dotall" : "",