HomeSort by relevance Sort by last modified time
    Searched refs:PCRE (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/third_party/re2/util/
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...]
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...]
  /external/regex-re2/util/
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...]
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"
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)
    [all...]
  /external/pcre/dist/
makevp.bat 1 :: AH 20-12-06 modified for new PCRE-7.0 and VP/BCC
7 :: AH 27.08.08 updated for new PCRE-7.7
8 :: required PCRE.H and CONFIG.H will be generated if not existing
12 echo Compiling PCRE with BORLAND C++ for VIRTUAL PASCAL
15 REM This file was contributed by Alexander Tokarev for building PCRE for use
16 REM with Virtual Pascal. It has not been tested with the latest PCRE release.
18 REM This file has been modified and extended to compile with newer PCRE releases
30 del pcre%PCRE_VER%.lib >nul 2>nul
35 if not exist pcre.h copy pcre.h.generic pcre.
    [all...]
CleanTxt 23 if (/^PCRE(\w*)\(([13])\)\s+PCRE\1\(\2\)$/)
132html 3 # Script to turn PCRE man pages into HTML
66 Return to the <a href="index.html">PCRE index page</a>.
69 This page is part of the PCRE HTML documentation. It was generated automatically
85 # Some of the PCRE man pages used to contain instances of .br. However,
306 Return to the <a href="index.html">PCRE index page</a>.
pcretest.c 2 * PCRE testing program *
5 /* This program was hacked up as a tester for PCRE. I really should have
40 32-bit PCRE libraries in a single program. This is different from the modules
135 "inside information" compared to a program that strictly follows the PCRE API.
137 Although pcre_internal.h does itself include pcre.h, we explicitly include it
139 appropriately for an application, not for building PCRE. */
141 #include "pcre.h"
150 void pcre_printint(pcre *external_re, FILE *f, BOOL print_lengths);
153 void pcre16_printint(pcre *external_re, FILE *f, BOOL print_lengths);
156 void pcre32_printint(pcre *external_re, FILE *f, BOOL print_lengths)
    [all...]
pcregexp.pas 5 Based on PCRE library interface unit for Virtual Pascal.
8 The current PCRE version is: 3.7
37 The PCRE library is written by: Philip Hazel <ph10@cam.ac.uk>
42 AH: 9-11-04 - pcre_free: removed var, pcre already gives the ptr, now
44 -> removed CheckRegExp because pcre handles errors perfectly
49 19-02-06 - added SearchOfs(): let PCRE use the complete string and offset
187 PCRE_ERROR_CALLOUT = -9; { Never used by PCRE itself }
294 { local replacement of external pcre memory management functions }
310 MAGIC_NUMBER = $50435245; { 'PCRE' }
335 { imported original pcre functions
    [all...]
RunTest.bat 287 echo ** Test 2 requires a lot of stack. PCRE can be configured to
289 echo ** you generally need to allocate 8 mb stack to PCRE.
290 echo ** See the 'pcrestack' page for a discussion of PCRE's
297 echo ** available on the system, rather than a bug or problem with PCRE.
609 @echo runs all tests compatible with the linked pcre library but it can be given
RunTest 4 # Run the PCRE tests using the pcretest program. The appropriate tests are
36 # rather than a bug in PCRE, so normally subsequent tests are run. "3S" is
408 echo PCRE C library tests using test data from $testdata
439 # PCRE tests that are not JIT or Perl-compatible: API, errors, internals
453 echo "** page for a discussion of PCRE's stack usage."
521 echo " than a bug in PCRE."
pcre_compile.c 5 /* PCRE is a library of functions to support regular expressions whose syntax
56 /* When PCRE_DEBUG is defined, we need the pcre(16|32)_printint() function, which
487 "this version of PCRE is compiled without UTF support\0"
493 "PCRE does not support \\L, \\l, \\N{name}, \\U, or \\u\0"
529 "this version of PCRE is not compiled with Unicode property support\0"
557 may mark arbitrary characters as digits - but the PCRE compiling code expects
561 applications one wants PCRE to compile efficiently as well as match
    [all...]
  /external/chromium_org/third_party/re2/re2/testing/
regexp_benchmark.cc 11 #include "util/pcre.h"
69 PCRE re(regexp, PCRE::UTF8);
71 PCRE::FullMatch(text, re);
78 PCRE* re = new PCRE(regexp, PCRE::UTF8);
79 fprintf(stderr, "PCRE*: %7lld bytes (peak=%lld)\n", mc.HeapGrowth(), mc.PeakHeapGrowth());
80 PCRE::FullMatch(text, *re);
81 fprintf(stderr, "PCRE*: %7lld bytes (peak=%lld)\n", mc.HeapGrowth(), mc.PeakHeapGrowth())
    [all...]
tester.cc 39 "PCRE",
242 // PCRE as exposed by the RE interface isn't always usable.
244 // like matching (a*)* against "b". PCRE treats the (a*) as
253 o.set_option(PCRE::UTF8);
255 o.set_option(PCRE::None);
256 // PCRE has interface bug keeping us from finding $0, so
258 re_ = new PCRE("("+re+")", o);
260 LOG(INFO) << "Cannot PCRE: " << CEscape(re);
408 const PCRE::Arg **argptr = new const PCRE::Arg*[nsubmatch]
    [all...]
tester.h 15 #include "util/pcre.h"
32 kEnginePCRE, // PCRE (util/pcre.h)
84 PCRE* re_; // PCRE implementation
  /external/regex-re2/re2/testing/
regexp_benchmark.cc 11 #include "util/pcre.h"
69 PCRE re(regexp, PCRE::UTF8);
71 PCRE::FullMatch(text, re);
78 PCRE* re = new PCRE(regexp, PCRE::UTF8);
79 fprintf(stderr, "PCRE*: %7lld bytes (peak=%lld)\n", mc.HeapGrowth(), mc.PeakHeapGrowth());
80 PCRE::FullMatch(text, *re);
81 fprintf(stderr, "PCRE*: %7lld bytes (peak=%lld)\n", mc.HeapGrowth(), mc.PeakHeapGrowth())
    [all...]
tester.cc 39 "PCRE",
242 // PCRE as exposed by the RE interface isn't always usable.
244 // like matching (a*)* against "b". PCRE treats the (a*) as
253 o.set_option(PCRE::UTF8);
255 o.set_option(PCRE::None);
256 // PCRE has interface bug keeping us from finding $0, so
258 re_ = new PCRE("("+re+")", o);
260 LOG(INFO) << "Cannot PCRE: " << CEscape(re);
408 const PCRE::Arg **argptr = new const PCRE::Arg*[nsubmatch]
    [all...]
tester.h 15 #include "util/pcre.h"
32 kEnginePCRE, // PCRE (util/pcre.h)
84 PCRE* re_; // PCRE implementation
  /external/chromium_org/third_party/re2/doc/
mksyntaxwiki 10 ,s! pcre$! <font size="1">PCRE</font>!g
28 <tr><td colspan="2">It also lists syntax accepted by PCRE, PERL, and VIM.</td></tr>
mksyntaxhtml 12 ,s! pcre$! <font size=-2>PCRE</font>!g
32 <tr><td colspan=2>It also lists syntax accepted by PCRE, PERL, and VIM.</td></tr>
  /external/regex-re2/doc/
mksyntaxwiki 10 ,s! pcre$! <font size="1">PCRE</font>!g
28 <tr><td colspan="2">It also lists syntax accepted by PCRE, PERL, and VIM.</td></tr>
mksyntaxhtml 12 ,s! pcre$! <font size=-2>PCRE</font>!g
32 <tr><td colspan=2>It also lists syntax accepted by PCRE, PERL, and VIM.</td></tr>
  /external/chromium_org/third_party/re2/benchlog/
mktable 8 <tr><th>System</th><th>PCRE</th><th>RE2</th></tr>
11 my $ns_pcre = $data{$sys}->{sprintf($name, "PCRE")}->{'ns/op'};
28 "PCRE" => "0.7 0 0",
46 foreach my $who ("PCRE", "RE2") {
78 foreach my $who ("PCRE", "RE2") {
  /external/regex-re2/benchlog/
mktable 8 <tr><th>System</th><th>PCRE</th><th>RE2</th></tr>
11 my $ns_pcre = $data{$sys}->{sprintf($name, "PCRE")}->{'ns/op'};
28 "PCRE" => "0.7 0 0",
46 foreach my $who ("PCRE", "RE2") {
78 foreach my $who ("PCRE", "RE2") {
  /external/chromium_org/v8/test/webkit/fast/regex/
pcre-test-4.js 25 "A chunk of our port of PCRE's test suite, adapted to be more applicable to JavaScript."
    [all...]

Completed in 467 milliseconds

1 2