OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:backtracker
(Results
1 - 9
of
9
) sorted by null
/external/regex-re2/re2/testing/
backtrack.cc
32
//
Backtracker
holds the state for a backtracking search.
48
class
Backtracker
{
50
explicit
Backtracker
(Prog* prog);
51
~
Backtracker
();
78
Backtracker
::
Backtracker
(Prog* prog)
89
Backtracker
::~
Backtracker
() {
94
bool
Backtracker
::Search(const StringPiece& text, const StringPiece& context,
148
bool
Backtracker
::Visit(int id, const char* p)
[
all
...]
/prebuilts/go/darwin-x86/src/regexp/
backtrack.go
19
// A job is an entry on the
backtracker
's job stack. It holds
33
// bitState holds state for the
backtracker
.
47
// the
backtracker
using prog.
57
// the
backtracker
will be run for.
68
// long for the
backtracker
to run.
73
// reset resets the state of the
backtracker
.
all_test.go
493
// and then the
backtracker
when there are no captures.
500
re.Match(long[:1]) // triggers
backtracker
exec.go
42
b *bitState // state for
backtracker
, allocated lazily
exec_test.go
718
// for the
backtracker
still executes properly.
/prebuilts/go/linux-x86/src/regexp/
backtrack.go
19
// A job is an entry on the
backtracker
's job stack. It holds
33
// bitState holds state for the
backtracker
.
47
// the
backtracker
using prog.
57
// the
backtracker
will be run for.
68
// long for the
backtracker
to run.
73
// reset resets the state of the
backtracker
.
all_test.go
493
// and then the
backtracker
when there are no captures.
500
re.Match(long[:1]) // triggers
backtracker
exec.go
42
b *bitState // state for
backtracker
, allocated lazily
exec_test.go
718
// for the
backtracker
still executes properly.
Completed in 124 milliseconds