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

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

Completed in 239 milliseconds