Home
last modified time | relevance | path

Searched refs:match_id (Results 1 – 10 of 10) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Dregexp.h342 int match_id() { DCHECK_EQ(op_, kRegexpHaveMatch); return match_id_; } in match_id() function
404 static Regexp* HaveMatch(int match_id, ParseFlags flags);
Dregexp.cc188 Regexp* Regexp::HaveMatch(int match_id, ParseFlags flags) { in HaveMatch() argument
190 re->match_id_ = match_id; in HaveMatch()
396 return a->match_id() == b->match_id(); in TopEqual()
Dtostring.cc294 t_->append("(?HaveMatch:%d)", re->match_id()); in PostVisit()
Dprog.h91 int match_id() { DCHECK_EQ(opcode(), kInstMatch); return match_id_; } in match_id() function
Dcompile.cc417 Frag Compiler::Match(int32_t match_id) { in Match() argument
421 inst_[id].InitMatch(match_id); in Match()
870 Frag f = Match(re->match_id()); in PostVisit()
Dprog.cc98 return StringPrintf("match! %d", match_id()); in Dump()
Ddfa.cc716 inst[n++] = ip->match_id(); in WorkqToCachedState()
/external/libtextclassifier/native/actions/
Dgrammar-actions_test.cc111 const int match_id, in AddCapturingMatchSmartReplySpec() argument
120 actions_spec->capturing_group.back()->group_id = match_id; in AddCapturingMatchSmartReplySpec()
/external/libchrome/base/metrics/
Dpersistent_histogram_allocator.cc152 const uint64_t match_id = sample_map_records->sample_map_id_; in LoadRecords() local
170 if (found_id == match_id) { in LoadRecords()
/external/rust/crates/regex-automata/src/nfa/
Dcompiler.rs300 let match_id = self.add_match(); in compile() localVariable
302 self.patch(compiled.end, match_id); in compile()