├── .gitattributes ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── VERSION ├── compiler ├── CHANGES.txt ├── CONTRIBUTORS.txt ├── COPYING.txt ├── INSTALL.txt ├── Makefile.am ├── README.txt ├── autogen.sh ├── configure.ac ├── editors │ ├── README.txt │ ├── proto.vim │ └── protobuf-mode.el ├── examples │ ├── AddPerson.java │ ├── ListPeople.java │ ├── Makefile │ ├── README.txt │ ├── add_person.cc │ ├── add_person.py │ ├── addressbook.proto │ ├── list_people.cc │ └── list_people.py ├── generate_descriptor_proto.sh ├── gtest │ ├── CHANGES │ ├── CONTRIBUTORS │ ├── COPYING │ ├── Makefile.am │ ├── README │ ├── build-aux │ │ └── stamp-h1 │ ├── codegear │ │ ├── gtest.cbproj │ │ ├── gtest.groupproj │ │ ├── gtest_all.cc │ │ ├── gtest_link.cc │ │ ├── gtest_main.cbproj │ │ └── gtest_unittest.cbproj │ ├── configure.ac │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-param-test.h.pump │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ ├── m4 │ │ ├── acx_pthread.m4 │ │ └── gtest.m4 │ ├── make │ │ └── Makefile │ ├── msvc │ │ ├── gtest.sln │ │ ├── gtest.vcproj │ │ ├── gtest_color_test_.vcproj │ │ ├── gtest_env_var_test_.vcproj │ │ ├── gtest_environment_test.vcproj │ │ ├── gtest_main.vcproj │ │ ├── gtest_output_test_.vcproj │ │ ├── gtest_prod_test.vcproj │ │ ├── gtest_uninitialized_test_.vcproj │ │ └── gtest_unittest.vcproj │ ├── samples │ │ ├── .deps │ │ │ ├── sample1.Plo │ │ │ ├── sample1_unittest.Po │ │ │ ├── sample2.Plo │ │ │ ├── sample2_unittest.Po │ │ │ ├── sample3_unittest.Po │ │ │ ├── sample4.Plo │ │ │ ├── sample4_unittest.Po │ │ │ ├── sample5_unittest.Po │ │ │ ├── sample6_unittest.Po │ │ │ ├── sample7_unittest.Po │ │ │ └── sample8_unittest.Po │ │ ├── prime_tables.h │ │ ├── sample1.cc │ │ ├── sample1.h │ │ ├── sample1_unittest.cc │ │ ├── sample2.cc │ │ ├── sample2.h │ │ ├── sample2_unittest.cc │ │ ├── sample3-inl.h │ │ ├── sample3_unittest.cc │ │ ├── sample4.cc │ │ ├── sample4.h │ │ ├── sample4_unittest.cc │ │ ├── sample5_unittest.cc │ │ ├── sample6_unittest.cc │ │ ├── sample7_unittest.cc │ │ └── sample8_unittest.cc │ ├── scons │ │ └── SConscript │ ├── scripts │ │ ├── fuse_gtest_files.py │ │ ├── gen_gtest_pred_impl.py │ │ ├── gtest-config │ │ ├── gtest-config.in │ │ └── test │ │ │ └── Makefile │ ├── src │ │ ├── .deps │ │ │ ├── gtest-death-test.Plo │ │ │ ├── gtest-filepath.Plo │ │ │ ├── gtest-port.Plo │ │ │ ├── gtest-test-part.Plo │ │ │ ├── gtest-typed-test.Plo │ │ │ ├── gtest.Plo │ │ │ ├── gtest_main.Plo │ │ │ ├── test_gtest_no_rtti_test-gtest-all.Po │ │ │ ├── test_gtest_no_rtti_test-gtest_main.Po │ │ │ ├── test_gtest_throw_on_failure_ex_test-gtest-all.Po │ │ │ ├── test_gtest_throw_on_failure_test_-gtest-all.Po │ │ │ ├── test_gtest_tuple_test-gtest-all.Po │ │ │ ├── test_gtest_tuple_test-gtest_main.Po │ │ │ └── test_gtest_use_own_tuple_test-gtest-all.Po │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-port.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc │ ├── test │ │ ├── .deps │ │ │ ├── gtest-filepath_test.Po │ │ │ ├── gtest-linked_ptr_test.Po │ │ │ ├── gtest-message_test.Po │ │ │ ├── gtest-options_test.Po │ │ │ ├── gtest-param-test2_test.Po │ │ │ ├── gtest-param-test_test.Po │ │ │ ├── gtest-port_test.Po │ │ │ ├── gtest-test-part_test.Po │ │ │ ├── gtest-typed-test2_test.Po │ │ │ ├── gtest-typed-test_test.Po │ │ │ ├── gtest-unittest-api_test.Po │ │ │ ├── gtest_break_on_failure_unittest_.Po │ │ │ ├── gtest_color_test_.Po │ │ │ ├── gtest_env_var_test_.Po │ │ │ ├── gtest_environment_test.Po │ │ │ ├── gtest_filter_unittest_.Po │ │ │ ├── gtest_help_test_.Po │ │ │ ├── gtest_list_tests_unittest_.Po │ │ │ ├── gtest_main_unittest.Po │ │ │ ├── gtest_no_test_unittest.Po │ │ │ ├── gtest_output_test_.Po │ │ │ ├── gtest_pred_impl_unittest.Po │ │ │ ├── gtest_prod_test.Po │ │ │ ├── gtest_repeat_test.Po │ │ │ ├── gtest_sole_header_test.Po │ │ │ ├── gtest_stress_test.Po │ │ │ ├── gtest_uninitialized_test_.Po │ │ │ ├── gtest_unittest.Po │ │ │ ├── gtest_xml_outfile1_test_.Po │ │ │ ├── gtest_xml_outfile2_test_.Po │ │ │ ├── gtest_xml_output_unittest_.Po │ │ │ ├── production.Po │ │ │ ├── test_gtest_death_test_test-gtest-death-test_test.Po │ │ │ ├── test_gtest_no_rtti_test-gtest_unittest.Po │ │ │ ├── test_gtest_throw_on_failure_ex_test-gtest_throw_on_failure_ex_test.Po │ │ │ ├── test_gtest_throw_on_failure_test_-gtest_throw_on_failure_test_.Po │ │ │ ├── test_gtest_tuple_test-gtest-tuple_test.Po │ │ │ ├── test_gtest_use_own_tuple_test-gtest-param-test2_test.Po │ │ │ └── test_gtest_use_own_tuple_test-gtest-param-test_test.Po │ │ ├── gtest-death-test_test.cc │ │ ├── gtest-filepath_test.cc │ │ ├── gtest-linked_ptr_test.cc │ │ ├── gtest-message_test.cc │ │ ├── gtest-options_test.cc │ │ ├── gtest-param-test2_test.cc │ │ ├── gtest-param-test_test.cc │ │ ├── gtest-param-test_test.h │ │ ├── gtest-port_test.cc │ │ ├── gtest-test-part_test.cc │ │ ├── gtest-tuple_test.cc │ │ ├── gtest-typed-test2_test.cc │ │ ├── gtest-typed-test_test.cc │ │ ├── gtest-typed-test_test.h │ │ ├── gtest-unittest-api_test.cc │ │ ├── gtest_all_test.cc │ │ ├── gtest_break_on_failure_unittest.py │ │ ├── gtest_break_on_failure_unittest_.cc │ │ ├── gtest_color_test.py │ │ ├── gtest_color_test_.cc │ │ ├── gtest_env_var_test.py │ │ ├── gtest_env_var_test_.cc │ │ ├── gtest_environment_test.cc │ │ ├── gtest_filter_unittest.py │ │ ├── gtest_filter_unittest_.cc │ │ ├── gtest_help_test.py │ │ ├── gtest_help_test_.cc │ │ ├── gtest_list_tests_unittest.py │ │ ├── gtest_list_tests_unittest_.cc │ │ ├── gtest_main_unittest.cc │ │ ├── gtest_nc.cc │ │ ├── gtest_nc_test.py │ │ ├── gtest_no_test_unittest.cc │ │ ├── gtest_output_test.py │ │ ├── gtest_output_test_.cc │ │ ├── gtest_output_test_golden_lin.txt │ │ ├── gtest_output_test_golden_win.txt │ │ ├── gtest_pred_impl_unittest.cc │ │ ├── gtest_prod_test.cc │ │ ├── gtest_repeat_test.cc │ │ ├── gtest_sole_header_test.cc │ │ ├── gtest_stress_test.cc │ │ ├── gtest_test_utils.py │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ ├── gtest_throw_on_failure_test.py │ │ ├── gtest_throw_on_failure_test_.cc │ │ ├── gtest_uninitialized_test.py │ │ ├── gtest_uninitialized_test_.cc │ │ ├── gtest_unittest.cc │ │ ├── gtest_xml_outfile1_test_.cc │ │ ├── gtest_xml_outfile2_test_.cc │ │ ├── gtest_xml_outfiles_test.py │ │ ├── gtest_xml_output_unittest.py │ │ ├── gtest_xml_output_unittest_.cc │ │ ├── gtest_xml_test_utils.py │ │ ├── production.cc │ │ └── production.h │ └── xcode │ │ ├── Config │ │ ├── DebugProject.xcconfig │ │ ├── FrameworkTarget.xcconfig │ │ ├── General.xcconfig │ │ ├── InternalPythonTestTarget.xcconfig │ │ ├── InternalTestTarget.xcconfig │ │ ├── ReleaseProject.xcconfig │ │ └── TestTarget.xcconfig │ │ ├── Resources │ │ └── Info.plist │ │ ├── Samples │ │ └── FrameworkSample │ │ │ ├── Info.plist │ │ │ ├── WidgetFramework.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── widget.cc │ │ │ ├── widget.h │ │ │ └── widget_test.cc │ │ ├── Scripts │ │ ├── runtests.sh │ │ └── versiongenerate.py │ │ └── gtest.xcodeproj │ │ └── project.pbxproj ├── java │ ├── README.txt │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── protobuf │ │ │ ├── AbstractMessage.java │ │ │ ├── AbstractMessageLite.java │ │ │ ├── BlockingRpcChannel.java │ │ │ ├── BlockingService.java │ │ │ ├── ByteString.java │ │ │ ├── CodedInputStream.java │ │ │ ├── CodedOutputStream.java │ │ │ ├── DescriptorProtos.java │ │ │ ├── Descriptors.java │ │ │ ├── DynamicMessage.java │ │ │ ├── ExtensionRegistry.java │ │ │ ├── ExtensionRegistryLite.java │ │ │ ├── FieldSet.java │ │ │ ├── GeneratedMessage.java │ │ │ ├── GeneratedMessageLite.java │ │ │ ├── Internal.java │ │ │ ├── InvalidProtocolBufferException.java │ │ │ ├── Message.java │ │ │ ├── MessageLite.java │ │ │ ├── ProtocolMessageEnum.java │ │ │ ├── RpcCallback.java │ │ │ ├── RpcChannel.java │ │ │ ├── RpcController.java │ │ │ ├── RpcUtil.java │ │ │ ├── Service.java │ │ │ ├── ServiceException.java │ │ │ ├── TextFormat.java │ │ │ ├── UninitializedMessageException.java │ │ │ ├── UnknownFieldSet.java │ │ │ └── WireFormat.java │ │ └── test │ │ └── java │ │ └── com │ │ └── google │ │ └── protobuf │ │ ├── AbstractMessageTest.java │ │ ├── CodedInputStreamTest.java │ │ ├── CodedOutputStreamTest.java │ │ ├── DescriptorsTest.java │ │ ├── DynamicMessageTest.java │ │ ├── GeneratedMessageTest.java │ │ ├── LiteTest.java │ │ ├── MessageTest.java │ │ ├── ServiceTest.java │ │ ├── TestUtil.java │ │ ├── TextFormatTest.java │ │ ├── UnknownFieldSetTest.java │ │ ├── WireFormatTest.java │ │ └── multiple_files_test.proto ├── m4 │ ├── ac_system_extensions.m4 │ ├── acx_check_suncc.m4 │ ├── acx_pthread.m4 │ └── stl_hash.m4 ├── protobuf-lite.pc ├── protobuf-lite.pc.in ├── protobuf.pc ├── protobuf.pc.in ├── python │ ├── README.txt │ ├── ez_setup.py │ ├── google │ │ ├── __init__.py │ │ └── protobuf │ │ │ ├── __init__.py │ │ │ ├── descriptor.py │ │ │ ├── internal │ │ │ ├── __init__.py │ │ │ ├── containers.py │ │ │ ├── decoder.py │ │ │ ├── decoder_test.py │ │ │ ├── descriptor_test.py │ │ │ ├── encoder.py │ │ │ ├── encoder_test.py │ │ │ ├── generator_test.py │ │ │ ├── input_stream.py │ │ │ ├── input_stream_test.py │ │ │ ├── message_listener.py │ │ │ ├── message_test.py │ │ │ ├── more_extensions.proto │ │ │ ├── more_messages.proto │ │ │ ├── output_stream.py │ │ │ ├── output_stream_test.py │ │ │ ├── reflection_test.py │ │ │ ├── service_reflection_test.py │ │ │ ├── test_util.py │ │ │ ├── text_format_test.py │ │ │ ├── type_checkers.py │ │ │ ├── wire_format.py │ │ │ └── wire_format_test.py │ │ │ ├── message.py │ │ │ ├── reflection.py │ │ │ ├── service.py │ │ │ ├── service_reflection.py │ │ │ └── text_format.py │ ├── mox.py │ ├── setup.py │ └── stubout.py ├── src │ ├── Makefile.am │ └── google │ │ └── protobuf │ │ ├── compiler │ │ ├── code_generator.cc │ │ ├── code_generator.h │ │ ├── command_line_interface.cc │ │ ├── command_line_interface.h │ │ ├── command_line_interface_unittest.cc │ │ ├── cpp │ │ │ ├── cpp_bootstrap_unittest.cc │ │ │ ├── cpp_enum.cc │ │ │ ├── cpp_enum.h │ │ │ ├── cpp_enum_field.cc │ │ │ ├── cpp_enum_field.h │ │ │ ├── cpp_extension.cc │ │ │ ├── cpp_extension.h │ │ │ ├── cpp_field.cc │ │ │ ├── cpp_field.h │ │ │ ├── cpp_file.cc │ │ │ ├── cpp_file.h │ │ │ ├── cpp_generator.cc │ │ │ ├── cpp_generator.h │ │ │ ├── cpp_helpers.cc │ │ │ ├── cpp_helpers.h │ │ │ ├── cpp_message.cc │ │ │ ├── cpp_message.h │ │ │ ├── cpp_message_field.cc │ │ │ ├── cpp_message_field.h │ │ │ ├── cpp_primitive_field.cc │ │ │ ├── cpp_primitive_field.h │ │ │ ├── cpp_service.cc │ │ │ ├── cpp_service.h │ │ │ ├── cpp_string_field.cc │ │ │ ├── cpp_string_field.h │ │ │ ├── cpp_test_bad_identifiers.proto │ │ │ └── cpp_unittest.cc │ │ ├── importer.cc │ │ ├── importer.h │ │ ├── importer_unittest.cc │ │ ├── java │ │ │ ├── java_enum.cc │ │ │ ├── java_enum.h │ │ │ ├── java_enum_field.cc │ │ │ ├── java_enum_field.h │ │ │ ├── java_extension.cc │ │ │ ├── java_extension.h │ │ │ ├── java_field.cc │ │ │ ├── java_field.h │ │ │ ├── java_file.cc │ │ │ ├── java_file.h │ │ │ ├── java_generator.cc │ │ │ ├── java_generator.h │ │ │ ├── java_helpers.cc │ │ │ ├── java_helpers.h │ │ │ ├── java_message.cc │ │ │ ├── java_message.h │ │ │ ├── java_message_field.cc │ │ │ ├── java_message_field.h │ │ │ ├── java_primitive_field.cc │ │ │ ├── java_primitive_field.h │ │ │ ├── java_service.cc │ │ │ └── java_service.h │ │ ├── main.cc │ │ ├── objectivec │ │ │ ├── objectivec_enum.cc │ │ │ ├── objectivec_enum.h │ │ │ ├── objectivec_enum_field.cc │ │ │ ├── objectivec_enum_field.h │ │ │ ├── objectivec_extension.cc │ │ │ ├── objectivec_extension.h │ │ │ ├── objectivec_field.cc │ │ │ ├── objectivec_field.h │ │ │ ├── objectivec_file.cc │ │ │ ├── objectivec_file.h │ │ │ ├── objectivec_generator.cc │ │ │ ├── objectivec_generator.h │ │ │ ├── objectivec_helpers.cc │ │ │ ├── objectivec_helpers.h │ │ │ ├── objectivec_message.cc │ │ │ ├── objectivec_message.h │ │ │ ├── objectivec_message_field.cc │ │ │ ├── objectivec_message_field.h │ │ │ ├── objectivec_primitive_field.cc │ │ │ └── objectivec_primitive_field.h │ │ ├── package_info.h │ │ ├── parser.cc │ │ ├── parser.h │ │ ├── parser_unittest.cc │ │ └── python │ │ │ ├── python_generator.cc │ │ │ └── python_generator.h │ │ ├── descriptor.cc │ │ ├── descriptor.h │ │ ├── descriptor.pb.cc │ │ ├── descriptor.pb.h │ │ ├── descriptor.proto │ │ ├── descriptor_database.cc │ │ ├── descriptor_database.h │ │ ├── descriptor_database_unittest.cc │ │ ├── descriptor_unittest.cc │ │ ├── dynamic_message.cc │ │ ├── dynamic_message.h │ │ ├── dynamic_message_unittest.cc │ │ ├── extension_set.cc │ │ ├── extension_set.h │ │ ├── extension_set_heavy.cc │ │ ├── extension_set_unittest.cc │ │ ├── generated_message_reflection.cc │ │ ├── generated_message_reflection.h │ │ ├── generated_message_reflection_unittest.cc │ │ ├── generated_message_util.cc │ │ ├── generated_message_util.h │ │ ├── io │ │ ├── coded_stream.cc │ │ ├── coded_stream.h │ │ ├── coded_stream_unittest.cc │ │ ├── gzip_stream.cc │ │ ├── gzip_stream.h │ │ ├── gzip_stream_unittest.sh │ │ ├── package_info.h │ │ ├── printer.cc │ │ ├── printer.h │ │ ├── printer_unittest.cc │ │ ├── tokenizer.cc │ │ ├── tokenizer.h │ │ ├── tokenizer_unittest.cc │ │ ├── zero_copy_stream.cc │ │ ├── zero_copy_stream.h │ │ ├── zero_copy_stream_impl.cc │ │ ├── zero_copy_stream_impl.h │ │ ├── zero_copy_stream_impl_lite.cc │ │ ├── zero_copy_stream_impl_lite.h │ │ └── zero_copy_stream_unittest.cc │ │ ├── lite_unittest.cc │ │ ├── message.cc │ │ ├── message.h │ │ ├── message_lite.cc │ │ ├── message_lite.h │ │ ├── message_unittest.cc │ │ ├── objectivec-descriptor.pb.cc │ │ ├── objectivec-descriptor.pb.h │ │ ├── objectivec-descriptor.proto │ │ ├── package_info.h │ │ ├── reflection_ops.cc │ │ ├── reflection_ops.h │ │ ├── reflection_ops_unittest.cc │ │ ├── repeated_field.cc │ │ ├── repeated_field.h │ │ ├── repeated_field_unittest.cc │ │ ├── service.cc │ │ ├── service.h │ │ ├── stubs │ │ ├── common.cc │ │ ├── common.h │ │ ├── common_unittest.cc │ │ ├── hash.cc │ │ ├── hash.h │ │ ├── map-util.h │ │ ├── once.cc │ │ ├── once.h │ │ ├── once_unittest.cc │ │ ├── stl_util-inl.h │ │ ├── structurally_valid.cc │ │ ├── structurally_valid_unittest.cc │ │ ├── strutil.cc │ │ ├── strutil.h │ │ ├── strutil_unittest.cc │ │ ├── substitute.cc │ │ └── substitute.h │ │ ├── test_util.cc │ │ ├── test_util.h │ │ ├── test_util_lite.cc │ │ ├── test_util_lite.h │ │ ├── testdata │ │ ├── golden_message │ │ ├── golden_packed_fields_message │ │ ├── text_format_unittest_data.txt │ │ └── text_format_unittest_extensions_data.txt │ │ ├── testing │ │ ├── file.cc │ │ ├── file.h │ │ ├── googletest.cc │ │ ├── googletest.h │ │ ├── zcgunzip.cc │ │ └── zcgzip.cc │ │ ├── text_format.cc │ │ ├── text_format.h │ │ ├── text_format_unittest.cc │ │ ├── unittest.proto │ │ ├── unittest_custom_options.proto │ │ ├── unittest_embed_optimize_for.proto │ │ ├── unittest_empty.proto │ │ ├── unittest_enormous_descriptor.proto │ │ ├── unittest_import.proto │ │ ├── unittest_import_lite.proto │ │ ├── unittest_lite.proto │ │ ├── unittest_lite_imports_nonlite.proto │ │ ├── unittest_mset.proto │ │ ├── unittest_optimize_for.proto │ │ ├── unknown_field_set.cc │ │ ├── unknown_field_set.h │ │ ├── unknown_field_set_unittest.cc │ │ ├── wire_format.cc │ │ ├── wire_format.h │ │ ├── wire_format_lite.cc │ │ ├── wire_format_lite.h │ │ ├── wire_format_lite_inl.h │ │ └── wire_format_unittest.cc ├── stamp-h1 └── vsprojects │ ├── config.h │ ├── convert2008to2005.sh │ ├── extract_includes.bat │ ├── libprotobuf-lite.vcproj │ ├── libprotobuf.vcproj │ ├── libprotoc.vcproj │ ├── lite-test.vcproj │ ├── protobuf.sln │ ├── protoc.vcproj │ ├── readme.txt │ └── tests.vcproj ├── protobuf-ios.podspec └── runtime └── protobuf-ios ├── Classes ├── AbstractMessage.h ├── AbstractMessage.m ├── AbstractMessage_Builder.h ├── AbstractMessage_Builder.m ├── Bootstrap.h ├── CodedInputStream.h ├── CodedInputStream.m ├── CodedOutputStream.h ├── CodedOutputStream.m ├── ConcreteExtensionField.h ├── ConcreteExtensionField.m ├── Descriptor.pb.h ├── Descriptor.pb.m ├── ExtendableMessage.h ├── ExtendableMessage.m ├── ExtendableMessage_Builder.h ├── ExtendableMessage_Builder.m ├── ExtensionField.h ├── ExtensionRegistry.h ├── ExtensionRegistry.m ├── Field.h ├── Field.m ├── ForwardDeclarations.h ├── GeneratedMessage.h ├── GeneratedMessage.m ├── GeneratedMessage_Builder.h ├── GeneratedMessage_Builder.m ├── Message.h ├── Message_Builder.h ├── MutableExtensionRegistry.h ├── MutableExtensionRegistry.m ├── MutableField.h ├── MutableField.m ├── PBArray.h ├── PBArray.m ├── ProtocolBuffers.h ├── RingBuffer.h ├── RingBuffer.m ├── TextFormat.h ├── TextFormat.m ├── UnknownFieldSet.h ├── UnknownFieldSet.m ├── UnknownFieldSet_Builder.h ├── UnknownFieldSet_Builder.m ├── Utilities.h ├── Utilities.m ├── WireFormat.h ├── WireFormat.m └── protobuf-ios-Prefix.pch ├── protobuf-ios.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcshareddata │ └── xcschemes │ │ ├── protobuf-ios.xcscheme │ │ └── protobuf-iosTests.xcscheme └── xcuserdata │ └── chenming.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── protobuf-iosTests ├── en.lproj └── InfoPlist.strings └── protobuf-iosTests-Info.plist /.gitattributes: -------------------------------------------------------------------------------- 1 | linguist-vendored=compiler/ 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.3.2 2 | -------------------------------------------------------------------------------- /compiler/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/CHANGES.txt -------------------------------------------------------------------------------- /compiler/CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /compiler/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/COPYING.txt -------------------------------------------------------------------------------- /compiler/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/INSTALL.txt -------------------------------------------------------------------------------- /compiler/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/Makefile.am -------------------------------------------------------------------------------- /compiler/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/README.txt -------------------------------------------------------------------------------- /compiler/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/autogen.sh -------------------------------------------------------------------------------- /compiler/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/configure.ac -------------------------------------------------------------------------------- /compiler/editors/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/editors/README.txt -------------------------------------------------------------------------------- /compiler/editors/proto.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/editors/proto.vim -------------------------------------------------------------------------------- /compiler/editors/protobuf-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/editors/protobuf-mode.el -------------------------------------------------------------------------------- /compiler/examples/AddPerson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/examples/AddPerson.java -------------------------------------------------------------------------------- /compiler/examples/ListPeople.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/examples/ListPeople.java -------------------------------------------------------------------------------- /compiler/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/examples/Makefile -------------------------------------------------------------------------------- /compiler/examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/examples/README.txt -------------------------------------------------------------------------------- /compiler/examples/add_person.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/examples/add_person.cc -------------------------------------------------------------------------------- /compiler/examples/add_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/examples/add_person.py -------------------------------------------------------------------------------- /compiler/examples/addressbook.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/examples/addressbook.proto -------------------------------------------------------------------------------- /compiler/examples/list_people.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/examples/list_people.cc -------------------------------------------------------------------------------- /compiler/examples/list_people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/examples/list_people.py -------------------------------------------------------------------------------- /compiler/generate_descriptor_proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/generate_descriptor_proto.sh -------------------------------------------------------------------------------- /compiler/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/CHANGES -------------------------------------------------------------------------------- /compiler/gtest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/CONTRIBUTORS -------------------------------------------------------------------------------- /compiler/gtest/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/COPYING -------------------------------------------------------------------------------- /compiler/gtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/Makefile.am -------------------------------------------------------------------------------- /compiler/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/README -------------------------------------------------------------------------------- /compiler/gtest/build-aux/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for build-aux/config.h 2 | -------------------------------------------------------------------------------- /compiler/gtest/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/codegear/gtest.cbproj -------------------------------------------------------------------------------- /compiler/gtest/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/codegear/gtest.groupproj -------------------------------------------------------------------------------- /compiler/gtest/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/codegear/gtest_all.cc -------------------------------------------------------------------------------- /compiler/gtest/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/codegear/gtest_link.cc -------------------------------------------------------------------------------- /compiler/gtest/codegear/gtest_main.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/codegear/gtest_main.cbproj -------------------------------------------------------------------------------- /compiler/gtest/codegear/gtest_unittest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/codegear/gtest_unittest.cbproj -------------------------------------------------------------------------------- /compiler/gtest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/configure.ac -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /compiler/gtest/include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /compiler/gtest/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /compiler/gtest/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/m4/gtest.m4 -------------------------------------------------------------------------------- /compiler/gtest/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/make/Makefile -------------------------------------------------------------------------------- /compiler/gtest/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/msvc/gtest.sln -------------------------------------------------------------------------------- /compiler/gtest/msvc/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/msvc/gtest.vcproj -------------------------------------------------------------------------------- /compiler/gtest/msvc/gtest_color_test_.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/msvc/gtest_color_test_.vcproj -------------------------------------------------------------------------------- /compiler/gtest/msvc/gtest_env_var_test_.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/msvc/gtest_env_var_test_.vcproj -------------------------------------------------------------------------------- /compiler/gtest/msvc/gtest_environment_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/msvc/gtest_environment_test.vcproj -------------------------------------------------------------------------------- /compiler/gtest/msvc/gtest_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/msvc/gtest_main.vcproj -------------------------------------------------------------------------------- /compiler/gtest/msvc/gtest_output_test_.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/msvc/gtest_output_test_.vcproj -------------------------------------------------------------------------------- /compiler/gtest/msvc/gtest_prod_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/msvc/gtest_prod_test.vcproj -------------------------------------------------------------------------------- /compiler/gtest/msvc/gtest_uninitialized_test_.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/msvc/gtest_uninitialized_test_.vcproj -------------------------------------------------------------------------------- /compiler/gtest/msvc/gtest_unittest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/msvc/gtest_unittest.vcproj -------------------------------------------------------------------------------- /compiler/gtest/samples/.deps/sample1.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/samples/.deps/sample1_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/samples/.deps/sample2.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/samples/.deps/sample2_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/samples/.deps/sample3_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/samples/.deps/sample4.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/samples/.deps/sample4_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/samples/.deps/sample5_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/samples/.deps/sample6_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/samples/.deps/sample7_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/samples/.deps/sample8_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/samples/prime_tables.h -------------------------------------------------------------------------------- /compiler/gtest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/samples/sample1.cc -------------------------------------------------------------------------------- /compiler/gtest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/samples/sample1.h -------------------------------------------------------------------------------- /compiler/gtest/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /compiler/gtest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/samples/sample2.cc -------------------------------------------------------------------------------- /compiler/gtest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/samples/sample2.h -------------------------------------------------------------------------------- /compiler/gtest/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /compiler/gtest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/samples/sample3-inl.h -------------------------------------------------------------------------------- /compiler/gtest/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /compiler/gtest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/samples/sample4.cc -------------------------------------------------------------------------------- /compiler/gtest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/samples/sample4.h -------------------------------------------------------------------------------- /compiler/gtest/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /compiler/gtest/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /compiler/gtest/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /compiler/gtest/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /compiler/gtest/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /compiler/gtest/scons/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/scons/SConscript -------------------------------------------------------------------------------- /compiler/gtest/scripts/fuse_gtest_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/scripts/fuse_gtest_files.py -------------------------------------------------------------------------------- /compiler/gtest/scripts/gen_gtest_pred_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/scripts/gen_gtest_pred_impl.py -------------------------------------------------------------------------------- /compiler/gtest/scripts/gtest-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/scripts/gtest-config -------------------------------------------------------------------------------- /compiler/gtest/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/scripts/gtest-config.in -------------------------------------------------------------------------------- /compiler/gtest/scripts/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/scripts/test/Makefile -------------------------------------------------------------------------------- /compiler/gtest/src/.deps/gtest-death-test.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/src/.deps/gtest-filepath.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/src/.deps/gtest-port.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/src/.deps/gtest-test-part.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/src/.deps/gtest-typed-test.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/src/.deps/gtest.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/src/.deps/gtest_main.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/src/.deps/test_gtest_no_rtti_test-gtest-all.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/src/.deps/test_gtest_no_rtti_test-gtest_main.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/src/.deps/test_gtest_throw_on_failure_ex_test-gtest-all.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/src/.deps/test_gtest_throw_on_failure_test_-gtest-all.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/src/.deps/test_gtest_tuple_test-gtest-all.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/src/.deps/test_gtest_tuple_test-gtest_main.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/src/.deps/test_gtest_use_own_tuple_test-gtest-all.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /compiler/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /compiler/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /compiler/gtest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /compiler/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /compiler/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /compiler/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /compiler/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/src/gtest.cc -------------------------------------------------------------------------------- /compiler/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest-filepath_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest-linked_ptr_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest-message_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest-options_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest-param-test2_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest-param-test_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest-port_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest-test-part_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest-typed-test2_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest-typed-test_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest-unittest-api_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_break_on_failure_unittest_.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_color_test_.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_env_var_test_.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_environment_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_filter_unittest_.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_help_test_.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_list_tests_unittest_.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_main_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_no_test_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_output_test_.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_pred_impl_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_prod_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_repeat_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_sole_header_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_stress_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_uninitialized_test_.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_xml_outfile1_test_.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_xml_outfile2_test_.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/gtest_xml_output_unittest_.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/production.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/test_gtest_death_test_test-gtest-death-test_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/test_gtest_no_rtti_test-gtest_unittest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/test_gtest_throw_on_failure_ex_test-gtest_throw_on_failure_ex_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/test_gtest_throw_on_failure_test_-gtest_throw_on_failure_test_.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/test_gtest_tuple_test-gtest-tuple_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/test_gtest_use_own_tuple_test-gtest-param-test2_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/.deps/test_gtest_use_own_tuple_test-gtest-param-test_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /compiler/gtest/test/gtest-death-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest-death-test_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest-filepath_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest-filepath_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest-linked_ptr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest-linked_ptr_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest-message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest-message_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest-options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest-options_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest-param-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest-param-test2_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest-param-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest-param-test_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest-param-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest-param-test_test.h -------------------------------------------------------------------------------- /compiler/gtest/test/gtest-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest-port_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest-test-part_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest-test-part_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest-tuple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest-tuple_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest-typed-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest-typed-test2_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest-typed-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest-typed-test_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /compiler/gtest/test/gtest-unittest-api_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest-unittest-api_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_all_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_break_on_failure_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_break_on_failure_unittest.py -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_break_on_failure_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_break_on_failure_unittest_.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_color_test.py -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_color_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_color_test_.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_env_var_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_env_var_test.py -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_env_var_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_env_var_test_.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_environment_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_environment_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_filter_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_filter_unittest.py -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_filter_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_filter_unittest_.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_help_test.py -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_list_tests_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_list_tests_unittest.py -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_list_tests_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_list_tests_unittest_.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_nc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_nc.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_nc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_nc_test.py -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_no_test_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_no_test_unittest.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_output_test.py -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_output_test_.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_output_test_golden_lin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_output_test_golden_lin.txt -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_output_test_golden_win.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_output_test_golden_win.txt -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_pred_impl_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_pred_impl_unittest.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_sole_header_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_sole_header_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_test_utils.py -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_throw_on_failure_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_throw_on_failure_ex_test.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_throw_on_failure_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_throw_on_failure_test.py -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_throw_on_failure_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_throw_on_failure_test_.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_uninitialized_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_uninitialized_test.py -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_uninitialized_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_uninitialized_test_.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_unittest.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_xml_outfile1_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_xml_outfile1_test_.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_xml_outfile2_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_xml_outfile2_test_.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_xml_outfiles_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_xml_outfiles_test.py -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_xml_output_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_xml_output_unittest.py -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_xml_output_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_xml_output_unittest_.cc -------------------------------------------------------------------------------- /compiler/gtest/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /compiler/gtest/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/production.cc -------------------------------------------------------------------------------- /compiler/gtest/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/test/production.h -------------------------------------------------------------------------------- /compiler/gtest/xcode/Config/DebugProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/xcode/Config/DebugProject.xcconfig -------------------------------------------------------------------------------- /compiler/gtest/xcode/Config/FrameworkTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/xcode/Config/FrameworkTarget.xcconfig -------------------------------------------------------------------------------- /compiler/gtest/xcode/Config/General.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/xcode/Config/General.xcconfig -------------------------------------------------------------------------------- /compiler/gtest/xcode/Config/InternalPythonTestTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/xcode/Config/InternalPythonTestTarget.xcconfig -------------------------------------------------------------------------------- /compiler/gtest/xcode/Config/InternalTestTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/xcode/Config/InternalTestTarget.xcconfig -------------------------------------------------------------------------------- /compiler/gtest/xcode/Config/ReleaseProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/xcode/Config/ReleaseProject.xcconfig -------------------------------------------------------------------------------- /compiler/gtest/xcode/Config/TestTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/xcode/Config/TestTarget.xcconfig -------------------------------------------------------------------------------- /compiler/gtest/xcode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/xcode/Resources/Info.plist -------------------------------------------------------------------------------- /compiler/gtest/xcode/Samples/FrameworkSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/xcode/Samples/FrameworkSample/Info.plist -------------------------------------------------------------------------------- /compiler/gtest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /compiler/gtest/xcode/Samples/FrameworkSample/widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/xcode/Samples/FrameworkSample/widget.cc -------------------------------------------------------------------------------- /compiler/gtest/xcode/Samples/FrameworkSample/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/xcode/Samples/FrameworkSample/widget.h -------------------------------------------------------------------------------- /compiler/gtest/xcode/Samples/FrameworkSample/widget_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/xcode/Samples/FrameworkSample/widget_test.cc -------------------------------------------------------------------------------- /compiler/gtest/xcode/Scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/xcode/Scripts/runtests.sh -------------------------------------------------------------------------------- /compiler/gtest/xcode/Scripts/versiongenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/xcode/Scripts/versiongenerate.py -------------------------------------------------------------------------------- /compiler/gtest/xcode/gtest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/gtest/xcode/gtest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /compiler/java/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/README.txt -------------------------------------------------------------------------------- /compiler/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/pom.xml -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/AbstractMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/AbstractMessage.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/AbstractMessageLite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/AbstractMessageLite.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/BlockingRpcChannel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/BlockingRpcChannel.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/BlockingService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/BlockingService.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/ByteString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/ByteString.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/CodedInputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/CodedInputStream.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/CodedOutputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/CodedOutputStream.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/DescriptorProtos.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/DescriptorProtos.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/Descriptors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/Descriptors.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/DynamicMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/DynamicMessage.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/ExtensionRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/ExtensionRegistry.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/FieldSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/FieldSet.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/GeneratedMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/GeneratedMessage.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/Internal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/Internal.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/Message.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/MessageLite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/MessageLite.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/RpcCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/RpcCallback.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/RpcChannel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/RpcChannel.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/RpcController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/RpcController.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/RpcUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/RpcUtil.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/Service.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/ServiceException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/ServiceException.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/TextFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/TextFormat.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/UninitializedMessageException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/UninitializedMessageException.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/UnknownFieldSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/UnknownFieldSet.java -------------------------------------------------------------------------------- /compiler/java/src/main/java/com/google/protobuf/WireFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/main/java/com/google/protobuf/WireFormat.java -------------------------------------------------------------------------------- /compiler/java/src/test/java/com/google/protobuf/AbstractMessageTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/test/java/com/google/protobuf/AbstractMessageTest.java -------------------------------------------------------------------------------- /compiler/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java -------------------------------------------------------------------------------- /compiler/java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java -------------------------------------------------------------------------------- /compiler/java/src/test/java/com/google/protobuf/DescriptorsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/test/java/com/google/protobuf/DescriptorsTest.java -------------------------------------------------------------------------------- /compiler/java/src/test/java/com/google/protobuf/DynamicMessageTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/test/java/com/google/protobuf/DynamicMessageTest.java -------------------------------------------------------------------------------- /compiler/java/src/test/java/com/google/protobuf/GeneratedMessageTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/test/java/com/google/protobuf/GeneratedMessageTest.java -------------------------------------------------------------------------------- /compiler/java/src/test/java/com/google/protobuf/LiteTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/test/java/com/google/protobuf/LiteTest.java -------------------------------------------------------------------------------- /compiler/java/src/test/java/com/google/protobuf/MessageTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/test/java/com/google/protobuf/MessageTest.java -------------------------------------------------------------------------------- /compiler/java/src/test/java/com/google/protobuf/ServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/test/java/com/google/protobuf/ServiceTest.java -------------------------------------------------------------------------------- /compiler/java/src/test/java/com/google/protobuf/TestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/test/java/com/google/protobuf/TestUtil.java -------------------------------------------------------------------------------- /compiler/java/src/test/java/com/google/protobuf/TextFormatTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/test/java/com/google/protobuf/TextFormatTest.java -------------------------------------------------------------------------------- /compiler/java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java -------------------------------------------------------------------------------- /compiler/java/src/test/java/com/google/protobuf/WireFormatTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/test/java/com/google/protobuf/WireFormatTest.java -------------------------------------------------------------------------------- /compiler/java/src/test/java/com/google/protobuf/multiple_files_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/java/src/test/java/com/google/protobuf/multiple_files_test.proto -------------------------------------------------------------------------------- /compiler/m4/ac_system_extensions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/m4/ac_system_extensions.m4 -------------------------------------------------------------------------------- /compiler/m4/acx_check_suncc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/m4/acx_check_suncc.m4 -------------------------------------------------------------------------------- /compiler/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /compiler/m4/stl_hash.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/m4/stl_hash.m4 -------------------------------------------------------------------------------- /compiler/protobuf-lite.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/protobuf-lite.pc -------------------------------------------------------------------------------- /compiler/protobuf-lite.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/protobuf-lite.pc.in -------------------------------------------------------------------------------- /compiler/protobuf.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/protobuf.pc -------------------------------------------------------------------------------- /compiler/protobuf.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/protobuf.pc.in -------------------------------------------------------------------------------- /compiler/python/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/README.txt -------------------------------------------------------------------------------- /compiler/python/ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/ez_setup.py -------------------------------------------------------------------------------- /compiler/python/google/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/__init__.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/python/google/protobuf/descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/descriptor.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/containers.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/decoder.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/decoder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/decoder_test.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/descriptor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/descriptor_test.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/encoder.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/encoder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/encoder_test.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/generator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/generator_test.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/input_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/input_stream.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/input_stream_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/input_stream_test.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/message_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/message_listener.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/message_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/message_test.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/more_extensions.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/more_extensions.proto -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/more_messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/more_messages.proto -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/output_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/output_stream.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/output_stream_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/output_stream_test.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/reflection_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/reflection_test.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/service_reflection_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/service_reflection_test.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/test_util.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/text_format_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/text_format_test.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/type_checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/type_checkers.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/wire_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/wire_format.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/internal/wire_format_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/internal/wire_format_test.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/message.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/reflection.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/service.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/service_reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/service_reflection.py -------------------------------------------------------------------------------- /compiler/python/google/protobuf/text_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/google/protobuf/text_format.py -------------------------------------------------------------------------------- /compiler/python/mox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/mox.py -------------------------------------------------------------------------------- /compiler/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/setup.py -------------------------------------------------------------------------------- /compiler/python/stubout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/python/stubout.py -------------------------------------------------------------------------------- /compiler/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/Makefile.am -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/code_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/code_generator.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/code_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/code_generator.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/command_line_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/command_line_interface.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/command_line_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/command_line_interface.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/command_line_interface_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/command_line_interface_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_enum.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_enum.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_enum_field.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_enum_field.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_extension.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_extension.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_extension.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_field.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_field.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_file.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_file.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_generator.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_generator.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_helpers.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_helpers.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_message.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_message.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_message_field.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_message_field.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_primitive_field.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_service.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_service.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_string_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_string_field.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_string_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_string_field.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/cpp/cpp_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/cpp/cpp_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/importer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/importer.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/importer.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/importer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/importer_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_enum.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_enum.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_enum_field.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_enum_field.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_extension.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_extension.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_extension.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_field.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_field.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_file.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_file.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_generator.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_generator.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_helpers.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_helpers.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_message.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_message.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_message_field.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_message_field.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_primitive_field.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_primitive_field.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_service.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/java/java_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/java/java_service.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/main.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_enum.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_enum.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_enum_field.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_extension.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_extension.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_extension.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_field.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_field.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_file.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_file.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_generator.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_generator.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_helpers.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_message.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_message.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_message_field.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/package_info.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/parser.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/parser.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/parser_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/parser_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/python/python_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/python/python_generator.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/compiler/python/python_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/compiler/python/python_generator.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/descriptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/descriptor.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/descriptor.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/descriptor.pb.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/descriptor.pb.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /compiler/src/google/protobuf/descriptor_database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/descriptor_database.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/descriptor_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/descriptor_database.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/descriptor_database_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/descriptor_database_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/descriptor_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/descriptor_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/dynamic_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/dynamic_message.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/dynamic_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/dynamic_message.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/dynamic_message_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/dynamic_message_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/extension_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/extension_set.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/extension_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/extension_set.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/extension_set_heavy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/extension_set_heavy.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/extension_set_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/extension_set_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/generated_message_reflection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/generated_message_reflection.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/generated_message_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/generated_message_reflection.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/generated_message_reflection_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/generated_message_reflection_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/generated_message_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/generated_message_util.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/generated_message_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/generated_message_util.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/coded_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/coded_stream.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/coded_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/coded_stream.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/coded_stream_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/coded_stream_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/gzip_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/gzip_stream.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/gzip_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/gzip_stream.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/gzip_stream_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/gzip_stream_unittest.sh -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/package_info.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/printer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/printer.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/printer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/printer_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/tokenizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/tokenizer.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/tokenizer.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/tokenizer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/tokenizer_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/zero_copy_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/zero_copy_stream.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/zero_copy_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/zero_copy_stream.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/zero_copy_stream_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/zero_copy_stream_impl.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/zero_copy_stream_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/zero_copy_stream_impl.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/zero_copy_stream_impl_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/zero_copy_stream_impl_lite.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/zero_copy_stream_impl_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/zero_copy_stream_impl_lite.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/io/zero_copy_stream_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/io/zero_copy_stream_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/lite_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/lite_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/message.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/message.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/message_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/message_lite.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/message_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/message_lite.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/message_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/message_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/objectivec-descriptor.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/objectivec-descriptor.pb.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/objectivec-descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/objectivec-descriptor.pb.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/objectivec-descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/objectivec-descriptor.proto -------------------------------------------------------------------------------- /compiler/src/google/protobuf/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/package_info.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/reflection_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/reflection_ops.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/reflection_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/reflection_ops.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/reflection_ops_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/reflection_ops_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/repeated_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/repeated_field.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/repeated_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/repeated_field.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/repeated_field_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/repeated_field_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/service.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/service.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/common.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/common.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/common_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/common_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/hash.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/hash.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/map-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/map-util.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/once.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/once.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/once_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/once_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/stl_util-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/stl_util-inl.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/structurally_valid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/structurally_valid.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/structurally_valid_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/structurally_valid_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/strutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/strutil.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/strutil.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/strutil_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/strutil_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/substitute.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/substitute.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/stubs/substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/stubs/substitute.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/test_util.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/test_util.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/test_util_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/test_util_lite.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/test_util_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/test_util_lite.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/testdata/golden_message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/testdata/golden_message -------------------------------------------------------------------------------- /compiler/src/google/protobuf/testdata/golden_packed_fields_message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/testdata/golden_packed_fields_message -------------------------------------------------------------------------------- /compiler/src/google/protobuf/testdata/text_format_unittest_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/testdata/text_format_unittest_data.txt -------------------------------------------------------------------------------- /compiler/src/google/protobuf/testdata/text_format_unittest_extensions_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/testdata/text_format_unittest_extensions_data.txt -------------------------------------------------------------------------------- /compiler/src/google/protobuf/testing/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/testing/file.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/testing/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/testing/file.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/testing/googletest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/testing/googletest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/testing/googletest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/testing/googletest.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/testing/zcgunzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/testing/zcgunzip.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/testing/zcgzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/testing/zcgzip.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/text_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/text_format.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/text_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/text_format.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/text_format_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/text_format_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/unittest.proto -------------------------------------------------------------------------------- /compiler/src/google/protobuf/unittest_custom_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/unittest_custom_options.proto -------------------------------------------------------------------------------- /compiler/src/google/protobuf/unittest_embed_optimize_for.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/unittest_embed_optimize_for.proto -------------------------------------------------------------------------------- /compiler/src/google/protobuf/unittest_empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/unittest_empty.proto -------------------------------------------------------------------------------- /compiler/src/google/protobuf/unittest_enormous_descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/unittest_enormous_descriptor.proto -------------------------------------------------------------------------------- /compiler/src/google/protobuf/unittest_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/unittest_import.proto -------------------------------------------------------------------------------- /compiler/src/google/protobuf/unittest_import_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/unittest_import_lite.proto -------------------------------------------------------------------------------- /compiler/src/google/protobuf/unittest_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/unittest_lite.proto -------------------------------------------------------------------------------- /compiler/src/google/protobuf/unittest_lite_imports_nonlite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/unittest_lite_imports_nonlite.proto -------------------------------------------------------------------------------- /compiler/src/google/protobuf/unittest_mset.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/unittest_mset.proto -------------------------------------------------------------------------------- /compiler/src/google/protobuf/unittest_optimize_for.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/unittest_optimize_for.proto -------------------------------------------------------------------------------- /compiler/src/google/protobuf/unknown_field_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/unknown_field_set.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/unknown_field_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/unknown_field_set.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/unknown_field_set_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/unknown_field_set_unittest.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/wire_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/wire_format.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/wire_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/wire_format.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/wire_format_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/wire_format_lite.cc -------------------------------------------------------------------------------- /compiler/src/google/protobuf/wire_format_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/wire_format_lite.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/wire_format_lite_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/wire_format_lite_inl.h -------------------------------------------------------------------------------- /compiler/src/google/protobuf/wire_format_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/src/google/protobuf/wire_format_unittest.cc -------------------------------------------------------------------------------- /compiler/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /compiler/vsprojects/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/vsprojects/config.h -------------------------------------------------------------------------------- /compiler/vsprojects/convert2008to2005.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/vsprojects/convert2008to2005.sh -------------------------------------------------------------------------------- /compiler/vsprojects/extract_includes.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/vsprojects/extract_includes.bat -------------------------------------------------------------------------------- /compiler/vsprojects/libprotobuf-lite.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/vsprojects/libprotobuf-lite.vcproj -------------------------------------------------------------------------------- /compiler/vsprojects/libprotobuf.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/vsprojects/libprotobuf.vcproj -------------------------------------------------------------------------------- /compiler/vsprojects/libprotoc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/vsprojects/libprotoc.vcproj -------------------------------------------------------------------------------- /compiler/vsprojects/lite-test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/vsprojects/lite-test.vcproj -------------------------------------------------------------------------------- /compiler/vsprojects/protobuf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/vsprojects/protobuf.sln -------------------------------------------------------------------------------- /compiler/vsprojects/protoc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/vsprojects/protoc.vcproj -------------------------------------------------------------------------------- /compiler/vsprojects/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/vsprojects/readme.txt -------------------------------------------------------------------------------- /compiler/vsprojects/tests.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/compiler/vsprojects/tests.vcproj -------------------------------------------------------------------------------- /protobuf-ios.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/protobuf-ios.podspec -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/AbstractMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/AbstractMessage.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/AbstractMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/AbstractMessage.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/AbstractMessage_Builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/AbstractMessage_Builder.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/AbstractMessage_Builder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/AbstractMessage_Builder.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/Bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/Bootstrap.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/CodedInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/CodedInputStream.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/CodedInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/CodedInputStream.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/CodedOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/CodedOutputStream.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/CodedOutputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/CodedOutputStream.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/ConcreteExtensionField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/ConcreteExtensionField.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/ConcreteExtensionField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/ConcreteExtensionField.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/Descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/Descriptor.pb.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/Descriptor.pb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/Descriptor.pb.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/ExtendableMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/ExtendableMessage.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/ExtendableMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/ExtendableMessage.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/ExtendableMessage_Builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/ExtendableMessage_Builder.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/ExtendableMessage_Builder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/ExtendableMessage_Builder.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/ExtensionField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/ExtensionField.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/ExtensionRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/ExtensionRegistry.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/ExtensionRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/ExtensionRegistry.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/Field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/Field.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/Field.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/Field.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/ForwardDeclarations.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/GeneratedMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/GeneratedMessage.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/GeneratedMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/GeneratedMessage.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/GeneratedMessage_Builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/GeneratedMessage_Builder.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/GeneratedMessage_Builder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/GeneratedMessage_Builder.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/Message.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/Message_Builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/Message_Builder.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/MutableExtensionRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/MutableExtensionRegistry.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/MutableExtensionRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/MutableExtensionRegistry.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/MutableField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/MutableField.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/MutableField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/MutableField.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/PBArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/PBArray.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/PBArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/PBArray.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/ProtocolBuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/ProtocolBuffers.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/RingBuffer.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/RingBuffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/RingBuffer.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/TextFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/TextFormat.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/TextFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/TextFormat.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/UnknownFieldSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/UnknownFieldSet.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/UnknownFieldSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/UnknownFieldSet.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/UnknownFieldSet_Builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/UnknownFieldSet_Builder.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/UnknownFieldSet_Builder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/UnknownFieldSet_Builder.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/Utilities.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/Utilities.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/WireFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/WireFormat.h -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/WireFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/WireFormat.m -------------------------------------------------------------------------------- /runtime/protobuf-ios/Classes/protobuf-ios-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/Classes/protobuf-ios-Prefix.pch -------------------------------------------------------------------------------- /runtime/protobuf-ios/protobuf-ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/protobuf-ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /runtime/protobuf-ios/protobuf-ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/protobuf-ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /runtime/protobuf-ios/protobuf-ios.xcodeproj/xcshareddata/xcschemes/protobuf-ios.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/protobuf-ios.xcodeproj/xcshareddata/xcschemes/protobuf-ios.xcscheme -------------------------------------------------------------------------------- /runtime/protobuf-ios/protobuf-ios.xcodeproj/xcshareddata/xcschemes/protobuf-iosTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/protobuf-ios.xcodeproj/xcshareddata/xcschemes/protobuf-iosTests.xcscheme -------------------------------------------------------------------------------- /runtime/protobuf-ios/protobuf-ios.xcodeproj/xcuserdata/chenming.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/protobuf-ios.xcodeproj/xcuserdata/chenming.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /runtime/protobuf-ios/protobuf-iosTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /runtime/protobuf-ios/protobuf-iosTests/protobuf-iosTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingchen/protobuf-ios/HEAD/runtime/protobuf-ios/protobuf-iosTests/protobuf-iosTests-Info.plist --------------------------------------------------------------------------------