reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/clang/include/clang/Frontend/CompilerInstance.h
  228   bool ExecuteAction(FrontendAction &Act);

References

tools/clang/examples/clang-interpreter/main.cpp
  204   if (!Clang.ExecuteAction(*Act))
tools/clang/lib/Frontend/CompilerInstance.cpp
 1148         Instance.ExecuteAction(Action);
tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp
  263       Instance.ExecuteAction(Action);
tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
  290   bool Success = Clang->ExecuteAction(*Act);
tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
   99   CRC.RunSafelyOnThread([&]() { Instance.ExecuteAction(parseModelFile); },
tools/clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp
  139     const bool Result = Compiler.ExecuteAction(*Action);
tools/clang/lib/Tooling/Tooling.cpp
  397   const bool Success = Compiler.ExecuteAction(*ScopedToolAction);
tools/clang/tools/extra/clang-include-fixer/IncludeFixer.cpp
  108   Compiler.ExecuteAction(*ScopedToolAction);
tools/clang/unittests/AST/ExternalASTSourceTest.cpp
   60   return Compiler.ExecuteAction(Action);
tools/clang/unittests/Frontend/CodeGenActionTest.cpp
   58   bool Success = Compiler.ExecuteAction(*Act);
tools/clang/unittests/Frontend/FrontendActionTest.cpp
   96   ASSERT_TRUE(compiler.ExecuteAction(test_action));
  116   ASSERT_TRUE(compiler.ExecuteAction(test_action));
  144   ASSERT_TRUE(compiler.ExecuteAction(test_action));
  192   ASSERT_TRUE(Compiler.ExecuteAction(TestAction));
  252   ASSERT_TRUE(Compiler.ExecuteAction(TestAction));
  283     ASSERT_TRUE(Compiler.ExecuteAction(TestAction));
tools/clang/unittests/Tooling/DependencyScannerTest.cpp
   69     return Compiler.ExecuteAction(*Action);
tools/clang/unittests/Tooling/Syntax/TokensTest.cpp
  137     ASSERT_TRUE(Compiler.ExecuteAction(Recorder))
tools/clang/unittests/Tooling/Syntax/TreeTest.cpp
   96     if (!Compiler.ExecuteAction(Recorder)) {