HomeSort by relevance Sort by last modified time
    Searched refs:diagtool (Results 1 - 13 of 13) 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";
Makefile 1 ##===- tools/diagtool/Makefile -----------------------------*- Makefile -*-===##
11 TOOLNAME = diagtool
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 14 namespace diagtool { namespace
113 } // 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";
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/tools/
Makefile 15 PARALLEL_DIRS := driver diagtool
  /external/lldb/tools/lldb-perf/common/clang/
build-clang.sh 24 ( cd ./Debug/bin ; rm -rf ll* clang-check clang-tblgen count diagtool fpcmp macho-dump not opt yaml2obj FileCheck FileUpdate arcmt-test c-arcmt-test c-index-test bugpoint )
25 ( cd ./tools ; rm -rf ll* clang-check clang-tblgen count diagtool fpcmp lto macho-dump not opt yaml2obj FileCheck FileUpdate arcmt-test c-arcmt-test c-index-test bugpoint )
27 ( cd ./tools/clang/tools ; rm -rf arcmt-test c-arcmt-test c-index-test clang-check diagtool libclang )
  /external/clang/test/Misc/
warning-flags.c 1 RUN: diagtool list-warnings > %t 2>&1

Completed in 168 milliseconds