Searched refs:feature_found (Results 1 - 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/util/
H A Dexample_proto_helper.cc232 const auto& feature_found = feature_dict.find(key); local
234 (feature_found != feature_dict.end() &&
235 (feature_found->second.kind_case() != Feature::KIND_NOT_SET));
246 const Feature& f = feature_found->second;
271 const auto& feature_found = feature_dict.find(key); local
274 (feature_found != feature_dict.end() &&
275 (feature_found->second.kind_case() != Feature::KIND_NOT_SET));
278 const Feature& f = feature_found->second;
/external/tensorflow/tensorflow/core/kernels/
H A Dexample_parsing_ops.cc461 const auto& feature_found = context_dict.find(key); variable
463 ctx, (feature_found != context_dict.end()) || !required[d],
466 if (feature_found != context_dict.end()) {
467 const Feature& f = feature_found->second;
490 const auto& feature_found = context_dict.find(key); variable
492 (feature_found != context_dict.end() &&
493 (feature_found->second.kind_case() != Feature::KIND_NOT_SET));
496 const Feature& f = feature_found->second;

Completed in 118 milliseconds