/external/protobuf/src/google/protobuf/ |
unittest_recursive_micro.proto | 39 message NestedMessage { 44 optional NestedMessage nested_message = 2;
|
unittest_simple_micro.proto | 39 message NestedMessage { 50 optional NestedMessage nested_msg = 2;
|
unittest_micro.proto | 43 message NestedMessage { 74 optional NestedMessage optional_nested_message = 18; 107 repeated NestedMessage repeated_nested_message = 48;
|
unittest_lite.proto | 45 message NestedMessage { 76 optional NestedMessage optional_nested_message = 18; 109 repeated NestedMessage repeated_nested_message = 48; 201 optional TestAllTypesLite.NestedMessage optional_nested_message_extension_lite 237 repeated TestAllTypesLite.NestedMessage repeated_nested_message_extension_lite
|
unittest.proto | 55 message NestedMessage { 89 optional NestedMessage optional_nested_message = 18; 121 repeated NestedMessage repeated_nested_message = 48; 200 optional TestAllTypes.NestedMessage optional_nested_message_extension = 18; 234 repeated TestAllTypes.NestedMessage repeated_nested_message_extension = 48; 340 // Test that we can use NestedMessage from outside TestAllTypes. 342 optional TestAllTypes.NestedMessage foreign_nested = 1; 397 message NestedMessage { 401 optional NestedMessage optional_nested_message = 1;
|
generated_message_reflection_unittest.cc | 82 EXPECT_EQ(&unittest::TestAllTypes::NestedMessage::default_instance(), 141 EXPECT_NE(&unittest::TestAllTypes::NestedMessage::default_instance(),
|
reflection_ops_unittest.cc | 183 EXPECT_NE(&unittest::TestAllTypes::NestedMessage::default_instance(), 204 EXPECT_NE(&unittest::TestAllTypes::NestedMessage::default_instance(),
|
extension_set_unittest.cc | 70 EXPECT_EQ(&unittest::TestAllTypes::NestedMessage::default_instance(), 106 EXPECT_NE(&unittest::TestAllTypes::NestedMessage::default_instance(),
|
repeated_field_unittest.cc | 854 typedef TestAllTypes::NestedMessage Nested;
|
test_util.cc | [all...] |
/external/protobuf/python/google/protobuf/internal/ |
descriptor_test.py | 68 name='NestedMessage', 69 full_name='protobuf_unittest.TestAllTypes.NestedMessage', 76 full_name='protobuf_unittest.TestAllTypes.NestedMessage.bb', 164 name: 'NestedMessage' 174 unittest_pb2.TestAllTypes.NestedMessage.DESCRIPTOR, 186 type_name: '.protobuf_unittest.TestAllTypes.NestedMessage'
|
generator_test.py | 60 proto_type.NestedMessage.DESCRIPTOR, 147 unittest_pb2.TestAllTypes.NestedMessage.DESCRIPTOR, 153 unittest_pb2.TestAllTypes.NestedMessage.DESCRIPTOR.nested_types, []) 161 unittest_pb2.TestAllTypes.NestedMessage.DESCRIPTOR.containing_type, 164 unittest_pb2.TestAllTypes.NestedMessage.DESCRIPTOR.containing_type, 179 desc = unittest_pb2.TestAllTypes.NestedMessage.DESCRIPTOR
|
reflection_test.py | 140 unittest_pb2.TestAllTypes.NestedMessage( 142 unittest_pb2.TestAllTypes.NestedMessage( 154 [unittest_pb2.TestAllTypes.NestedMessage( 156 unittest_pb2.TestAllTypes.NestedMessage( 178 unittest_pb2.TestAllTypes.NestedMessage( 180 unittest_pb2.TestAllTypes.NestedMessage( 192 [unittest_pb2.TestAllTypes.NestedMessage( 194 unittest_pb2.TestAllTypes.NestedMessage( 665 self.assertTrue(isinstance(m0, unittest_pb2.TestAllTypes.NestedMessage)) [all...] |
/external/protobuf/java/src/test/java/com/google/protobuf/ |
multiple_files_test.proto | 44 message NestedMessage { 50 optional NestedMessage nested = 1;
|
GeneratedMessageTest.java | 115 builder.setOptionalNestedMessage((TestAllTypes.NestedMessage) null); 122 (TestAllTypes.NestedMessage.Builder) null); 146 builder.addRepeatedNestedMessage((TestAllTypes.NestedMessage) null); 153 (TestAllTypes.NestedMessage.Builder) null); 196 TestAllTypes.NestedMessage.newBuilder().setBb(218).build()); 198 TestAllTypes.NestedMessage.newBuilder().setBb(456).build()); 200 builder.setRepeatedNestedMessage(1, (TestAllTypes.NestedMessage) null); 207 1, (TestAllTypes.NestedMessage.Builder) null); 553 .setNested(MessageWithNoOuter.NestedMessage.newBuilder().setI(1)) 616 assertEquals(TestAllTypes.NestedMessage.BB_FIELD_NUMBER, 1) [all...] |
LiteTest.java | 70 TestAllTypesLite.NestedMessage.newBuilder().setBb(7)) 95 TestAllTypesLite.NestedMessage.newBuilder().setBb(7).build())
|
DescriptorsTest.java | 147 Descriptor nestedType = TestAllTypes.NestedMessage.getDescriptor(); 157 assertEquals("NestedMessage", nestedType.getName()); 158 assertEquals("protobuf_unittest.TestAllTypes.NestedMessage", 174 assertEquals(nestedType, messageType.findNestedTypeByName("NestedMessage"));
|
MicroTest.java | 74 SimpleMessageMicro.NestedMessage nestedMsg = new SimpleMessageMicro.NestedMessage() 116 RecursiveMessageMicro.NestedMessage nestedMsg = new RecursiveMessageMicro.NestedMessage(); 593 TestAllTypesMicro.NestedMessage nestedMsg = new TestAllTypesMicro.NestedMessage(); 602 .setOptionalNestedMessage(new TestAllTypesMicro.NestedMessage().setBb(2)); [all...] |
TestUtil.java | 336 TestAllTypes.NestedMessage.newBuilder().setBb(118).build()); 370 TestAllTypes.NestedMessage.newBuilder().setBb(218).build()); 403 TestAllTypes.NestedMessage.newBuilder().setBb(318).build()); 468 TestAllTypes.NestedMessage.newBuilder().setBb(518).build()); [all...] |
TextFormatTest.java | 38 import protobuf_unittest.UnittestProto.TestAllTypes.NestedMessage; 198 final Object value = NestedMessage.newBuilder().setBb(42).build();
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_unittest.cc | 139 EXPECT_EQ(&unittest::TestAllTypes::NestedMessage::default_instance(), 213 EXPECT_NE(&unittest::TestAllTypes::NestedMessage::default_instance(), 563 // Test that TestAllTypes::NestedMessage can be embedded directly into 569 unittest::TestAllTypes::NestedMessage* nested = 709 // nested message type. NestedMessage is simple enough (1 int field) that it 710 // is equal to sizeof(NestedMessage) 712 ASSERT_EQ(sizeof(unittest::TestAllTypes::NestedMessage), 715 sizeof(unittest::TestAllTypes::NestedMessage), [all...] |
/external/protobuf/src/google/protobuf/compiler/ |
parser_unittest.cc | 447 TEST_F(ParseMessageTest, NestedMessage) { [all...] |