Home
last modified time | relevance | path

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

/external/libprotobuf-mutator/src/
Dmutator.cc301 : match_(match), in DataSourceSampler()
335 if (field->cpp_type() != match_.cpp_type()) continue; in SampleImpl()
336 if (match_.cpp_type() == FieldDescriptor::CPPTYPE_ENUM) { in SampleImpl()
337 if (field->enum_type() != match_.enum_type()) continue; in SampleImpl()
338 } else if (match_.cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) { in SampleImpl()
339 if (field->message_type() != match_.message_type()) continue; in SampleImpl()
346 if (CanCopyAndDifferentField()(source, match_, size_increase_hint_)) in SampleImpl()
352 if (CanCopyAndDifferentField()(source, match_, size_increase_hint_)) in SampleImpl()
359 ConstFieldInstance match_; member in protobuf_mutator::__anon4db2e1e30111::DataSourceSampler
/external/v8/src/runtime/
Druntime-strings.cc35 : match_(match), prefix_(prefix), suffix_(suffix) {} in RUNTIME_FUNCTION()
37 Handle<String> GetMatch() override { return match_; } in RUNTIME_FUNCTION()
45 return match_; // Return arbitrary string handle. in RUNTIME_FUNCTION()
53 Handle<String> match_, prefix_, suffix_; in RUNTIME_FUNCTION() member in v8::internal::RUNTIME_FUNCTION::SimpleMatch
Druntime-regexp.cc991 match_(match), in VectorBackedMatch()
1001 Handle<String> GetMatch() override { return match_; } in GetMatch()
1008 const int match_end_position = match_position_ + match_->length(); in GetSuffix()
1047 Handle<String> match_; member in v8::internal::__anon918fce930411::VectorBackedMatch
/external/v8/src/base/
Dhashmap.h437 explicit HashEqualityThenKeyMatcher(MatchFun match) : match_(match) {} in HashEqualityThenKeyMatcher()
441 return hash1 == hash2 && match_(key1, key2); in operator()
445 MatchFun match_;