Home
last modified time | relevance | path

Searched refs:nested_msg (Results 1 – 3 of 3) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/
Dfield_mask_util_test.cc562 NestedTestAllTypes nested_msg; in TEST()
563 nested_msg.mutable_child()->mutable_payload()->set_optional_int32(1234); in TEST()
564 nested_msg.mutable_child() in TEST()
568 NestedTestAllTypes trimmed_msg(nested_msg); in TEST()
575 trimmed_msg = nested_msg; in TEST()
581 trimmed_msg = nested_msg; in TEST()
587 trimmed_msg = nested_msg; in TEST()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Darena_unittest.cc519 TestAllTypes::NestedMessage* nested_msg = NULL; in TEST() local
526 nested_msg = arena_message->release_optional_nested_message(); in TEST()
529 EXPECT_EQ(42, nested_msg->bb()); in TEST()
531 delete nested_msg; in TEST()
537 TestAllTypes::NestedMessage* nested_msg = NULL; in TEST() local
546 nested_msg = static_cast<TestAllTypes::NestedMessage*>( in TEST()
549 EXPECT_EQ(42, nested_msg->bb()); in TEST()
550 delete nested_msg; in TEST()
557 TestAllTypes::NestedMessage* nested_msg = NULL; in TEST() local
565 nested_msg = arena_message->unsafe_arena_release_optional_nested_message(); in TEST()
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/src/test/java/com/google/protobuf/nano/
Dunittest_simple_nano.proto52 optional NestedMessage nested_msg = 2; field