Home
last modified time | relevance | path

Searched refs:match_ (Results 1 – 8 of 8) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Dnfa.cc126 const char** match_; // best match so far member in re2::NFA
149 match_ = NULL; in NFA()
154 delete[] match_; in ~NFA()
342 if (matched_ && match_[0] < t->capture[0]) { in Step()
366 CopyCapture(match_, t->capture); in Step()
386 CopyCapture(match_, t->capture); in Step()
387 match_[1] = p; in Step()
399 if (!matched_ || t->capture[0] < match_[0] || in Step()
400 (t->capture[0] == match_[0] && p-1 > match_[1])) { in Step()
401 CopyCapture(match_, t->capture); in Step()
[all …]
Dprefilter.cc247 Prefilter* match_; member in re2::Prefilter::Info
253 match_(NULL) { in Info()
257 delete match_; in ~Info()
262 match_ = Prefilter::OrStrings(&exact_); in TakeMatch()
265 Prefilter* m = match_; in TakeMatch()
266 match_ = NULL; in TakeMatch()
283 if (match_) in ToString()
284 return match_->DebugString(); in ToString()
334 ab->match_ = Prefilter::And(a->TakeMatch(), b->TakeMatch()); in And()
354 ab->match_ = Prefilter::Or(a->TakeMatch(), b->TakeMatch()); in Alt()
[all …]
/external/tensorflow/tensorflow/core/grappler/utils/
Dpattern_utils.cc108 match_.reset(new NodeViewMatch()); in GetMatchedNodes()
109 if (DoesOpTypePatternMatch(pattern, node_view, match_.get())) { in GetMatchedNodes()
118 match_->Clear(); in GetMatchedNodes()
119 match_.reset(nullptr); in GetMatchedNodes()
Dpattern_utils.h194 std::unique_ptr<NodeViewMatch> match_ = nullptr; variable
/external/libprotobuf-mutator/src/
Dmutator.cc302 : match_(match), in DataSourceSampler()
336 if (field->cpp_type() != match_.cpp_type()) continue; in SampleImpl()
337 if (match_.cpp_type() == FieldDescriptor::CPPTYPE_ENUM) { in SampleImpl()
338 if (field->enum_type() != match_.enum_type()) continue; in SampleImpl()
339 } else if (match_.cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) { in SampleImpl()
340 if (field->message_type() != match_.message_type()) continue; in SampleImpl()
347 if (CanCopyAndDifferentField()(source, match_, size_increase_hint_)) in SampleImpl()
353 if (CanCopyAndDifferentField()(source, match_, size_increase_hint_)) in SampleImpl()
360 ConstFieldInstance match_; member in protobuf_mutator::__anonb2429a380111::DataSourceSampler
/external/rust/crates/grpcio-sys/grpc/third_party/re2/
Ducs2.diff219 - match_[0] = p;
220 - AddToThreadq(runq, start_, flag, p, match_);
221 - match_[0] = NULL;
223 + match_[0] = p;
224 + AddToThreadq(runq, start_, flag, p, match_);
225 + match_[0] = NULL;
/external/marisa-trie/lib/marisa/grimoire/trie/
Dlouds-trie.h112 bool match_(Agent &agent, std::size_t node_id) const;
Dlouds-trie.cc704 return next_trie_->match_(agent, link); in match()
751 bool LoudsTrie::match_(Agent &agent, std::size_t node_id) const { in match_() function in marisa::grimoire::trie::LoudsTrie