HomeSort by relevance Sort by last modified time
    Searched refs:Diagnostic (Results 1 - 25 of 48) sorted by null

1 2

  /external/clang/include/clang/Basic/
Makefile 15 INPUT_TDS = $(wildcard $(PROJ_SRC_DIR)/Diagnostic*.td)
33 $(ObjDir)/Diagnostic%Kinds.inc.tmp : Diagnostic.td $(INPUT_TDS) $(CLANG_TBLGEN) $(ObjDir)/.dir
34 $(Echo) "Building Clang $(patsubst Diagnostic%Kinds.inc.tmp,%,$(@F)) diagnostic tables with tblgen"
35 $(Verb) $(ClangTableGen) -gen-clang-diags-defs -clang-component=$(patsubst Diagnostic%Kinds.inc.tmp,%,$(@F)) -o $(call SYSPATH, $@) $<
37 $(ObjDir)/DiagnosticIndexName.inc.tmp : Diagnostic.td $(INPUT_TDS) $(CLANG_TBLGEN) $(ObjDir)/.dir
38 $(Echo) "Building Clang diagnostic name index with tblgen"
41 $(ObjDir)/DiagnosticGroups.inc.tmp : Diagnostic.td DiagnosticGroups.td $(INPUT_TDS) $(CLANG_TBLGEN) $(ObjDir)/.dir
42 $(Echo) "Building Clang diagnostic groups with tblgen
    [all...]
  /external/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h 1 //===- VerifyDiagnosticConsumer.h - Verifying Diagnostic Client -*- C++ -*-===//
13 #include "clang/Basic/Diagnostic.h"
21 /// VerifyDiagnosticConsumer - Create a diagnostic client which will use
25 /// USING THE DIAGNOSTIC CHECKER:
28 /// comment on the line that has the diagnostic, use:
34 /// enough to ensure that the correct diagnostic was emitted.
47 /// diagnostic to appear as many times as specified. Example:
74 FileID FirstErrorFID; // FileID of first diagnostic
78 /// Create a new verifying diagnostic client, which will issue errors to \arg
79 /// the currently-attached diagnostic client when a diagnostic does not match
    [all...]
TextDiagnosticPrinter.h 1 //===--- TextDiagnosticPrinter.h - Text Diagnostic Client -------*- C++ -*-===//
10 // This is a concrete diagnostic client, which prints the diagnostics to
18 #include "clang/Basic/Diagnostic.h"
33 /// \brief Handle to the currently active text diagnostic emitter.
46 /// setPrefix - Set the diagnostic printer prefix string, which will be
53 void HandleDiagnostic(DiagnosticsEngine::Level Level, const Diagnostic &Info);
ChainedDiagnosticConsumer.h 1 //===- ChainedDiagnosticConsumer.h - Chain Diagnostic Clients ---*- C++ -*-===//
13 #include "clang/Basic/Diagnostic.h"
19 /// ChainedDiagnosticConsumer - Chain two diagnostic clients so that diagnostics
20 /// go to the first client and then the second. The first diagnostic client
56 const Diagnostic &Info) {
LogDiagnosticPrinter.h 1 //===--- LogDiagnosticPrinter.h - Log Diagnostic Client ---------*- C++ -*-===//
13 #include "clang/Basic/Diagnostic.h"
24 /// The primary message line of the diagnostic.
36 /// The ID of the diagnostic.
39 /// The level of the diagnostic.
72 const Diagnostic &Info);
TextDiagnosticBuffer.h 10 // This is a concrete diagnostic client, which buffers the diagnostic messages.
17 #include "clang/Basic/Diagnostic.h"
43 const Diagnostic &Info);
46 /// diagnostic engine.
DiagnosticRenderer.h 1 //===--- DiagnosticRenderer.h - Diagnostic Pretty-Printing ------*- C++ -*-===//
19 #include "clang/Basic/Diagnostic.h"
30 typedef llvm::PointerUnion<const Diagnostic *,
33 /// \brief Class to encapsulate the logic for formatting a diagnostic message.
37 /// diagnostic, including all of the macro backtraces, caret diagnostics, FixIt
50 /// \brief The location of the previous diagnostic if known.
53 /// diagnostic location, or that location itself is invalid or comes from
60 /// root locations rather than diagnostic locations.
63 /// \brief The level of the last diagnostic emitted.
65 /// The level of the last diagnostic emitted. Used to detect level change
    [all...]
  /frameworks/compile/slang/
slang_diagnostic_buffer.h 22 #include "clang/Basic/Diagnostic.h"
46 const clang::Diagnostic& Info);
slang_diagnostic_buffer.cpp 43 clang::Diagnostic const &Info) {
72 slangAssert(0 && "Diagnostic not handled during diagnostic buffering!");
slang_rs_ast_replace.h 26 class Diagnostic;
slang.h 45 class Diagnostic;
82 llvm::OwningPtr<clang::Diagnostic> mDiag;
  /external/clang/utils/
find-unused-diagnostics.sh 4 # in Diagnostic*.td files but not used in sources.
10 grep -E --only-matching --no-filename '(err_|warn_|ext_|note_)[a-z_]+ ' ./include/clang/Basic/Diagnostic*.td > $ALL_DIAGS
  /gdk/sources/llvm-ndk-cc/
Backend.h 36 clang::Diagnostic *Diags,
72 clang::Diagnostic &mDiags;
Compiler.h 25 class Diagnostic;
100 llvm::IntrusiveRefCntPtr<clang::Diagnostic> mDiagnostics;
Compiler.cpp 53 clang::Diagnostic* Diag) {
69 clang::Diagnostic* Diags = static_cast<clang::Diagnostic*>(UserData);
78 mDiagnostics = new clang::Diagnostic(mDiagIDs, mpDiagClient, true);
286 // Inform the diagnostic client we are processing a source file
298 // Inform the diagnostic client we are done with previous source file
  /external/clang/bindings/python/tests/cindex/
test_diagnostics.py 9 assert tu.diagnostics[0].severity == Diagnostic.Warning
19 assert tu.diagnostics[0].severity == Diagnostic.Warning
23 # assert tu.diagnostics[1].severity == Diagnostic.Note
31 assert tu.diagnostics[0].severity == Diagnostic.Warning
45 assert tu.diagnostics[0].severity == Diagnostic.Warning
68 assert d.severity == Diagnostic.Warning
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 10 |* Implements the diagnostic functions of the Clang C interface. *|
162 // -error-on-deserialized-decl, that will emit a diagnostic error,
167 // We check here if a new diagnostic was appended since the last time the
168 // diagnostic set was created, in which case we reset it.
225 void clang_disposeDiagnostic(CXDiagnostic Diagnostic) {
230 CXString clang_formatDiagnostic(CXDiagnostic Diagnostic, unsigned Options) {
231 if (!Diagnostic)
234 CXDiagnosticSeverity Severity = clang_getDiagnosticSeverity(Diagnostic);
244 clang_getSpellingLocation(clang_getDiagnosticLocation(Diagnostic),
254 unsigned N = clang_getDiagnosticNumRanges(Diagnostic);
    [all...]
  /external/clang/include/clang/Sema/
DelayedDiagnostic.h 82 /// Sets a diagnostic to be performed. The diagnostic is given
89 assert(isQuiet() && "partial diagnostic already defined");
93 assert(isQuiet() && "partial diagnostic already defined");
94 assert(DiagID && "creating null diagnostic");
111 /// A diagnostic message which has been conditionally emitted pending
140 unsigned diagnostic,
147 DD.ForbiddenTypeData.Diagnostic = diagnostic;
154 assert(Kind == Access && "Not an access diagnostic.")
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
TemplateCompiler.java 34 import javax.tools.Diagnostic;
146 List<Diagnostic<? extends JavaFileObject>> diagnostics, Exception cause)
152 for (Diagnostic<? extends JavaFileObject> diagnostic : diagnostics) {
153 message.append(diagnostic).append('\n');
  /external/clang/lib/Basic/
Android.mk 25 Diagnostic.cpp \
  /external/clang/lib/Frontend/
TextDiagnosticPrinter.cpp 1 //===--- TextDiagnosticPrinter.cpp - Diagnostic Printer -------------------===//
10 // This diagnostic client prints out their diagnostic messages.
49 /// \brief Print any diagnostic option information to a raw_ostream.
51 /// This implements all of the logic for adding diagnostic options to a message
56 const Diagnostic &Info,
67 // report to the user what happened by inferring what the diagnostic engine
68 // did. Eventually it might make more sense to have the diagnostic engine
69 // include some "why" information in the diagnostic.
82 // If the diagnostic is an extension diagnostic and not enabled by defaul
    [all...]
TextDiagnosticBuffer.cpp 10 // This is a concrete diagnostic client, which buffers the diagnostic messages.
23 const Diagnostic &Info) {
31 "Diagnostic not handled during diagnostic buffering!");
  /external/clang/include/clang/Rewrite/
FixItRewriter.h 1 //===--- FixItRewriter.h - Fix-It Rewriter Diagnostic Client ----*- C++ -*-===//
10 // This is a diagnostic client adaptor that performs rewrites as
12 // then forwards any diagnostics to the adapted diagnostic client.
18 #include "clang/Basic/Diagnostic.h"
50 /// \brief If true, only pass the diagnostic to the actual diagnostic consumer
51 /// if it is an error or a fixit was applied as part of the diagnostic.
66 /// \brief The diagnostic client that performs the actual formatting
78 /// \brief Whether the previous diagnostic was not passed to the consumer.
117 /// HandleDiagnostic - Handle this diagnostic, reporting it to the user o
    [all...]
  /cts/tools/dex-tools/test/dex/reader/util/
JavaSourceToDexUtil.java 25 import javax.tools.Diagnostic;
98 for (Diagnostic<? extends JavaFileObject> dia : diacol.getDiagnostics()) {
  /external/clang/
clang-tblgen-rules.mk 92 ifneq ($(filter Diagnostic%Kinds.inc,$(TBLGEN_TABLES)),)
93 LOCAL_GENERATED_SOURCES += $(addprefix $(intermediates)/include/clang/Basic/,$(filter Diagnostic%Kinds.inc,$(TBLGEN_TABLES)))
94 $(intermediates)/include/clang/Basic/Diagnostic%Kinds.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
95 $(intermediates)/include/clang/Basic/Diagnostic%Kinds.inc: $(CLANG_ROOT_PATH)/include/clang/Basic/Diagnostic.td $(CLANG_TBLGEN)
96 $(call transform-host-clang-td-to-out,clang-diags-defs -clang-component=$(patsubst Diagnostic%Kinds.inc,%,$(@F)))
102 $(intermediates)/include/clang/Basic/DiagnosticGroups.inc: $(CLANG_ROOT_PATH)/include/clang/Basic/Diagnostic.td $(CLANG_ROOT_PATH)/include/clang/Basic/DiagnosticGroups.td $(CLANG_TBLGEN)
109 $(intermediates)/include/clang/Basic/DiagnosticIndexName.inc: $(CLANG_ROOT_PATH)/include/clang/Basic/Diagnostic.td $(CLANG_TBLGEN)

Completed in 374 milliseconds

1 2