├── .bazelrc ├── .bazelversion ├── .github └── workflows │ ├── coverage.yml │ └── main.yml ├── .gitignore ├── BUILD.bazel ├── CONTRIBUTING.md ├── LICENSE ├── MODULE.bazel ├── MODULE.bazel.lock ├── NOTICE ├── README.md ├── RELEASE_NOTES.md ├── coverage.svg ├── go.mod ├── go.sum ├── main.go ├── owners.txt ├── pkg └── proto │ ├── BUILD.bazel │ ├── annotation.go │ ├── annotation_test.go │ ├── app.go │ ├── attribute.go │ ├── attribute_test.go │ ├── attribute_visitor.go │ ├── attribute_visitor_test.go │ ├── comment.go │ ├── comment_test.go │ ├── comment_visitor.go │ ├── comment_visitor_test.go │ ├── constants.go │ ├── data │ ├── input_test_file.txt │ └── test │ │ ├── location │ │ ├── model.proto │ │ ├── model.proto.md │ │ └── model_example.md │ │ └── service │ │ ├── service.proto │ │ └── service.proto.md │ ├── e2e_test.go │ ├── enum.go │ ├── enum_test.go │ ├── enum_value.go │ ├── enum_value_test.go │ ├── enum_value_visitor.go │ ├── enum_value_visitor_test.go │ ├── enum_visitor.go │ ├── enum_visitor_test.go │ ├── import.go │ ├── import_test.go │ ├── import_visitor.go │ ├── import_visitor_test.go │ ├── interfaces.go │ ├── line.go │ ├── line_test.go │ ├── logger.go │ ├── logger_test.go │ ├── markdown.go │ ├── markdown_test.go │ ├── message.go │ ├── message_test.go │ ├── message_visitor.go │ ├── message_visitor_test.go │ ├── model.go │ ├── model_test.go │ ├── option_visitor.go │ ├── option_visitor_test.go │ ├── package.go │ ├── package_test.go │ ├── package_visitor.go │ ├── package_visitor_test.go │ ├── protobuf_file_scanner.go │ ├── reserved.go │ ├── reserved_test.go │ ├── reserved_visitor.go │ ├── reserved_visitor_test.go │ ├── rpc.go │ ├── rpc_test.go │ ├── rpc_visitor.go │ ├── rpc_visitor_test.go │ ├── service.go │ ├── service_test.go │ ├── service_visitor.go │ ├── service_visitor_test.go │ ├── test_scanner.go │ ├── util.go │ ├── util_test.go │ ├── variables.go │ ├── writer_markdown.go │ ├── writer_markdown_test.go │ └── writer_mermaid.go └── third_party └── lcov └── 1.16 ├── BUILD.bazel ├── CONTRIBUTING ├── COPYING ├── LICENSE ├── Makefile ├── README ├── bin ├── copy_dates.sh ├── gendesc ├── genhtml ├── geninfo ├── genpng ├── get_changes.sh ├── get_version.sh ├── install.sh ├── lcov └── updateversion.pl ├── example ├── Makefile ├── README ├── descriptions.txt ├── example.c ├── gauss.h ├── iterate.h └── methods │ ├── gauss.c │ └── iterate.c ├── lcovrc ├── man ├── gendesc.1 ├── genhtml.1 ├── geninfo.1 ├── genpng.1 ├── lcov.1 └── lcovrc.5 ├── rpm └── lcov.spec └── tests ├── Makefile ├── README.md ├── bin ├── check_counts ├── checkdeps ├── cleantests ├── common ├── mkinfo ├── norminfo ├── runtests ├── test_run ├── test_skip ├── testsuite_exit └── testsuite_init ├── common.mak ├── genhtml ├── Makefile ├── demangle.sh ├── full.sh ├── mycppfilt.sh ├── part1.sh ├── part2.sh ├── target.sh └── zero.sh ├── lcov ├── Makefile ├── add │ ├── Makefile │ ├── concatenated4.sh │ ├── full.sh │ ├── full2.sh │ ├── helper.sh │ ├── part.sh │ ├── part2.sh │ ├── zero.sh │ └── zero2.sh ├── diff │ ├── Makefile │ ├── new │ │ ├── Makefile │ │ └── prog.c │ ├── old │ │ ├── Makefile │ │ └── prog.c │ └── test.sh ├── misc │ ├── Makefile │ ├── help.sh │ └── version.sh └── summary │ ├── Makefile │ ├── concatenated.sh │ ├── concatenated2.sh │ ├── full.sh │ ├── part1.sh │ ├── part2.sh │ ├── target.sh │ └── zero.sh ├── lcovrc └── profiles ├── large ├── medium └── small /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 8.2.1 -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /MODULE.bazel.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/MODULE.bazel.lock -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/coverage.svg -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/main.go -------------------------------------------------------------------------------- /owners.txt: -------------------------------------------------------------------------------- 1 | rmcguinness@google.com -------------------------------------------------------------------------------- /pkg/proto/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/BUILD.bazel -------------------------------------------------------------------------------- /pkg/proto/annotation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/annotation.go -------------------------------------------------------------------------------- /pkg/proto/annotation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/annotation_test.go -------------------------------------------------------------------------------- /pkg/proto/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/app.go -------------------------------------------------------------------------------- /pkg/proto/attribute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/attribute.go -------------------------------------------------------------------------------- /pkg/proto/attribute_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/attribute_test.go -------------------------------------------------------------------------------- /pkg/proto/attribute_visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/attribute_visitor.go -------------------------------------------------------------------------------- /pkg/proto/attribute_visitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/attribute_visitor_test.go -------------------------------------------------------------------------------- /pkg/proto/comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/comment.go -------------------------------------------------------------------------------- /pkg/proto/comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/comment_test.go -------------------------------------------------------------------------------- /pkg/proto/comment_visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/comment_visitor.go -------------------------------------------------------------------------------- /pkg/proto/comment_visitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/comment_visitor_test.go -------------------------------------------------------------------------------- /pkg/proto/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/constants.go -------------------------------------------------------------------------------- /pkg/proto/data/input_test_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/data/input_test_file.txt -------------------------------------------------------------------------------- /pkg/proto/data/test/location/model.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/data/test/location/model.proto -------------------------------------------------------------------------------- /pkg/proto/data/test/location/model.proto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/data/test/location/model.proto.md -------------------------------------------------------------------------------- /pkg/proto/data/test/location/model_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/data/test/location/model_example.md -------------------------------------------------------------------------------- /pkg/proto/data/test/service/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/data/test/service/service.proto -------------------------------------------------------------------------------- /pkg/proto/data/test/service/service.proto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/data/test/service/service.proto.md -------------------------------------------------------------------------------- /pkg/proto/e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/e2e_test.go -------------------------------------------------------------------------------- /pkg/proto/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/enum.go -------------------------------------------------------------------------------- /pkg/proto/enum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/enum_test.go -------------------------------------------------------------------------------- /pkg/proto/enum_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/enum_value.go -------------------------------------------------------------------------------- /pkg/proto/enum_value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/enum_value_test.go -------------------------------------------------------------------------------- /pkg/proto/enum_value_visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/enum_value_visitor.go -------------------------------------------------------------------------------- /pkg/proto/enum_value_visitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/enum_value_visitor_test.go -------------------------------------------------------------------------------- /pkg/proto/enum_visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/enum_visitor.go -------------------------------------------------------------------------------- /pkg/proto/enum_visitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/enum_visitor_test.go -------------------------------------------------------------------------------- /pkg/proto/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/import.go -------------------------------------------------------------------------------- /pkg/proto/import_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/import_test.go -------------------------------------------------------------------------------- /pkg/proto/import_visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/import_visitor.go -------------------------------------------------------------------------------- /pkg/proto/import_visitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/import_visitor_test.go -------------------------------------------------------------------------------- /pkg/proto/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/interfaces.go -------------------------------------------------------------------------------- /pkg/proto/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/line.go -------------------------------------------------------------------------------- /pkg/proto/line_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/line_test.go -------------------------------------------------------------------------------- /pkg/proto/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/logger.go -------------------------------------------------------------------------------- /pkg/proto/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/logger_test.go -------------------------------------------------------------------------------- /pkg/proto/markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/markdown.go -------------------------------------------------------------------------------- /pkg/proto/markdown_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/markdown_test.go -------------------------------------------------------------------------------- /pkg/proto/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/message.go -------------------------------------------------------------------------------- /pkg/proto/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/message_test.go -------------------------------------------------------------------------------- /pkg/proto/message_visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/message_visitor.go -------------------------------------------------------------------------------- /pkg/proto/message_visitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/message_visitor_test.go -------------------------------------------------------------------------------- /pkg/proto/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/model.go -------------------------------------------------------------------------------- /pkg/proto/model_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/model_test.go -------------------------------------------------------------------------------- /pkg/proto/option_visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/option_visitor.go -------------------------------------------------------------------------------- /pkg/proto/option_visitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/option_visitor_test.go -------------------------------------------------------------------------------- /pkg/proto/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/package.go -------------------------------------------------------------------------------- /pkg/proto/package_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/package_test.go -------------------------------------------------------------------------------- /pkg/proto/package_visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/package_visitor.go -------------------------------------------------------------------------------- /pkg/proto/package_visitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/package_visitor_test.go -------------------------------------------------------------------------------- /pkg/proto/protobuf_file_scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/protobuf_file_scanner.go -------------------------------------------------------------------------------- /pkg/proto/reserved.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/reserved.go -------------------------------------------------------------------------------- /pkg/proto/reserved_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/reserved_test.go -------------------------------------------------------------------------------- /pkg/proto/reserved_visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/reserved_visitor.go -------------------------------------------------------------------------------- /pkg/proto/reserved_visitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/reserved_visitor_test.go -------------------------------------------------------------------------------- /pkg/proto/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/rpc.go -------------------------------------------------------------------------------- /pkg/proto/rpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/rpc_test.go -------------------------------------------------------------------------------- /pkg/proto/rpc_visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/rpc_visitor.go -------------------------------------------------------------------------------- /pkg/proto/rpc_visitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/rpc_visitor_test.go -------------------------------------------------------------------------------- /pkg/proto/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/service.go -------------------------------------------------------------------------------- /pkg/proto/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/service_test.go -------------------------------------------------------------------------------- /pkg/proto/service_visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/service_visitor.go -------------------------------------------------------------------------------- /pkg/proto/service_visitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/service_visitor_test.go -------------------------------------------------------------------------------- /pkg/proto/test_scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/test_scanner.go -------------------------------------------------------------------------------- /pkg/proto/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/util.go -------------------------------------------------------------------------------- /pkg/proto/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/util_test.go -------------------------------------------------------------------------------- /pkg/proto/variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/variables.go -------------------------------------------------------------------------------- /pkg/proto/writer_markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/writer_markdown.go -------------------------------------------------------------------------------- /pkg/proto/writer_markdown_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/writer_markdown_test.go -------------------------------------------------------------------------------- /pkg/proto/writer_mermaid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/pkg/proto/writer_mermaid.go -------------------------------------------------------------------------------- /third_party/lcov/1.16/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/BUILD.bazel -------------------------------------------------------------------------------- /third_party/lcov/1.16/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/CONTRIBUTING -------------------------------------------------------------------------------- /third_party/lcov/1.16/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/COPYING -------------------------------------------------------------------------------- /third_party/lcov/1.16/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/LICENSE -------------------------------------------------------------------------------- /third_party/lcov/1.16/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/Makefile -------------------------------------------------------------------------------- /third_party/lcov/1.16/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/README -------------------------------------------------------------------------------- /third_party/lcov/1.16/bin/copy_dates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/bin/copy_dates.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/bin/gendesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/bin/gendesc -------------------------------------------------------------------------------- /third_party/lcov/1.16/bin/genhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/bin/genhtml -------------------------------------------------------------------------------- /third_party/lcov/1.16/bin/geninfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/bin/geninfo -------------------------------------------------------------------------------- /third_party/lcov/1.16/bin/genpng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/bin/genpng -------------------------------------------------------------------------------- /third_party/lcov/1.16/bin/get_changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/bin/get_changes.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/bin/get_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/bin/get_version.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/bin/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/bin/install.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/bin/lcov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/bin/lcov -------------------------------------------------------------------------------- /third_party/lcov/1.16/bin/updateversion.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/bin/updateversion.pl -------------------------------------------------------------------------------- /third_party/lcov/1.16/example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/example/Makefile -------------------------------------------------------------------------------- /third_party/lcov/1.16/example/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/example/README -------------------------------------------------------------------------------- /third_party/lcov/1.16/example/descriptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/example/descriptions.txt -------------------------------------------------------------------------------- /third_party/lcov/1.16/example/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/example/example.c -------------------------------------------------------------------------------- /third_party/lcov/1.16/example/gauss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/example/gauss.h -------------------------------------------------------------------------------- /third_party/lcov/1.16/example/iterate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/example/iterate.h -------------------------------------------------------------------------------- /third_party/lcov/1.16/example/methods/gauss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/example/methods/gauss.c -------------------------------------------------------------------------------- /third_party/lcov/1.16/example/methods/iterate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/example/methods/iterate.c -------------------------------------------------------------------------------- /third_party/lcov/1.16/lcovrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/lcovrc -------------------------------------------------------------------------------- /third_party/lcov/1.16/man/gendesc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/man/gendesc.1 -------------------------------------------------------------------------------- /third_party/lcov/1.16/man/genhtml.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/man/genhtml.1 -------------------------------------------------------------------------------- /third_party/lcov/1.16/man/geninfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/man/geninfo.1 -------------------------------------------------------------------------------- /third_party/lcov/1.16/man/genpng.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/man/genpng.1 -------------------------------------------------------------------------------- /third_party/lcov/1.16/man/lcov.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/man/lcov.1 -------------------------------------------------------------------------------- /third_party/lcov/1.16/man/lcovrc.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/man/lcovrc.5 -------------------------------------------------------------------------------- /third_party/lcov/1.16/rpm/lcov.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/rpm/lcov.spec -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/Makefile -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/README.md -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/bin/check_counts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/bin/check_counts -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/bin/checkdeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/bin/checkdeps -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/bin/cleantests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/bin/cleantests -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/bin/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/bin/common -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/bin/mkinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/bin/mkinfo -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/bin/norminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/bin/norminfo -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/bin/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/bin/runtests -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/bin/test_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/bin/test_run -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/bin/test_skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/bin/test_skip -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/bin/testsuite_exit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/bin/testsuite_exit -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/bin/testsuite_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/bin/testsuite_init -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/common.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/common.mak -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/genhtml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/genhtml/Makefile -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/genhtml/demangle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/genhtml/demangle.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/genhtml/full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/genhtml/full.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/genhtml/mycppfilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/genhtml/mycppfilt.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/genhtml/part1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/genhtml/part1.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/genhtml/part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/genhtml/part2.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/genhtml/target.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/genhtml/target.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/genhtml/zero.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/genhtml/zero.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/Makefile: -------------------------------------------------------------------------------- 1 | include ../common.mak 2 | 3 | TESTS := add/ diff/ misc/ summary/ 4 | -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/add/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/add/Makefile -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/add/concatenated4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/add/concatenated4.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/add/full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/add/full.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/add/full2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/add/full2.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/add/helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/add/helper.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/add/part.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/add/part.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/add/part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/add/part2.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/add/zero.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/add/zero.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/add/zero2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/add/zero2.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/diff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/diff/Makefile -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/diff/new/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/diff/new/Makefile -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/diff/new/prog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/diff/new/prog.c -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/diff/old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/diff/old/Makefile -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/diff/old/prog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/diff/old/prog.c -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/diff/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/diff/test.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/misc/Makefile -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/misc/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/misc/help.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/misc/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/misc/version.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/summary/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/summary/Makefile -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/summary/concatenated.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/summary/concatenated.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/summary/concatenated2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/summary/concatenated2.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/summary/full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/summary/full.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/summary/part1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/summary/part1.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/summary/part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/summary/part2.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/summary/target.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/summary/target.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcov/summary/zero.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcov/summary/zero.sh -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/lcovrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/lcovrc -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/profiles/large: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/profiles/large -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/profiles/medium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/profiles/medium -------------------------------------------------------------------------------- /third_party/lcov/1.16/tests/profiles/small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/proto-gen-md-diagrams/HEAD/third_party/lcov/1.16/tests/profiles/small --------------------------------------------------------------------------------