Home
last modified time | relevance | path

Searched refs:runToolOnCode (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DLibTooling.rst27 example to unit test parts of the Clang AST, ``runToolOnCode`` is what you
34 TEST(runToolOnCode, CanSyntaxCheckCode) {
35 // runToolOnCode returns whether the action was correctly run over the
37 EXPECT_TRUE(runToolOnCode(std::make_unique<clang::SyntaxOnlyAction>(), "class X {};"));
H A DRAVFrontendAction.rst196 clang::tooling::runToolOnCode(std::make_unique<FindNamedClassAction>(), argv[1]);
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/
H A DTooling.h157 bool runToolOnCode(std::unique_ptr<FrontendAction> ToolAction, const Twine &Code,
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/
H A DTooling.cpp156 bool runToolOnCode(std::unique_ptr<FrontendAction> ToolAction, in runToolOnCode() function