├── .aspect ├── bazelrc │ ├── .gitignore │ ├── BUILD.bazel │ ├── bazel6.bazelrc │ ├── ci.bazelrc │ ├── convenience.bazelrc │ ├── correctness.bazelrc │ ├── debug.bazelrc │ ├── javascript.bazelrc │ └── performance.bazelrc ├── cli │ └── config.yaml └── rules │ └── external_repository_action_cache │ └── npm_translate_lock_LTE4Nzc1MDcwNjU= ├── .bazelrc ├── .bazelversion ├── .buildkite ├── chromium.sh ├── chromium.yaml └── pipeline.yaml ├── .clang-format ├── .dockerignore ├── .git-blame-ignore-revs ├── .github ├── actionlint.yaml ├── labeler.yml └── workflows │ ├── labeler.yml │ ├── release-docker.yml │ ├── release-template.md │ └── release.yml ├── .gitignore ├── BUILD ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── WORKSPACE ├── config └── BUILD ├── docs ├── CrossRepo.md ├── Design.md ├── Development.md ├── IndexingProjects.md ├── SourceLocation.md └── Troubleshooting.md ├── fetch_deps.bzl ├── indexer ├── AbslExtras.h ├── ApproximateNameResolver.cc ├── ApproximateNameResolver.h ├── AstConsumer.cc ├── AstConsumer.h ├── BUILD ├── ClangAstMacros.h ├── CliOptions.cc ├── CliOptions.h ├── CommandLineCleaner.cc ├── CommandLineCleaner.h ├── Comparison.cc ├── Comparison.h ├── CompilationDatabase.cc ├── CompilationDatabase.h ├── DebugHelpers.cc ├── DebugHelpers.h ├── Derive.h ├── Driver.cc ├── Driver.h ├── Enforce.cc ├── Enforce.h ├── Exception.cc ├── Exception.h ├── FileMetadata.h ├── FileSystem.cc ├── FileSystem.h ├── Hash.h ├── IdPathMappings.cc ├── IdPathMappings.h ├── Indexer.cc ├── Indexer.h ├── IpcMessages.cc ├── IpcMessages.h ├── JsonIpcQueue.cc ├── JsonIpcQueue.h ├── LlvmAdapter.h ├── LlvmCommandLineParsing.cc ├── LlvmCommandLineParsing.h ├── Logging.cc ├── Logging.h ├── PackageMap.cc ├── PackageMap.h ├── Path.cc ├── Path.h ├── Preprocessing.cc ├── Preprocessing.h ├── ProgressReporter.cc ├── ProgressReporter.h ├── RAII.h ├── ScipExtras.cc ├── ScipExtras.h ├── Statistics.cc ├── Statistics.h ├── SymbolFormatter.cc ├── SymbolFormatter.h ├── SymbolName.cc ├── SymbolName.h ├── Timer.cc ├── Timer.h ├── Tracing.cc ├── Tracing.h ├── Version.h ├── Worker.cc ├── Worker.h ├── main.cc └── os │ ├── BUILD │ ├── Linux.cc │ ├── Os.cc │ ├── Os.h │ └── macOS.cc ├── mise.toml ├── proto ├── BUILD └── fwd_decls.proto ├── renovate.json ├── settings.bzl ├── setup_deps.bzl ├── setup_llvm.bzl ├── test ├── BUILD ├── Snapshot.cc ├── Snapshot.h ├── compdb │ ├── simple-2.snapshot.yaml │ ├── simple-3.snapshot.yaml │ ├── simple-4.snapshot.yaml │ ├── simple.json │ ├── skipping-4.snapshot.yaml │ └── skipping.json ├── index │ ├── .clang-format │ ├── aliases │ │ ├── aliases.cc │ │ └── aliases.snapshot.cc │ ├── crossrepo │ │ ├── external │ │ │ └── dep1 │ │ │ │ ├── dep1.cc │ │ │ │ └── dep1.h │ │ ├── external_symbols.snapshot.cc │ │ ├── main.cc │ │ ├── main.snapshot.cc │ │ └── package-map.json │ ├── cuda │ │ ├── cuda_stub.h │ │ ├── cuda_stub.snapshot.h │ │ ├── kernelcall.cu │ │ └── kernelcall.snapshot.cu │ ├── docs │ │ ├── docs.cc │ │ └── docs.snapshot.cc │ ├── functions │ │ ├── body.cc │ │ ├── body.snapshot.cc │ │ ├── ctors_dtors.cc │ │ ├── ctors_dtors.snapshot.cc │ │ ├── functions.cc │ │ ├── functions.snapshot.cc │ │ ├── methods.cc │ │ ├── methods.snapshot.cc │ │ ├── operators.cc │ │ ├── operators.snapshot.cc │ │ ├── template_body.cc │ │ ├── template_body.snapshot.cc │ │ ├── templates.cc │ │ └── templates.snapshot.cc │ ├── fwd_decl │ │ ├── doc_check.cc │ │ ├── doc_check.snapshot.cc │ │ ├── doc_check_def.cc │ │ ├── doc_check_def.snapshot.cc │ │ ├── ext_header.h │ │ ├── ext_header.snapshot.h │ │ ├── external_symbols.snapshot.cc │ │ ├── mydefs.cc │ │ ├── mydefs.snapshot.cc │ │ ├── myheader.h │ │ ├── myheader.snapshot.h │ │ ├── myuses.cc │ │ └── myuses.snapshot.cc │ ├── macros │ │ ├── macros.cc │ │ ├── macros.h │ │ ├── macros.snapshot.cc │ │ ├── macros.snapshot.h │ │ ├── system_header.h │ │ ├── system_header.snapshot.h │ │ ├── use_system_header.cc │ │ └── use_system_header.snapshot.cc │ ├── namespaces │ │ ├── namespaces.cc │ │ ├── namespaces.snapshot.cc │ │ ├── system_header.h │ │ └── system_header.snapshot.h │ ├── types │ │ ├── bad_tagdecl.cc │ │ ├── bad_tagdecl.snapshot.cc │ │ ├── inheritance.cc │ │ ├── inheritance.snapshot.cc │ │ ├── templates.cc │ │ ├── templates.snapshot.cc │ │ ├── types.cc │ │ ├── types.h │ │ ├── types.snapshot.cc │ │ └── types.snapshot.h │ └── vars │ │ ├── k&r.c │ │ ├── k&r.snapshot.c │ │ ├── members.cc │ │ ├── members.snapshot.cc │ │ ├── templates.cc │ │ ├── templates.snapshot.cc │ │ ├── vars.cc │ │ └── vars.snapshot.cc ├── ipc_test_main.cc ├── preprocessor │ ├── already_preprocessed │ │ ├── main.cc │ │ └── main.preprocessor-history.yaml │ ├── hashinclude │ │ ├── 1-1.h │ │ ├── 1-2.h │ │ ├── 1.h │ │ ├── main.cc │ │ └── main.preprocessor-history.yaml │ └── ill_behaved │ │ ├── good_header.h │ │ ├── ill_behaved.h │ │ ├── main.cc │ │ └── main.preprocessor-history.yaml ├── robustness │ ├── compile_commands.json │ ├── crash.snapshot.log │ ├── main.c │ ├── sleep.snapshot.log │ └── spin.snapshot.log ├── test_main.cc ├── test_main.sh └── test_suite.bzl ├── third_party ├── BUILD ├── abseil.patch ├── actionlint.BUILD ├── bazel_buildtools │ └── BUILD ├── cxxopts.BUILD ├── dtl.BUILD ├── perfetto.BUILD ├── perfetto.patch ├── rapidjson.BUILD ├── scip.BUILD ├── spdlog.BUILD ├── utfcpp.BUILD ├── wyhash.BUILD └── zlib.BUILD └── tools ├── BUILD ├── analyze_compdb.py ├── analyze_pp_trace.py ├── benchmark.py ├── compdb.py ├── lint.sh ├── long_trace.pbtx ├── package-map.json ├── reduce.py ├── reformat.sh ├── reformat_python.py ├── regenerate-compdb.sh ├── requirements.in ├── requirements_lock.txt ├── version_check.sh ├── vm-setup-cuda.sh └── vm-setup.sh /.aspect/bazelrc/.gitignore: -------------------------------------------------------------------------------- 1 | user.bazelrc 2 | -------------------------------------------------------------------------------- /.aspect/bazelrc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.aspect/bazelrc/BUILD.bazel -------------------------------------------------------------------------------- /.aspect/bazelrc/bazel6.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.aspect/bazelrc/bazel6.bazelrc -------------------------------------------------------------------------------- /.aspect/bazelrc/ci.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.aspect/bazelrc/ci.bazelrc -------------------------------------------------------------------------------- /.aspect/bazelrc/convenience.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.aspect/bazelrc/convenience.bazelrc -------------------------------------------------------------------------------- /.aspect/bazelrc/correctness.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.aspect/bazelrc/correctness.bazelrc -------------------------------------------------------------------------------- /.aspect/bazelrc/debug.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.aspect/bazelrc/debug.bazelrc -------------------------------------------------------------------------------- /.aspect/bazelrc/javascript.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.aspect/bazelrc/javascript.bazelrc -------------------------------------------------------------------------------- /.aspect/bazelrc/performance.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.aspect/bazelrc/performance.bazelrc -------------------------------------------------------------------------------- /.aspect/cli/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.aspect/cli/config.yaml -------------------------------------------------------------------------------- /.aspect/rules/external_repository_action_cache/npm_translate_lock_LTE4Nzc1MDcwNjU=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.aspect/rules/external_repository_action_cache/npm_translate_lock_LTE4Nzc1MDcwNjU= -------------------------------------------------------------------------------- /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 6.1.2 2 | -------------------------------------------------------------------------------- /.buildkite/chromium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.buildkite/chromium.sh -------------------------------------------------------------------------------- /.buildkite/chromium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.buildkite/chromium.yaml -------------------------------------------------------------------------------- /.buildkite/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.buildkite/pipeline.yaml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.clang-format -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | **/.git 2 | bazel-* 3 | -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.github/actionlint.yaml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/release-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.github/workflows/release-docker.yml -------------------------------------------------------------------------------- /.github/workflows/release-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.github/workflows/release-template.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/BUILD -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/WORKSPACE -------------------------------------------------------------------------------- /config/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/config/BUILD -------------------------------------------------------------------------------- /docs/CrossRepo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/docs/CrossRepo.md -------------------------------------------------------------------------------- /docs/Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/docs/Design.md -------------------------------------------------------------------------------- /docs/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/docs/Development.md -------------------------------------------------------------------------------- /docs/IndexingProjects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/docs/IndexingProjects.md -------------------------------------------------------------------------------- /docs/SourceLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/docs/SourceLocation.md -------------------------------------------------------------------------------- /docs/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/docs/Troubleshooting.md -------------------------------------------------------------------------------- /fetch_deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/fetch_deps.bzl -------------------------------------------------------------------------------- /indexer/AbslExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/AbslExtras.h -------------------------------------------------------------------------------- /indexer/ApproximateNameResolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/ApproximateNameResolver.cc -------------------------------------------------------------------------------- /indexer/ApproximateNameResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/ApproximateNameResolver.h -------------------------------------------------------------------------------- /indexer/AstConsumer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/AstConsumer.cc -------------------------------------------------------------------------------- /indexer/AstConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/AstConsumer.h -------------------------------------------------------------------------------- /indexer/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/BUILD -------------------------------------------------------------------------------- /indexer/ClangAstMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/ClangAstMacros.h -------------------------------------------------------------------------------- /indexer/CliOptions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/CliOptions.cc -------------------------------------------------------------------------------- /indexer/CliOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/CliOptions.h -------------------------------------------------------------------------------- /indexer/CommandLineCleaner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/CommandLineCleaner.cc -------------------------------------------------------------------------------- /indexer/CommandLineCleaner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/CommandLineCleaner.h -------------------------------------------------------------------------------- /indexer/Comparison.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Comparison.cc -------------------------------------------------------------------------------- /indexer/Comparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Comparison.h -------------------------------------------------------------------------------- /indexer/CompilationDatabase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/CompilationDatabase.cc -------------------------------------------------------------------------------- /indexer/CompilationDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/CompilationDatabase.h -------------------------------------------------------------------------------- /indexer/DebugHelpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/DebugHelpers.cc -------------------------------------------------------------------------------- /indexer/DebugHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/DebugHelpers.h -------------------------------------------------------------------------------- /indexer/Derive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Derive.h -------------------------------------------------------------------------------- /indexer/Driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Driver.cc -------------------------------------------------------------------------------- /indexer/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Driver.h -------------------------------------------------------------------------------- /indexer/Enforce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Enforce.cc -------------------------------------------------------------------------------- /indexer/Enforce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Enforce.h -------------------------------------------------------------------------------- /indexer/Exception.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Exception.cc -------------------------------------------------------------------------------- /indexer/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Exception.h -------------------------------------------------------------------------------- /indexer/FileMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/FileMetadata.h -------------------------------------------------------------------------------- /indexer/FileSystem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/FileSystem.cc -------------------------------------------------------------------------------- /indexer/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/FileSystem.h -------------------------------------------------------------------------------- /indexer/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Hash.h -------------------------------------------------------------------------------- /indexer/IdPathMappings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/IdPathMappings.cc -------------------------------------------------------------------------------- /indexer/IdPathMappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/IdPathMappings.h -------------------------------------------------------------------------------- /indexer/Indexer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Indexer.cc -------------------------------------------------------------------------------- /indexer/Indexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Indexer.h -------------------------------------------------------------------------------- /indexer/IpcMessages.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/IpcMessages.cc -------------------------------------------------------------------------------- /indexer/IpcMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/IpcMessages.h -------------------------------------------------------------------------------- /indexer/JsonIpcQueue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/JsonIpcQueue.cc -------------------------------------------------------------------------------- /indexer/JsonIpcQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/JsonIpcQueue.h -------------------------------------------------------------------------------- /indexer/LlvmAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/LlvmAdapter.h -------------------------------------------------------------------------------- /indexer/LlvmCommandLineParsing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/LlvmCommandLineParsing.cc -------------------------------------------------------------------------------- /indexer/LlvmCommandLineParsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/LlvmCommandLineParsing.h -------------------------------------------------------------------------------- /indexer/Logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Logging.cc -------------------------------------------------------------------------------- /indexer/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Logging.h -------------------------------------------------------------------------------- /indexer/PackageMap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/PackageMap.cc -------------------------------------------------------------------------------- /indexer/PackageMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/PackageMap.h -------------------------------------------------------------------------------- /indexer/Path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Path.cc -------------------------------------------------------------------------------- /indexer/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Path.h -------------------------------------------------------------------------------- /indexer/Preprocessing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Preprocessing.cc -------------------------------------------------------------------------------- /indexer/Preprocessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Preprocessing.h -------------------------------------------------------------------------------- /indexer/ProgressReporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/ProgressReporter.cc -------------------------------------------------------------------------------- /indexer/ProgressReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/ProgressReporter.h -------------------------------------------------------------------------------- /indexer/RAII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/RAII.h -------------------------------------------------------------------------------- /indexer/ScipExtras.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/ScipExtras.cc -------------------------------------------------------------------------------- /indexer/ScipExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/ScipExtras.h -------------------------------------------------------------------------------- /indexer/Statistics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Statistics.cc -------------------------------------------------------------------------------- /indexer/Statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Statistics.h -------------------------------------------------------------------------------- /indexer/SymbolFormatter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/SymbolFormatter.cc -------------------------------------------------------------------------------- /indexer/SymbolFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/SymbolFormatter.h -------------------------------------------------------------------------------- /indexer/SymbolName.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/SymbolName.cc -------------------------------------------------------------------------------- /indexer/SymbolName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/SymbolName.h -------------------------------------------------------------------------------- /indexer/Timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Timer.cc -------------------------------------------------------------------------------- /indexer/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Timer.h -------------------------------------------------------------------------------- /indexer/Tracing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Tracing.cc -------------------------------------------------------------------------------- /indexer/Tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Tracing.h -------------------------------------------------------------------------------- /indexer/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Version.h -------------------------------------------------------------------------------- /indexer/Worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Worker.cc -------------------------------------------------------------------------------- /indexer/Worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/Worker.h -------------------------------------------------------------------------------- /indexer/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/main.cc -------------------------------------------------------------------------------- /indexer/os/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/os/BUILD -------------------------------------------------------------------------------- /indexer/os/Linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/os/Linux.cc -------------------------------------------------------------------------------- /indexer/os/Os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/os/Os.cc -------------------------------------------------------------------------------- /indexer/os/Os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/os/Os.h -------------------------------------------------------------------------------- /indexer/os/macOS.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/indexer/os/macOS.cc -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | bazelisk = "latest" 3 | -------------------------------------------------------------------------------- /proto/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/proto/BUILD -------------------------------------------------------------------------------- /proto/fwd_decls.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/proto/fwd_decls.proto -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/renovate.json -------------------------------------------------------------------------------- /settings.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/settings.bzl -------------------------------------------------------------------------------- /setup_deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/setup_deps.bzl -------------------------------------------------------------------------------- /setup_llvm.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/setup_llvm.bzl -------------------------------------------------------------------------------- /test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/BUILD -------------------------------------------------------------------------------- /test/Snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/Snapshot.cc -------------------------------------------------------------------------------- /test/Snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/Snapshot.h -------------------------------------------------------------------------------- /test/compdb/simple-2.snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/compdb/simple-2.snapshot.yaml -------------------------------------------------------------------------------- /test/compdb/simple-3.snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/compdb/simple-3.snapshot.yaml -------------------------------------------------------------------------------- /test/compdb/simple-4.snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/compdb/simple-4.snapshot.yaml -------------------------------------------------------------------------------- /test/compdb/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/compdb/simple.json -------------------------------------------------------------------------------- /test/compdb/skipping-4.snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/compdb/skipping-4.snapshot.yaml -------------------------------------------------------------------------------- /test/compdb/skipping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/compdb/skipping.json -------------------------------------------------------------------------------- /test/index/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/.clang-format -------------------------------------------------------------------------------- /test/index/aliases/aliases.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/aliases/aliases.cc -------------------------------------------------------------------------------- /test/index/aliases/aliases.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/aliases/aliases.snapshot.cc -------------------------------------------------------------------------------- /test/index/crossrepo/external/dep1/dep1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/crossrepo/external/dep1/dep1.cc -------------------------------------------------------------------------------- /test/index/crossrepo/external/dep1/dep1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/crossrepo/external/dep1/dep1.h -------------------------------------------------------------------------------- /test/index/crossrepo/external_symbols.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/crossrepo/external_symbols.snapshot.cc -------------------------------------------------------------------------------- /test/index/crossrepo/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/crossrepo/main.cc -------------------------------------------------------------------------------- /test/index/crossrepo/main.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/crossrepo/main.snapshot.cc -------------------------------------------------------------------------------- /test/index/crossrepo/package-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/crossrepo/package-map.json -------------------------------------------------------------------------------- /test/index/cuda/cuda_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/cuda/cuda_stub.h -------------------------------------------------------------------------------- /test/index/cuda/cuda_stub.snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/cuda/cuda_stub.snapshot.h -------------------------------------------------------------------------------- /test/index/cuda/kernelcall.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/cuda/kernelcall.cu -------------------------------------------------------------------------------- /test/index/cuda/kernelcall.snapshot.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/cuda/kernelcall.snapshot.cu -------------------------------------------------------------------------------- /test/index/docs/docs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/docs/docs.cc -------------------------------------------------------------------------------- /test/index/docs/docs.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/docs/docs.snapshot.cc -------------------------------------------------------------------------------- /test/index/functions/body.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/functions/body.cc -------------------------------------------------------------------------------- /test/index/functions/body.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/functions/body.snapshot.cc -------------------------------------------------------------------------------- /test/index/functions/ctors_dtors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/functions/ctors_dtors.cc -------------------------------------------------------------------------------- /test/index/functions/ctors_dtors.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/functions/ctors_dtors.snapshot.cc -------------------------------------------------------------------------------- /test/index/functions/functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/functions/functions.cc -------------------------------------------------------------------------------- /test/index/functions/functions.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/functions/functions.snapshot.cc -------------------------------------------------------------------------------- /test/index/functions/methods.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/functions/methods.cc -------------------------------------------------------------------------------- /test/index/functions/methods.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/functions/methods.snapshot.cc -------------------------------------------------------------------------------- /test/index/functions/operators.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/functions/operators.cc -------------------------------------------------------------------------------- /test/index/functions/operators.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/functions/operators.snapshot.cc -------------------------------------------------------------------------------- /test/index/functions/template_body.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/functions/template_body.cc -------------------------------------------------------------------------------- /test/index/functions/template_body.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/functions/template_body.snapshot.cc -------------------------------------------------------------------------------- /test/index/functions/templates.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/functions/templates.cc -------------------------------------------------------------------------------- /test/index/functions/templates.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/functions/templates.snapshot.cc -------------------------------------------------------------------------------- /test/index/fwd_decl/doc_check.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/fwd_decl/doc_check.cc -------------------------------------------------------------------------------- /test/index/fwd_decl/doc_check.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/fwd_decl/doc_check.snapshot.cc -------------------------------------------------------------------------------- /test/index/fwd_decl/doc_check_def.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/fwd_decl/doc_check_def.cc -------------------------------------------------------------------------------- /test/index/fwd_decl/doc_check_def.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/fwd_decl/doc_check_def.snapshot.cc -------------------------------------------------------------------------------- /test/index/fwd_decl/ext_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/fwd_decl/ext_header.h -------------------------------------------------------------------------------- /test/index/fwd_decl/ext_header.snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/fwd_decl/ext_header.snapshot.h -------------------------------------------------------------------------------- /test/index/fwd_decl/external_symbols.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/fwd_decl/external_symbols.snapshot.cc -------------------------------------------------------------------------------- /test/index/fwd_decl/mydefs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/fwd_decl/mydefs.cc -------------------------------------------------------------------------------- /test/index/fwd_decl/mydefs.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/fwd_decl/mydefs.snapshot.cc -------------------------------------------------------------------------------- /test/index/fwd_decl/myheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/fwd_decl/myheader.h -------------------------------------------------------------------------------- /test/index/fwd_decl/myheader.snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/fwd_decl/myheader.snapshot.h -------------------------------------------------------------------------------- /test/index/fwd_decl/myuses.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/fwd_decl/myuses.cc -------------------------------------------------------------------------------- /test/index/fwd_decl/myuses.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/fwd_decl/myuses.snapshot.cc -------------------------------------------------------------------------------- /test/index/macros/macros.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/macros/macros.cc -------------------------------------------------------------------------------- /test/index/macros/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/macros/macros.h -------------------------------------------------------------------------------- /test/index/macros/macros.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/macros/macros.snapshot.cc -------------------------------------------------------------------------------- /test/index/macros/macros.snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/macros/macros.snapshot.h -------------------------------------------------------------------------------- /test/index/macros/system_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/macros/system_header.h -------------------------------------------------------------------------------- /test/index/macros/system_header.snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/macros/system_header.snapshot.h -------------------------------------------------------------------------------- /test/index/macros/use_system_header.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/macros/use_system_header.cc -------------------------------------------------------------------------------- /test/index/macros/use_system_header.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/macros/use_system_header.snapshot.cc -------------------------------------------------------------------------------- /test/index/namespaces/namespaces.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/namespaces/namespaces.cc -------------------------------------------------------------------------------- /test/index/namespaces/namespaces.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/namespaces/namespaces.snapshot.cc -------------------------------------------------------------------------------- /test/index/namespaces/system_header.h: -------------------------------------------------------------------------------- 1 | #pragma GCC system_header 2 | 3 | namespace mystd {} 4 | -------------------------------------------------------------------------------- /test/index/namespaces/system_header.snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/namespaces/system_header.snapshot.h -------------------------------------------------------------------------------- /test/index/types/bad_tagdecl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/types/bad_tagdecl.cc -------------------------------------------------------------------------------- /test/index/types/bad_tagdecl.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/types/bad_tagdecl.snapshot.cc -------------------------------------------------------------------------------- /test/index/types/inheritance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/types/inheritance.cc -------------------------------------------------------------------------------- /test/index/types/inheritance.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/types/inheritance.snapshot.cc -------------------------------------------------------------------------------- /test/index/types/templates.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/types/templates.cc -------------------------------------------------------------------------------- /test/index/types/templates.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/types/templates.snapshot.cc -------------------------------------------------------------------------------- /test/index/types/types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/types/types.cc -------------------------------------------------------------------------------- /test/index/types/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/types/types.h -------------------------------------------------------------------------------- /test/index/types/types.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/types/types.snapshot.cc -------------------------------------------------------------------------------- /test/index/types/types.snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/types/types.snapshot.h -------------------------------------------------------------------------------- /test/index/vars/k&r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/vars/k&r.c -------------------------------------------------------------------------------- /test/index/vars/k&r.snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/vars/k&r.snapshot.c -------------------------------------------------------------------------------- /test/index/vars/members.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/vars/members.cc -------------------------------------------------------------------------------- /test/index/vars/members.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/vars/members.snapshot.cc -------------------------------------------------------------------------------- /test/index/vars/templates.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/vars/templates.cc -------------------------------------------------------------------------------- /test/index/vars/templates.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/vars/templates.snapshot.cc -------------------------------------------------------------------------------- /test/index/vars/vars.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/vars/vars.cc -------------------------------------------------------------------------------- /test/index/vars/vars.snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/index/vars/vars.snapshot.cc -------------------------------------------------------------------------------- /test/ipc_test_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/ipc_test_main.cc -------------------------------------------------------------------------------- /test/preprocessor/already_preprocessed/main.cc: -------------------------------------------------------------------------------- 1 | # 1 "" 1 2 | -------------------------------------------------------------------------------- /test/preprocessor/already_preprocessed/main.preprocessor-history.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/preprocessor/already_preprocessed/main.preprocessor-history.yaml -------------------------------------------------------------------------------- /test/preprocessor/hashinclude/1-1.h: -------------------------------------------------------------------------------- 1 | // Nothing here :) 2 | -------------------------------------------------------------------------------- /test/preprocessor/hashinclude/1-2.h: -------------------------------------------------------------------------------- 1 | #include "1-1.h" 2 | -------------------------------------------------------------------------------- /test/preprocessor/hashinclude/1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/preprocessor/hashinclude/1.h -------------------------------------------------------------------------------- /test/preprocessor/hashinclude/main.cc: -------------------------------------------------------------------------------- 1 | #include "1.h" 2 | 3 | int main(int, char **) { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /test/preprocessor/hashinclude/main.preprocessor-history.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/preprocessor/hashinclude/main.preprocessor-history.yaml -------------------------------------------------------------------------------- /test/preprocessor/ill_behaved/good_header.h: -------------------------------------------------------------------------------- 1 | // Who's a good boy? 🐶 2 | -------------------------------------------------------------------------------- /test/preprocessor/ill_behaved/ill_behaved.h: -------------------------------------------------------------------------------- 1 | #ifdef GOOD 2 | #include "good_header.h" 3 | #endif 4 | -------------------------------------------------------------------------------- /test/preprocessor/ill_behaved/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/preprocessor/ill_behaved/main.cc -------------------------------------------------------------------------------- /test/preprocessor/ill_behaved/main.preprocessor-history.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/preprocessor/ill_behaved/main.preprocessor-history.yaml -------------------------------------------------------------------------------- /test/robustness/compile_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/robustness/compile_commands.json -------------------------------------------------------------------------------- /test/robustness/crash.snapshot.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/robustness/crash.snapshot.log -------------------------------------------------------------------------------- /test/robustness/main.c: -------------------------------------------------------------------------------- 1 | int main(int, char **) { return 0; } 2 | -------------------------------------------------------------------------------- /test/robustness/sleep.snapshot.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/robustness/sleep.snapshot.log -------------------------------------------------------------------------------- /test/robustness/spin.snapshot.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/robustness/spin.snapshot.log -------------------------------------------------------------------------------- /test/test_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/test_main.cc -------------------------------------------------------------------------------- /test/test_main.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -euo pipefail 3 | "$TEST_MAIN" "$@" -------------------------------------------------------------------------------- /test/test_suite.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/test/test_suite.bzl -------------------------------------------------------------------------------- /third_party/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/third_party/BUILD -------------------------------------------------------------------------------- /third_party/abseil.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/third_party/abseil.patch -------------------------------------------------------------------------------- /third_party/actionlint.BUILD: -------------------------------------------------------------------------------- 1 | exports_files(["actionlint"]) 2 | -------------------------------------------------------------------------------- /third_party/bazel_buildtools/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/third_party/bazel_buildtools/BUILD -------------------------------------------------------------------------------- /third_party/cxxopts.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/third_party/cxxopts.BUILD -------------------------------------------------------------------------------- /third_party/dtl.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/third_party/dtl.BUILD -------------------------------------------------------------------------------- /third_party/perfetto.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/third_party/perfetto.BUILD -------------------------------------------------------------------------------- /third_party/perfetto.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/third_party/perfetto.patch -------------------------------------------------------------------------------- /third_party/rapidjson.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/third_party/rapidjson.BUILD -------------------------------------------------------------------------------- /third_party/scip.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/third_party/scip.BUILD -------------------------------------------------------------------------------- /third_party/spdlog.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/third_party/spdlog.BUILD -------------------------------------------------------------------------------- /third_party/utfcpp.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/third_party/utfcpp.BUILD -------------------------------------------------------------------------------- /third_party/wyhash.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/third_party/wyhash.BUILD -------------------------------------------------------------------------------- /third_party/zlib.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/third_party/zlib.BUILD -------------------------------------------------------------------------------- /tools/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/BUILD -------------------------------------------------------------------------------- /tools/analyze_compdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/analyze_compdb.py -------------------------------------------------------------------------------- /tools/analyze_pp_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/analyze_pp_trace.py -------------------------------------------------------------------------------- /tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/benchmark.py -------------------------------------------------------------------------------- /tools/compdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/compdb.py -------------------------------------------------------------------------------- /tools/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/lint.sh -------------------------------------------------------------------------------- /tools/long_trace.pbtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/long_trace.pbtx -------------------------------------------------------------------------------- /tools/package-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/package-map.json -------------------------------------------------------------------------------- /tools/reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/reduce.py -------------------------------------------------------------------------------- /tools/reformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/reformat.sh -------------------------------------------------------------------------------- /tools/reformat_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/reformat_python.py -------------------------------------------------------------------------------- /tools/regenerate-compdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/regenerate-compdb.sh -------------------------------------------------------------------------------- /tools/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/requirements.in -------------------------------------------------------------------------------- /tools/requirements_lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/requirements_lock.txt -------------------------------------------------------------------------------- /tools/version_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/version_check.sh -------------------------------------------------------------------------------- /tools/vm-setup-cuda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/vm-setup-cuda.sh -------------------------------------------------------------------------------- /tools/vm-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/scip-clang/HEAD/tools/vm-setup.sh --------------------------------------------------------------------------------