OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PCRE
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/re2/util/
pcre.cc
5
// This is a variant of
PCRE
's pcrecpp.cc, originally written at Google.
7
// compilation as
PCRE
in namespace re2.
12
#include "util/
pcre
.h"
21
// Default
PCRE
limits.
26
DEFINE_int32(regexp_stack_limit, 256<<10, "default
PCRE
stack limit (bytes)");
28
"default
PCRE
match limit (function calls)");
34
static const int kVecSize = (1 + kMaxArgs) * 3; // results +
PCRE
workspace
36
// Approximate size of a recursive invocation of
PCRE
's
46
PCRE
::Arg
PCRE
::no_more_args((void*)NULL)
[
all
...]
pcre.h
5
// 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
16
// This module uses the
pcre
library and hence supports its syntax
19
// http://www.google.com/search?q=
pcre
39
// CHECK(
PCRE
::FullMatch("hello", "h.*o"));
42
// CHECK(!
PCRE
::FullMatch("hello", "e"));
57
//
PCRE
re(utf8_pattern,
PCRE
::UTF8)
[
all
...]
Completed in 70 milliseconds