Searched refs:TestOneOption (Results 1 – 1 of 1) sorted by relevance
/external/pcre/dist/ |
D | pcrecpp_unittest.cc | 586 static void TestOneOption( in TestOneOption() function 618 TestOneOption("CASELESS (class)", "HELLO", "hello", options, false); in Test_CASELESS() 619 TestOneOption("CASELESS (class2)", "HELLO", "hello", options2.set_caseless(true), false); in Test_CASELESS() 620 TestOneOption("CASELESS (class)", "^[A-Z]+$", "Hello", options, false); in Test_CASELESS() 622 TestOneOption("CASELESS (function)", "HELLO", "hello", pcrecpp::CASELESS(), false); in Test_CASELESS() 623 TestOneOption("CASELESS (function)", "^[A-Z]+$", "Hello", pcrecpp::CASELESS(), false); in Test_CASELESS() 625 TestOneOption("no CASELESS", "HELLO", "hello", options, false, false); in Test_CASELESS() 634 TestOneOption("MULTILINE (class)", "^cruel$", str, options, false); in Test_MULTILINE() 635 TestOneOption("MULTILINE (class2)", "^cruel$", str, options2.set_multiline(true), false); in Test_MULTILINE() 636 TestOneOption("MULTILINE (function)", "^cruel$", str, pcrecpp::MULTILINE(), false); in Test_MULTILINE() [all …]
|