Home | History | Annotate | Download | only in pcre

Lines Matching refs:pat

491   RE(const string& pat) { Init(pat, NULL); }
492 RE(const string& pat, const RE_Options& option) { Init(pat, &option); }
493 RE(const char* pat) { Init(pat, NULL); }
494 RE(const char* pat, const RE_Options& option) { Init(pat, &option); }
495 RE(const unsigned char* pat) {
496 Init(reinterpret_cast<const char*>(pat), NULL);
498 RE(const unsigned char* pat, const RE_Options& option) {
499 Init(reinterpret_cast<const char*>(pat), &option);