OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Diagnostics
(Results
1 - 15
of
15
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/tools/libclang/
CIndexDiagnostic.h
1
/*===-- CIndexDiagnostic.h -
Diagnostics
C Interface ------------*- C++ -*-===*\
28
std::vector<std::unique_ptr<CXDiagnosticImpl>>
Diagnostics
;
37
return
Diagnostics
.size();
42
return
Diagnostics
[i].get();
48
return
Diagnostics
.empty();
CXTranslationUnit.h
32
void *
Diagnostics
;
CIndexCodeCompletion.cpp
253
///
Diagnostics
produced while performing code completion.
254
SmallVector<StoredDiagnostic, 8>
Diagnostics
;
256
/// Allocated API-exposed wrappters for
Diagnostics
.
267
/// File manager, used for
diagnostics
.
270
/// Source manager, used for
diagnostics
.
764
Results->
Diagnostics
, Results->TemporaryBuffers);
766
Results->DiagnosticsWrappers.resize(Results->
Diagnostics
.size());
816
os << ", \"diags\": " << Results->
Diagnostics
.size();
905
return Results->
Diagnostics
.size();
913
if (!Results || Index >= Results->
Diagnostics
.size()
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
PointerIterationChecker.cpp
47
std::string
Diagnostics
;
48
llvm::raw_string_ostream OS(
Diagnostics
);
PointerSortingChecker.cpp
47
std::string
Diagnostics
;
48
llvm::raw_string_ostream OS(
Diagnostics
);
GCDAntipatternChecker.cpp
187
std::string
Diagnostics
;
188
llvm::raw_string_ostream OS(
Diagnostics
);
/src/external/apache2/llvm/dist/clang/include/clang/Tooling/Core/
Diagnostic.h
1
//===--- Diagnostic.h - Framework for clang
diagnostics
tools --*- C++ -*-===//
10
// Structures supporting
diagnostics
and refactorings that span multiple
11
// translation units. Indicate
diagnostics
reports and replacements
105
/// Collection of
Diagnostics
generated from a single translation unit.
109
std::vector<Diagnostic>
Diagnostics
;
/src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h
1
//===---
Diagnostics
.h - Helper class for error
diagnostics
-----*- C++ -*-===//
10
///
Diagnostics
class to manage error messages.
50
class
Diagnostics
{
110
Context(ConstructMatcherEnum,
Diagnostics
*Error, StringRef MatcherName,
114
Context(MatcherArgEnum,
Diagnostics
*Error, StringRef MatcherName,
119
Diagnostics
*const Error;
128
OverloadContext(
Diagnostics
* Error);
135
Diagnostics
*const Error;
139
/// Add an error to the
diagnostics
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Rewrite/
Rewriter.cpp
422
AtomicallyMovedFile(DiagnosticsEngine &
Diagnostics
, StringRef Filename,
424
:
Diagnostics
(
Diagnostics
), Filename(Filename), AllWritten(AllWritten) {
430
Diagnostics
.Report(clang::diag::err_unable_to_make_temp)
444
Diagnostics
.Report(clang::diag::err_unable_to_rename_temp)
456
DiagnosticsEngine &
Diagnostics
;
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
DelayedDiagnostic.h
1
//===- DelayedDiagnostic.h - Delayed declarator
diagnostics
-----*- C++ -*-===//
13
/// DelayedDiangostic is used to record
diagnostics
that are being
15
///
diagnostics
-- notably deprecation and access control -- are suppressed
262
/// A collection of
diagnostics
which were delayed.
265
SmallVector<DelayedDiagnostic, 4>
Diagnostics
;
274
: Parent(Other.Parent),
Diagnostics
(std::move(Other.
Diagnostics
)) {
275
Other.
Diagnostics
.clear();
280
Diagnostics
= std::move(Other.
Diagnostics
);
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/Frontend/
CompilerInstance.h
77
/// The
diagnostics
engine instance.
78
IntrusiveRefCntPtr<DiagnosticsEngine>
Diagnostics
;
202
/// - The
diagnostics
engine should have already been created by the client.
327
/// @name
Diagnostics
Engine
330
bool hasDiagnostics() const { return
Diagnostics
!= nullptr; }
332
/// Get the current
diagnostics
engine.
334
assert(
Diagnostics
&& "Compiler instance has no
diagnostics
!");
335
return *
Diagnostics
;
338
/// setDiagnostics - Replace the current
diagnostics
engine
[
all
...]
ASTUnit.h
85
/// \brief Enumerates the available kinds for capturing
diagnostics
.
110
IntrusiveRefCntPtr<DiagnosticsEngine>
Diagnostics
;
149
/// Whether to capture any
diagnostics
produced.
184
/// The set of
diagnostics
produced when creating the preamble.
187
/// The set of
diagnostics
produced when creating this
191
/// The set of
diagnostics
produced when failing to parse, e.g. due
195
/// The number of stored
diagnostics
that come from the driver
198
///
Diagnostics
that come from the driver are retained from one parse to
429
const DiagnosticsEngine &getDiagnostics() const { return *
Diagnostics
; }
430
DiagnosticsEngine &getDiagnostics() { return *
Diagnostics
; }
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenAction.cpp
383
/// Specialized handler for
diagnostics
reported using SMDiagnostic.
605
// from
diagnostics
that genuinely relate to the function itself.
1050
auto &
Diagnostics
= CI.getDiagnostics();
1068
Diagnostics
.Report(SourceLocation(), diag::warn_fe_override_module)
1104
reportOptRecordError(std::move(E),
Diagnostics
, CodeGenOpts);
1110
EmitBackendOutput(
Diagnostics
, CI.getHeaderSearchOpts(), CodeGenOpts,
/src/sys/arch/prep/include/
residual.h
45
Diagnostics
= 0x04,
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp
206
/// The bug report we're describing. Visitors create their
diagnostics
with
209
/// file and visitors construct
diagnostics
), hence its const.
233
/// These
diagnostics
may differ depending on the consumer's settings,
236
/// There are two path
diagnostics
generation modes: with adding edges (used
239
/// Otherwise, more detailed
diagnostics
is emitted for block edges,
347
// Prefer
diagnostics
that come from ConditionBRVisitor over
366
/// An optimization pass over PathPieces that removes redundant
diagnostics
368
/// BugReporterVisitors use different methods to generate
diagnostics
, with
369
/// one capable of emitting
diagnostics
in some cases but not in others. This
510
// it contains any informative
diagnostics
[
all
...]
Completed in 64 milliseconds
Indexes created Thu Apr 09 00:23:28 UTC 2026