Home
last modified time | relevance | path

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

/external/pcre/pcrecpp/
Dpcrecpp_unittest.cc589 static void TestOneOption( in TestOneOption() function
621 TestOneOption("CASELESS (class)", "HELLO", "hello", options, false); in Test_CASELESS()
622 TestOneOption("CASELESS (class2)", "HELLO", "hello", options2.set_caseless(true), false); in Test_CASELESS()
623 TestOneOption("CASELESS (class)", "^[A-Z]+$", "Hello", options, false); in Test_CASELESS()
625 TestOneOption("CASELESS (function)", "HELLO", "hello", pcrecpp::CASELESS(), false); in Test_CASELESS()
626 TestOneOption("CASELESS (function)", "^[A-Z]+$", "Hello", pcrecpp::CASELESS(), false); in Test_CASELESS()
628 TestOneOption("no CASELESS", "HELLO", "hello", options, false, false); in Test_CASELESS()
637 TestOneOption("MULTILINE (class)", "^cruel$", str, options, false); in Test_MULTILINE()
638 TestOneOption("MULTILINE (class2)", "^cruel$", str, options2.set_multiline(true), false); in Test_MULTILINE()
639 TestOneOption("MULTILINE (function)", "^cruel$", str, pcrecpp::MULTILINE(), false); in Test_MULTILINE()
[all …]