Home
last modified time | relevance | path

Searched refs:UnpackTo (Results 1 – 18 of 18) sorted by relevance

/external/protobuf/src/google/protobuf/
Dany_test.cc52 ASSERT_TRUE(message.any_value().UnpackTo(&submessage)); in TEST()
64 EXPECT_FALSE(any.UnpackTo(&dest)); in TEST()
82 ASSERT_TRUE(message.any_value().UnpackTo(&any)); in TEST()
83 ASSERT_TRUE(any.UnpackTo(&submessage)); in TEST()
103 EXPECT_TRUE(any.UnpackTo(&submessage)); in TEST()
144 ASSERT_TRUE(dst.UnpackTo(&payload)); in TEST()
161 ASSERT_TRUE(dst.UnpackTo(&payload)); in TEST()
Dany.h92 bool UnpackTo(T* message) const { in UnpackTo() function
96 bool UnpackTo(Message* message) const;
Dany.cc57 bool AnyMetadata::UnpackTo(Message* message) const { in UnpackTo() function in google::protobuf::internal::AnyMetadata
Dany.pb.cc98 bool Any::UnpackTo(::PROTOBUF_NAMESPACE_ID::Message* message) const { in UnpackTo() function in Any
99 return _any_metadata_.UnpackTo(message); in UnpackTo()
Dany.pb.h119 bool UnpackTo(::PROTOBUF_NAMESPACE_ID::Message* message) const;
Dany.proto54 // if (any.UnpackTo(&foo)) {
/external/tensorflow/tensorflow/core/profiler/convert/
Dop_stats_to_input_pipeline_analysis.cc113 bool success = step_details.UnpackTo(&details); in ComputeGenericStepTimeBreakdownInMs()
176 bool success = step_info.step_breakdown().UnpackTo(&generic); in ComputeGenericInputPipelineAnalysisResult()
332 if (input_pipeline_analysis.step_time_breakdown().UnpackTo( in RatioOfHostToDeviceTimeToStepTime()
561 bool success = step_details.UnpackTo(&details); in GenericOverallBottleneck()
Dstep_events_to_steps_db.cc85 if (step_info.step_breakdown().UnpackTo(&generic)) { in DebugStepInfo()
/external/libprotobuf-mutator/examples/libfuzzer/
Dlibfuzzer_example.cc57 message.any().UnpackTo(&file) && !file.name().empty()) { in DEFINE_PROTO_FUZZER()
Dlibfuzzer_bin_example.cc57 message.any().UnpackTo(&file) && !file.name().empty()) { in DEFINE_BINARY_PROTO_FUZZER()
/external/tensorflow/tensorflow/core/platform/
Dprotobuf_internal.h62 if (!any.UnpackTo(message)) { in ParseAny()
/external/grpc-grpc/test/cpp/util/
Derror_details_test.cc45 to.details(0).UnpackTo(&details); in TEST()
/external/tensorflow/tensorflow/core/distributed_runtime/
Dcollective_rma_distributed.cc107 state->call->resp_.transport_options().UnpackTo(&extra); in RecvFromPeer()
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_remote_worker.cc142 response->transport_options().UnpackTo(&extra); in RecvBufAsync()
/external/golang-protobuf/ptypes/any/
Dany.proto54 // if (any.UnpackTo(&foo)) {
/external/protobuf/src/google/protobuf/util/
Dtype_resolver_util_test.cc153 if (option.value().UnpackTo(&wrapper) && wrapper.value() == value) { in HasOption()
Djson_util_test.cc378 EXPECT_TRUE(m.value().UnpackTo(&t)); in TEST_F()
/external/protobuf/
DCHANGES.txt1318 Then in C++ you can access the Any field using PackFrom()/UnpackTo()
1326 foo.any_field().UnpackTo(&bar);