HomeSort by relevance Sort by last modified time
    Searched refs:CASELESS (Results 1 - 2 of 2) sorted by null

  /external/pcre/dist/
pcrecpp.h 200 // bool caseless(),
240 // CASELESS(), UTF8(), MULTILINE(), DOTALL(), EXTENDED()
385 bool caseless() const { function in class:pcrecpp::RE_Options
469 static inline RE_Options CASELESS() {
pcrecpp_unittest.cc 618 TestOneOption("CASELESS (class)", "HELLO", "hello", options, false);
619 TestOneOption("CASELESS (class2)", "HELLO", "hello", options2.set_caseless(true), false);
620 TestOneOption("CASELESS (class)", "^[A-Z]+$", "Hello", options, false);
622 TestOneOption("CASELESS (function)", "HELLO", "hello", pcrecpp::CASELESS(), false);
623 TestOneOption("CASELESS (function)", "^[A-Z]+$", "Hello", pcrecpp::CASELESS(), false);
625 TestOneOption("no CASELESS", "HELLO", "hello", options, false, false);
743 TestOneOption("all_options (CASELESS|DOTALL)", "^hello.*WORLD", str , options, false);
    [all...]

Completed in 44 milliseconds