├── .gitignore ├── COPYING ├── README.md ├── addon.cc ├── binding.gyp ├── example ├── feeds.desc ├── feeds.js ├── feeds.proto ├── protoservice.cc ├── protoservice.js ├── protoservice.pb.cc ├── protoservice.pb.h └── protoservice.proto ├── package.json ├── protobuf ├── CHANGES.txt ├── CONTRIBUTORS.txt ├── COPYING.txt ├── INSTALL.txt ├── README.chromium ├── README.txt ├── config.h ├── protobuf.gyp ├── 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_plugin_unittest.cc │ │ │ ├── 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_plugin_unittest.cc │ │ │ ├── java_primitive_field.cc │ │ │ ├── java_primitive_field.h │ │ │ ├── java_service.cc │ │ │ ├── java_service.h │ │ │ ├── java_string_field.cc │ │ │ └── java_string_field.h │ │ ├── main.cc │ │ ├── mock_code_generator.cc │ │ ├── mock_code_generator.h │ │ ├── package_info.h │ │ ├── parser.cc │ │ ├── parser.h │ │ ├── parser_unittest.cc │ │ ├── plugin.cc │ │ ├── plugin.h │ │ ├── plugin.pb.cc │ │ ├── plugin.pb.h │ │ ├── plugin.proto │ │ ├── python │ │ │ ├── python_generator.cc │ │ │ ├── python_generator.h │ │ │ └── python_plugin_unittest.cc │ │ ├── subprocess.cc │ │ ├── subprocess.h │ │ ├── test_plugin.cc │ │ ├── zip_output_unittest.sh │ │ ├── zip_writer.cc │ │ └── zip_writer.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_inl.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 │ │ ├── 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.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_no_generic_services.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 └── vsprojects │ ├── config.h │ ├── convert2008to2005.sh │ ├── extract_includes.bat │ └── readme.txt ├── protobuf_for_node.cc ├── protobuf_for_node.h ├── test ├── golden_message ├── unittest.desc └── unittest.js └── wscript /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/README.md -------------------------------------------------------------------------------- /addon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/addon.cc -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/binding.gyp -------------------------------------------------------------------------------- /example/feeds.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/example/feeds.desc -------------------------------------------------------------------------------- /example/feeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/example/feeds.js -------------------------------------------------------------------------------- /example/feeds.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/example/feeds.proto -------------------------------------------------------------------------------- /example/protoservice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/example/protoservice.cc -------------------------------------------------------------------------------- /example/protoservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/example/protoservice.js -------------------------------------------------------------------------------- /example/protoservice.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/example/protoservice.pb.cc -------------------------------------------------------------------------------- /example/protoservice.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/example/protoservice.pb.h -------------------------------------------------------------------------------- /example/protoservice.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/example/protoservice.proto -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/package.json -------------------------------------------------------------------------------- /protobuf/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/CHANGES.txt -------------------------------------------------------------------------------- /protobuf/CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /protobuf/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/COPYING.txt -------------------------------------------------------------------------------- /protobuf/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/INSTALL.txt -------------------------------------------------------------------------------- /protobuf/README.chromium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/README.chromium -------------------------------------------------------------------------------- /protobuf/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/README.txt -------------------------------------------------------------------------------- /protobuf/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/config.h -------------------------------------------------------------------------------- /protobuf/protobuf.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/protobuf.gyp -------------------------------------------------------------------------------- /protobuf/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/Makefile.am -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/code_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/code_generator.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/code_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/code_generator.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/command_line_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/command_line_interface.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/command_line_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/command_line_interface.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_enum.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_enum.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_enum_field.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_enum_field.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_extension.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_extension.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_extension.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_field.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_field.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_file.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_file.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_generator.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_generator.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_message.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_message.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_message_field.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_message_field.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_plugin_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_plugin_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_primitive_field.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_service.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_service.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_string_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_string_field.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_string_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_string_field.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/cpp/cpp_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/cpp/cpp_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/importer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/importer.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/importer.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/importer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/importer_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_enum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_enum.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_enum.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_enum_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_enum_field.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_enum_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_enum_field.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_extension.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_extension.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_extension.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_field.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_field.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_file.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_file.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_generator.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_generator.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_helpers.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_helpers.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_message.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_message.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_message_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_message_field.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_message_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_message_field.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_plugin_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_plugin_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_primitive_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_primitive_field.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_primitive_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_primitive_field.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_service.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_service.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_string_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_string_field.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/java/java_string_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/java/java_string_field.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/main.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/mock_code_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/mock_code_generator.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/mock_code_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/mock_code_generator.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/package_info.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/parser.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/parser.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/parser_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/parser_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/plugin.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/plugin.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/plugin.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/plugin.pb.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/plugin.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/plugin.pb.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/python/python_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/python/python_generator.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/python/python_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/python/python_generator.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/python/python_plugin_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/python/python_plugin_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/subprocess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/subprocess.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/subprocess.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/test_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/test_plugin.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/zip_output_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/zip_output_unittest.sh -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/zip_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/zip_writer.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/compiler/zip_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/compiler/zip_writer.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/descriptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/descriptor.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/descriptor.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/descriptor.pb.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/descriptor.pb.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/descriptor_database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/descriptor_database.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/descriptor_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/descriptor_database.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/descriptor_database_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/descriptor_database_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/descriptor_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/descriptor_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/dynamic_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/dynamic_message.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/dynamic_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/dynamic_message.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/dynamic_message_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/dynamic_message_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/extension_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/extension_set.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/extension_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/extension_set.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/extension_set_heavy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/extension_set_heavy.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/extension_set_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/extension_set_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/generated_message_reflection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/generated_message_reflection.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/generated_message_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/generated_message_reflection.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/generated_message_reflection_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/generated_message_reflection_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/generated_message_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/generated_message_util.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/generated_message_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/generated_message_util.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/coded_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/coded_stream.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/coded_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/coded_stream.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/coded_stream_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/coded_stream_inl.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/coded_stream_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/coded_stream_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/gzip_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/gzip_stream.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/gzip_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/gzip_stream.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/gzip_stream_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/gzip_stream_unittest.sh -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/package_info.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/printer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/printer.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/printer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/printer_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/tokenizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/tokenizer.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/tokenizer.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/tokenizer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/tokenizer_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/zero_copy_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/zero_copy_stream.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/zero_copy_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/zero_copy_stream.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/zero_copy_stream_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/lite_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/lite_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/message.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/message.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/message_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/message_lite.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/message_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/message_lite.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/message_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/message_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/package_info.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/reflection_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/reflection_ops.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/reflection_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/reflection_ops.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/reflection_ops_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/reflection_ops_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/repeated_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/repeated_field.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/repeated_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/repeated_field.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/repeated_field_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/repeated_field_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/service.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/service.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/stubs/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/stubs/common.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/stubs/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/stubs/common.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/stubs/common_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/stubs/common_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/stubs/hash.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/stubs/map-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/stubs/map-util.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/stubs/once.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/stubs/once.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/stubs/once_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/stubs/once_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/stubs/stl_util-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/stubs/stl_util-inl.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/stubs/structurally_valid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/stubs/structurally_valid.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/stubs/structurally_valid_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/stubs/structurally_valid_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/stubs/strutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/stubs/strutil.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/stubs/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/stubs/strutil.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/stubs/strutil_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/stubs/strutil_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/stubs/substitute.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/stubs/substitute.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/stubs/substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/stubs/substitute.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/test_util.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/test_util.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/test_util_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/test_util_lite.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/test_util_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/test_util_lite.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/testdata/golden_message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/testdata/golden_message -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/testdata/golden_packed_fields_message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/testdata/golden_packed_fields_message -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/testdata/text_format_unittest_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/testdata/text_format_unittest_data.txt -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/testdata/text_format_unittest_extensions_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/testdata/text_format_unittest_extensions_data.txt -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/testing/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/testing/file.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/testing/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/testing/file.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/testing/googletest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/testing/googletest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/testing/googletest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/testing/googletest.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/testing/zcgunzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/testing/zcgunzip.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/testing/zcgzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/testing/zcgzip.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/text_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/text_format.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/text_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/text_format.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/text_format_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/text_format_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/unittest.proto -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/unittest_custom_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/unittest_custom_options.proto -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/unittest_embed_optimize_for.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/unittest_embed_optimize_for.proto -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/unittest_empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/unittest_empty.proto -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/unittest_enormous_descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/unittest_enormous_descriptor.proto -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/unittest_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/unittest_import.proto -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/unittest_import_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/unittest_import_lite.proto -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/unittest_lite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/unittest_lite.proto -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/unittest_lite_imports_nonlite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/unittest_lite_imports_nonlite.proto -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/unittest_mset.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/unittest_mset.proto -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/unittest_no_generic_services.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/unittest_no_generic_services.proto -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/unittest_optimize_for.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/unittest_optimize_for.proto -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/unknown_field_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/unknown_field_set.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/unknown_field_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/unknown_field_set.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/unknown_field_set_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/unknown_field_set_unittest.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/wire_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/wire_format.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/wire_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/wire_format.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/wire_format_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/wire_format_lite.cc -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/wire_format_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/wire_format_lite.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/wire_format_lite_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/wire_format_lite_inl.h -------------------------------------------------------------------------------- /protobuf/src/google/protobuf/wire_format_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/src/google/protobuf/wire_format_unittest.cc -------------------------------------------------------------------------------- /protobuf/vsprojects/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/vsprojects/config.h -------------------------------------------------------------------------------- /protobuf/vsprojects/convert2008to2005.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/vsprojects/convert2008to2005.sh -------------------------------------------------------------------------------- /protobuf/vsprojects/extract_includes.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/vsprojects/extract_includes.bat -------------------------------------------------------------------------------- /protobuf/vsprojects/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf/vsprojects/readme.txt -------------------------------------------------------------------------------- /protobuf_for_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf_for_node.cc -------------------------------------------------------------------------------- /protobuf_for_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/protobuf_for_node.h -------------------------------------------------------------------------------- /test/golden_message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/test/golden_message -------------------------------------------------------------------------------- /test/unittest.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/test/unittest.desc -------------------------------------------------------------------------------- /test/unittest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/test/unittest.js -------------------------------------------------------------------------------- /wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdew/protobuf/HEAD/wscript --------------------------------------------------------------------------------