HomeSort by relevance Sort by last modified time
    Searched refs:diagtool (Results 1 - 10 of 10) sorted by null

  /external/clang/tools/diag-build/
diag-build.sh 5 # diag-build acts as a wrapper for 'diagtool show-enabled', in the same way
17 echo 'diagtool must be in your PATH'
58 diagtool=$(which diagtool)
59 if [[ -z "$diagtool" ]]; then
60 if [[ -x $(dirname $0)/diagtool ]]; then
61 diagtool=$(dirname $0)/diagtool
63 echo 'Error: could not find diagtool.' 1>&2
104 sed $EXTENDED_SED_FLAG "s:($escCC|$escCXX):${diagtool//:/\\:} show-enabled:g
    [all...]
  /external/clang/tools/diagtool/
DiagnosticNames.cpp 15 using namespace diagtool;
23 llvm::ArrayRef<DiagnosticRecord> diagtool::getBuiltinDiagnosticsByName() {
52 const DiagnosticRecord &diagtool::getDiagnosticForID(short DiagID) {
95 llvm::ArrayRef<GroupRecord> diagtool::getDiagnosticGroups() {
diagtool_main.cpp 10 // This file implements the main function for diagtool.
14 #include "DiagTool.h"
16 using namespace diagtool;
20 if (DiagTool *tool = diagTools->getTool(argv[1]))
23 llvm::errs() << "usage: diagtool <command> [<args>]\n\n";
DiagTool.h 1 //===- DiagTool.h - Classes for defining diagtool tools -------------------===//
10 // This file implements the boilerplate for defining diagtool tools.
23 namespace diagtool { namespace
25 class DiagTool {
29 DiagTool(llvm::StringRef toolCmd, llvm::StringRef toolDesc);
30 virtual ~DiagTool();
44 DiagTool *getTool(llvm::StringRef toolCmd);
45 void registerTool(DiagTool *tool);
51 template <typename DIAGTOOL>
    [all...]
DiagTool.cpp 1 //===- DiagTool.cpp - Classes for defining diagtool tools -------------------===//
10 // This file implements the boilerplate for defining diagtool tools.
14 #include "DiagTool.h"
19 using namespace diagtool;
21 DiagTool::DiagTool(llvm::StringRef toolCmd,
25 DiagTool::~DiagTool() {}
27 typedef llvm::StringMap<DiagTool *> ToolMap
66 namespace diagtool { namespace
    [all...]
DiagnosticNames.h 17 namespace diagtool { namespace
116 } // end namespace diagtool
ListWarnings.cpp 1 //===- ListWarnings.h - diagtool tool for printing warning flags ----------===//
10 // This file provides a diagtool tool that displays warning flags for
15 #include "DiagTool.h"
28 using namespace diagtool;
ShowEnabledWarnings.cpp 1 //===- ShowEnabledWarnings - diagtool tool for printing enabled flags -----===//
10 #include "DiagTool.h"
24 using namespace diagtool;
40 llvm::errs() << "Usage: diagtool show-enabled [<flags>] <single-input.c>\n";
68 Args.push_back("diagtool");
TreeView.cpp 1 //===- TreeView.cpp - diagtool tool for printing warning flags ------------===//
10 #include "DiagTool.h"
24 using namespace diagtool;
143 llvm::errs() << "Usage: diagtool tree [--flags-only] [<diagnostic-group>]\n";
  /external/clang/test/Misc/
warning-flags.c 1 RUN: diagtool list-warnings > %t 2>&1

Completed in 163 milliseconds