OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Diagnostic
(Results
1 - 25
of
57
) sorted by null
1
2
3
/frameworks/compile/mclinker/include/mcld/LD/
DiagnosticPrinter.h
15
#include <mcld/LD/
Diagnostic
.h>
21
* \brief DiagnosticPrinter provides the interface to customize
diagnostic
40
/// HandleDiagnostic - Handle this
diagnostic
, reporting it to the user or
43
const
Diagnostic
& pInfo);
Diagnostic.h
1
//===-
Diagnostic
.h -------------------------------------------------------===//
21
/** \class
Diagnostic
22
* \brief
Diagnostic
provides current status to DiagnosticPrinters.
24
class
Diagnostic
27
Diagnostic
(DiagnosticEngine& pEngine);
29
~
Diagnostic
();
84
// format - format this
diagnostic
into string, subsituting the formal
TextDiagnosticPrinter.h
32
/// HandleDiagnostic - Handle this
diagnostic
, reporting it to the user or
35
const
Diagnostic
& pInfo);
/frameworks/compile/mclinker/lib/LD/
DiagnosticPrinter.cpp
25
/// HandleDiagnostic - Handle this
diagnostic
, reporting it to the user or
28
const
Diagnostic
& pInfo)
Diagnostic.cpp
1
//===-
Diagnostic
.cpp -----------------------------------------------------===//
9
#include <mcld/LD/
Diagnostic
.h>
19
//
Diagnostic
20
Diagnostic
::
Diagnostic
(DiagnosticEngine& pEngine)
24
Diagnostic
::~
Diagnostic
()
28
// format - format this
diagnostic
into string, subsituting the formal
30
void
Diagnostic
::format(std::string& pOutStr) const
38
const char*
Diagnostic
::findMatch(char pVal
[
all
...]
DiagnosticInfos.cpp
14
#include <mcld/LD/
Diagnostic
.h>
106
Diagnostic
info(pEngine);
/external/clang/include/clang/Basic/
Makefile
16
INPUT_TDS = $(wildcard $(PROJ_SRC_DIR)/
Diagnostic
*.td)
34
$(ObjDir)/
Diagnostic
%Kinds.inc.tmp :
Diagnostic
.td $(INPUT_TDS) $(CLANG_TBLGEN) $(ObjDir)/.dir
35
$(Echo) "Building Clang $(patsubst
Diagnostic
%Kinds.inc.tmp,%,$(@F))
diagnostic
tables with tblgen"
36
$(Verb) $(ClangTableGen) -gen-clang-diags-defs -clang-component=$(patsubst
Diagnostic
%Kinds.inc.tmp,%,$(@F)) -o $(call SYSPATH, $@) $<
38
$(ObjDir)/DiagnosticIndexName.inc.tmp :
Diagnostic
.td $(INPUT_TDS) $(CLANG_TBLGEN) $(ObjDir)/.dir
39
$(Echo) "Building Clang
diagnostic
name index with tblgen"
42
$(ObjDir)/DiagnosticGroups.inc.tmp :
Diagnostic
.td DiagnosticGroups.td $(INPUT_TDS) $(CLANG_TBLGEN) $(ObjDir)/.dir
43
$(Echo) "Building Clang
diagnostic
groups with tblgen
[
all
...]
/external/clang/utils/
find-unused-diagnostics.sh
4
# in
Diagnostic
*.td files but not used in sources.
7
# Gather all
diagnostic
identifiers from the .td files.
8
ALL_DIAGS=$(grep -E --only-matching --no-filename '(err_|warn_|ext_|note_)[a-z_]+' ./include/clang/Basic/
Diagnostic
*.td)
/external/clang/include/clang/Frontend/
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"
32
/// \brief Handle to the currently active text
diagnostic
emitter.
45
/// setPrefix - Set the
diagnostic
printer prefix string, which will be
52
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"
31
typedef llvm::PointerUnion<const
Diagnostic
*,
34
/// \brief Class to encapsulate the logic for formatting a
diagnostic
message.
39
///
diagnostic
, including all of the macro backtraces, caret diagnostics, FixIt
51
/// \brief The location of the previous
diagnostic
if known.
54
///
diagnostic
location, or that location itself is invalid or comes from
61
/// root locations rather than
diagnostic
locations.
64
/// \brief The level of the last
diagnostic
emitted.
66
/// 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
48
class
Diagnostic
;
85
llvm::OwningPtr<clang::
Diagnostic
> mDiag;
/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. *|
172
// -error-on-deserialized-decl, that will emit a
diagnostic
error,
177
// We check here if a new
diagnostic
was appended since the last time the
178
//
diagnostic
set was created, in which case we reset it.
234
void clang_disposeDiagnostic(CXDiagnostic
Diagnostic
) {
239
CXString clang_formatDiagnostic(CXDiagnostic
Diagnostic
, unsigned Options) {
240
if (!
Diagnostic
)
243
CXDiagnosticSeverity Severity = clang_getDiagnosticSeverity(
Diagnostic
);
253
clang_getSpellingLocation(clang_getDiagnosticLocation(
Diagnostic
),
263
unsigned N = clang_getDiagnosticNumRanges(
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
26
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
.
109
const
Diagnostic
&Info)
[
all
...]
/external/clang/include/clang/Rewrite/Frontend/
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
...]
/external/clang/
clang-tblgen-rules.mk
167
ifneq ($(filter
Diagnostic
%Kinds.inc,$(TBLGEN_TABLES)),)
168
LOCAL_GENERATED_SOURCES += $(addprefix $(intermediates)/include/clang/Basic/,$(filter
Diagnostic
%Kinds.inc,$(TBLGEN_TABLES)))
169
$(intermediates)/include/clang/Basic/
Diagnostic
%Kinds.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
170
$(intermediates)/include/clang/Basic/
Diagnostic
%Kinds.inc: \
171
$(CLANG_ROOT_PATH)/include/clang/Basic/
Diagnostic
.td \
172
$(CLANG_ROOT_PATH)/include/clang/Basic/
Diagnostic
%Kinds.td \
174
$(call transform-host-clang-td-to-out,clang-diags-defs -clang-component=$(patsubst
Diagnostic
%Kinds.inc,%,$(@F)))
180
$(intermediates)/include/clang/Basic/DiagnosticGroups.inc: $(CLANG_ROOT_PATH)/include/clang/Basic/
Diagnostic
.td $(CLANG_ROOT_PATH)/include/clang/Basic/DiagnosticGroups.td | $(CLANG_TBLGEN)
187
$(intermediates)/include/clang/Basic/DiagnosticIndexName.inc: $(CLANG_ROOT_PATH)/include/clang/Basic/
Diagnostic
.td | $(CLANG_TBLGEN)
/cts/tools/dex-tools/test/dex/reader/util/
JavaSourceToDexUtil.java
25
import javax.tools.
Diagnostic
;
98
for (
Diagnostic
<? extends JavaFileObject> dia : diacol.getDiagnostics()) {
Completed in 370 milliseconds
1
2
3