Searched refs:SearchDFA (Results 1 – 8 of 8) sorted by relevance
/external/regex-re2/re2/testing/ |
D | dfa_test.cc | 176 TEST(SingleThreaded, SearchDFA) { in TEST() argument 209 matched = prog->SearchDFA(match, NULL, in TEST() 214 matched = prog->SearchDFA(no_match, NULL, in TEST() 244 matched = prog_->SearchDFA(match_, NULL, in Run() 249 matched = prog_->SearchDFA(no_match_, NULL, in Run() 263 TEST(Multithreaded, SearchDFA) { in TEST() argument 333 …bool matched = prog->SearchDFA(t.text, NULL, Prog::kUnanchored, Prog::kFirstMatch, NULL, &failed, … in TEST()
|
D | tester.cc | 327 result->matched = prog_->SearchDFA(text, context, anchor, kind_, NULL, in RunSearch() 337 prog_->SearchDFA(text, context, anchor, kind_, result->submatch, in RunSearch() 342 if (!rprog_->SearchDFA(result->submatch[0], context, in RunSearch()
|
D | regexp_benchmark.cc | 108 SearchImpl SearchDFA, SearchNFA, SearchOnePass, SearchBitState, variable 296 void Search_Success_DFA(int i, int n) { SearchSuccess(i, n, ".*$", SearchDFA); } in Search_Success_DFA() 322 void Search_Success1_DFA(int i, int n) { SearchSuccess(i, n, ".*.$", SearchDFA); } in Search_Success1_DFA() 355 void Search_Digits_DFA(int i) { SearchDigits(i, SearchDFA); } in Search_Digits_DFA() 801 void SearchDFA(int iters, const char* regexp, const StringPiece& text, in SearchDFA() function 809 CHECK_EQ(prog->SearchDFA(text, NULL, anchor, Prog::kFirstMatch, in SearchDFA() 897 CHECK_EQ(prog->SearchDFA(text, NULL, anchor, in SearchCachedDFA()
|
/external/regex-re2/re2/ |
D | set.cc | 101 bool ret = prog_->SearchDFA(text, text, Prog::kAnchored, in Match()
|
D | prog.h | 272 bool SearchDFA(const StringPiece& text, const StringPiece& context,
|
D | re2.cc | 614 if (!prog_->SearchDFA(subtext, text, anchor, kind, in Match() 643 if (!prog->SearchDFA(match, text, Prog::kAnchored, in Match() 699 if (!prog_->SearchDFA(subtext, text, anchor, kind, in Match()
|
D | compile.cc | 1124 prog->SearchDFA(sp, sp, Prog::kAnchored, Prog::kManyMatch, in CompileSet()
|
D | dfa.cc | 1869 bool Prog::SearchDFA(const StringPiece& text, const StringPiece& const_context, in SearchDFA() function in re2::Prog
|