Lines Matching refs:pcrecpp
68 pcrecpp page has details of this interface. Other people's contribu-
147 pcrecpp details of the C++ wrapper for the 8-bit library
1715 PCRE. It is documented in the pcrecpp page.
1727 before including pcre.h or pcrecpp.h, because otherwise the pcre_mal-
4254 pcre16(3), pcre32(3), pcrebuild(3), pcrecallout(3), pcrecpp(3)(3),
9758 #include <pcrecpp.h>
9765 structed from the notes in the pcrecpp.h file, which should be con-
9778 pcrecpp::RE re("h.*o");
9782 pcrecpp::RE re("e");
9786 pcrecpp::RE("h.*o").FullMatch("hello");
9799 pcrecpp::RE re("(\\w+):(\\d+)");
9812 !pcrecpp::RE("\\w+:\\d+").FullMatch("ruby:1234", &s);
9815 !pcrecpp::RE("(.*)").FullMatch("ruby", &i);
9845 pcrecpp::RE::FullMatch("abc", "[a-z]+(\\d+)?", &number);
9849 pcrecpp::RE::DoMatch. See pcrecpp.h for the signature for DoMatch.
9878 pcrecpp::RE("ell").PartialMatch("hello");
9882 pcrecpp::RE re("(\\d+)");
9899 pcrecpp::RE_Options options;
9901 pcrecpp::RE re(utf8_pattern, options);
9905 pcrecpp::RE re(utf8_pattern, pcrecpp::UTF8());
10008 pcrecpp namespace.
10012 pcrecpp::StringPiece input(contents); // Wrap in a StringPiece
10016 pcrecpp::RE re("(\\w+) = (\\d+)\n");
10028 pcrecpp::RE("(\\w+)").FindAndConsume(&input, &word)
10042 pcrecpp::RE re("(.*) (.*) (.*) (.*)");
10044 pcrecpp::Octal(&a), pcrecpp::Hex(&b),
10045 pcrecpp::CRadix(&c), pcrecpp::CRadix(&d));
10058 pcrecpp::RE("b+").Replace("d", &s);
10068 pcrecpp::RE("b+").GlobalReplace("d", &s);