TestOneOption     586 pcre/pcrecpp_unittest.cc   TestOneOption("CASELESS (class)",  "HELLO",    "hello", options, false);
TestOneOption     587 pcre/pcrecpp_unittest.cc   TestOneOption("CASELESS (class2)", "HELLO",    "hello", options2.set_caseless(true), false);
TestOneOption     588 pcre/pcrecpp_unittest.cc   TestOneOption("CASELESS (class)",  "^[A-Z]+$", "Hello", options, false);
TestOneOption     590 pcre/pcrecpp_unittest.cc   TestOneOption("CASELESS (function)", "HELLO",    "hello", pcrecpp::CASELESS(), false);
TestOneOption     591 pcre/pcrecpp_unittest.cc   TestOneOption("CASELESS (function)", "^[A-Z]+$", "Hello", pcrecpp::CASELESS(), false);
TestOneOption     593 pcre/pcrecpp_unittest.cc   TestOneOption("no CASELESS", "HELLO",    "hello", options, false, false);
TestOneOption     602 pcre/pcrecpp_unittest.cc   TestOneOption("MULTILINE (class)",    "^cruel$", str, options, false);
TestOneOption     603 pcre/pcrecpp_unittest.cc   TestOneOption("MULTILINE (class2)",   "^cruel$", str, options2.set_multiline(true), false);
TestOneOption     604 pcre/pcrecpp_unittest.cc   TestOneOption("MULTILINE (function)", "^cruel$", str, pcrecpp::MULTILINE(), false);
TestOneOption     606 pcre/pcrecpp_unittest.cc   TestOneOption("no MULTILINE", "^cruel$", str, options, false, false);
TestOneOption     615 pcre/pcrecpp_unittest.cc   TestOneOption("DOTALL (class)",    "HELLO.*world", str, options, true);
TestOneOption     616 pcre/pcrecpp_unittest.cc   TestOneOption("DOTALL (class2)",   "HELLO.*world", str, options2.set_dotall(true), true);
TestOneOption     617 pcre/pcrecpp_unittest.cc   TestOneOption("DOTALL (function)",    "HELLO.*world", str, pcrecpp::DOTALL(), true);
TestOneOption     619 pcre/pcrecpp_unittest.cc   TestOneOption("no DOTALL", "HELLO.*world", str, options, true, false);
TestOneOption     627 pcre/pcrecpp_unittest.cc   TestOneOption("no DOLLAR_ENDONLY", "world$", str, options, false);
TestOneOption     629 pcre/pcrecpp_unittest.cc   TestOneOption("DOLLAR_ENDONLY 1",    "world$", str, options, false, false);
TestOneOption     630 pcre/pcrecpp_unittest.cc   TestOneOption("DOLLAR_ENDONLY 2",    "world$", str, options2.set_dollar_endonly(true), false, false);
TestOneOption     638 pcre/pcrecpp_unittest.cc   TestOneOption("EXTRA 1", "\\HELL\\O", str, options, true, false );
TestOneOption     639 pcre/pcrecpp_unittest.cc   TestOneOption("EXTRA 2", "\\HELL\\O", str, RE_Options().set_extra(true), true, false );
TestOneOption     641 pcre/pcrecpp_unittest.cc   TestOneOption("no EXTRA", "\\HELL\\O", str, options, true );
TestOneOption     650 pcre/pcrecpp_unittest.cc   TestOneOption("EXTENDED (class)",    "HELLO world", str, options, false, false);
TestOneOption     651 pcre/pcrecpp_unittest.cc   TestOneOption("EXTENDED (class2)",   "HELLO world", str, options2.set_extended(true), false, false);
TestOneOption     652 pcre/pcrecpp_unittest.cc   TestOneOption("EXTENDED (class)",
TestOneOption     660 pcre/pcrecpp_unittest.cc   TestOneOption("EXTENDED (function)",    "HELLO world", str, pcrecpp::EXTENDED(), false, false);
TestOneOption     661 pcre/pcrecpp_unittest.cc   TestOneOption("EXTENDED (function)",
TestOneOption     670 pcre/pcrecpp_unittest.cc   TestOneOption("no EXTENDED", "HELLO world", str, options, false);
TestOneOption     711 pcre/pcrecpp_unittest.cc   TestOneOption("all_options (CASELESS|DOTALL)", "^hello.*WORLD", str , options, false);
TestOneOption     713 pcre/pcrecpp_unittest.cc   TestOneOption("all_options (0)", "^hello.*WORLD", str , options, false, false);
TestOneOption     716 pcre/pcrecpp_unittest.cc   TestOneOption("all_options (MULTILINE|EXTENDED)", " ^ c r u e l $ ", str, options, false);
TestOneOption     717 pcre/pcrecpp_unittest.cc   TestOneOption("all_options (MULTILINE|EXTENDED) with constructor",
TestOneOption     723 pcre/pcrecpp_unittest.cc   TestOneOption("all_options (MULTILINE|EXTENDED) with concatenation",
TestOneOption     732 pcre/pcrecpp_unittest.cc   TestOneOption("all_options (0)", "^ c r u e l $", str, options, false, false);