Searched defs:PCRE (Results 1 - 2 of 2) sorted by relevance

/external/regex-re2/util/
H A Dpcre.cc5 // This is a variant of PCRE's pcrecpp.cc, originally written at Google.
7 // compilation as PCRE in namespace re2.
16 // Default PCRE limits.
21 DEFINE_int32(regexp_stack_limit, 256<<10, "default PCRE stack limit (bytes)");
23 "default PCRE match limit (function calls)");
29 static const int kVecSize = (1 + kMaxArgs) * 3; // results + PCRE workspace
31 // Approximate size of a recursive invocation of PCRE's
41 PCRE::Arg PCRE::no_more_args((void*)NULL);
43 const PCRE
75 PCRE::PCRE(const char* pattern) { function in class:re2::PCRE
78 PCRE::PCRE(const char* pattern, Option option) { function in class:re2::PCRE
81 PCRE::PCRE(const string& pattern) { function in class:re2::PCRE
84 PCRE::PCRE(const string& pattern, Option option) { function in class:re2::PCRE
87 PCRE::PCRE(const string& pattern, const PCRE_Options& re_option) { function in class:re2::PCRE
92 PCRE::PCRE(const char *pattern, const PCRE_Options& re_option) { function in class:re2::PCRE
[all...]
H A Dpcre.h5 // This is a variant of PCRE's pcrecpp.h, originally written at Google.
7 // compilation as PCRE in namespace re2.
9 // C++ interface to the pcre regular-expression library. PCRE supports
39 // CHECK(PCRE::FullMatch("hello", "h.*o"));
42 // CHECK(!PCRE::FullMatch("hello", "e"));
57 // PCRE re(utf8_pattern, PCRE::UTF8);
58 // CHECK(PCRE::FullMatch(utf8_string, re));
68 // CHECK(PCRE::FullMatch("ruby:1234", "(\\w+):(\\d+)", &s, &i));
71 // CHECK(!PCRE
196 class PCRE { class in namespace:re2
[all...]

Completed in 70 milliseconds