Home
last modified time | relevance | path

Searched refs:ExtraArgsBefore (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/unittests/clang-tidy/
H A DClangTidyOptionsTest.cpp135 ASSERT_TRUE(Options.ExtraArgsBefore.has_value()); in TEST()
137 llvm::join(Options.ExtraArgsBefore->begin(), in TEST()
138 Options.ExtraArgsBefore->end(), ",")); in TEST()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/
H A DClangTidyOptions.cpp131 IO.mapOptional("ExtraArgsBefore", Options.ExtraArgsBefore); in mapping()
189 mergeVectors(ExtraArgsBefore, Other.ExtraArgsBefore); in mergeWith()
H A DClangTidy.cpp521 if (Opts.ExtraArgsBefore) { in runClangTidy()
525 AdjustedArgs.insert(I, Opts.ExtraArgsBefore->begin(), in runClangTidy()
526 Opts.ExtraArgsBefore->end()); in runClangTidy()
H A DClangTidyOptions.h126 llvm::Optional<ArgList> ExtraArgsBefore; member
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DParsedAST.cpp432 if (ClangTidyOpts.ExtraArgsBefore) in build()
433 applyWarningOptions(*ClangTidyOpts.ExtraArgsBefore, TidyGroups, Diags); in build()