HomeSort by: relevance | last modified time | path
    Searched refs:DiagTool (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/tools/diagtool/
DiagTool.h 1 //===- DiagTool.h - Classes for defining diagtool tools -------------------===//
9 // This file implements the boilerplate for defining diagtool tools.
22 namespace diagtool { namespace
24 class DiagTool {
28 DiagTool(llvm::StringRef toolCmd, llvm::StringRef toolDesc);
29 virtual ~DiagTool();
43 DiagTool *getTool(llvm::StringRef toolCmd);
44 void registerTool(DiagTool *tool);
50 template <typename DIAGTOOL>
    [all...]
DiagTool.cpp 1 //===- DiagTool.cpp - Classes for defining diagtool tools -------------------===//
9 // This file implements the boilerplate for defining diagtool tools.
13 #include "DiagTool.h"
17 using namespace diagtool;
19 DiagTool::DiagTool(llvm::StringRef toolCmd, llvm::StringRef toolDesc)
22 DiagTool::~DiagTool() {}
24 typedef llvm::StringMap<DiagTool *> ToolMap
63 namespace diagtool { namespace
    [all...]
diagtool_main.cpp 9 // This file implements the main function for diagtool.
13 #include "DiagTool.h"
15 using namespace diagtool;
19 if (DiagTool *tool = diagTools->getTool(argv[1]))
22 llvm::errs() << "usage: diagtool <command> [<args>]\n\n";

Completed in 17 milliseconds