OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:state_cache_
(Results
1 - 1
of
1
) sorted by null
/external/regex-re2/re2/
dfa.cc
363
StateSet
state_cache_
; // All States computed so far.
member in class:re2::DFA
551
// The
state_cache_
is a set of all the State structures ever allocated,
743
StateSet::iterator it =
state_cache_
.find(&state);
744
if (it !=
state_cache_
.end()) {
776
state_cache_
.insert(s);
782
// In case
state_cache_
doesn't support deleting entries
785
v.reserve(
state_cache_
.size());
786
for (StateSet::iterator it =
state_cache_
.begin();
787
it !=
state_cache_
.end(); ++it)
789
state_cache_
.clear()
[
all
...]
Completed in 59 milliseconds