Home
last modified time | relevance | path

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

/external/clang/unittests/Tooling/
DToolingTest.cpp62 TEST(runToolOnCode, FindsNoTopLevelDeclOnEmptyCode) { in TEST() argument
65 runToolOnCode(new TestAction(llvm::make_unique<FindTopLevelDeclConsumer>( in TEST()
102 TEST(runToolOnCode, FindsClassDecl) { in TEST() argument
105 runToolOnCode(new TestAction(llvm::make_unique<FindClassDeclXConsumer>( in TEST()
112 runToolOnCode(new TestAction(llvm::make_unique<FindClassDeclXConsumer>( in TEST()
240 TEST(runToolOnCode, TestSkipFunctionBody) { in TEST() argument
241 EXPECT_TRUE(runToolOnCode(new SkipBodyAction, in TEST()
243 EXPECT_FALSE(runToolOnCode(new SkipBodyAction, in TEST()
DRefactoringCallbacksTest.cpp30 ASSERT_TRUE(tooling::runToolOnCode(Factory->create(), Code)) in expectRewritten()
DRefactoringTest.cpp279 return runToolOnCode(new TestAction(this), Code); in runOver()
/external/clang/docs/
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(new clang::SyntaxOnlyAction, "class X {};"));
DRAVFrontendAction.rst199 clang::tooling::runToolOnCode(new FindNamedClassAction, argv[1]);
/external/clang/include/clang/Tooling/
DTooling.h144 bool runToolOnCode(clang::FrontendAction *ToolAction, const Twine &Code,
/external/clang/lib/Tooling/
DTooling.cpp107 bool runToolOnCode(clang::FrontendAction *ToolAction, const Twine &Code, in runToolOnCode() function
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp4482 ASSERT_TRUE(tooling::runToolOnCode(Factory->create(), "int x;")); in TEST()
4504 ASSERT_TRUE(tooling::runToolOnCode(Factory->create(), "int x;")); in TEST()
4530 ASSERT_TRUE(tooling::runToolOnCode(Factory->create(), "int x;")); in TEST()