OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Warning
(Results
1 - 25
of
25
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_report_decorator.h
30
const char *
Warning
() const { return Red(); }
/src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_report_decorator.h
29
const char *
Warning
() const { return Red(); }
/src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_report_decorator.h
29
const char *
Warning
() const { return Red(); }
/src/external/apache2/llvm/dist/clang/include/clang/Frontend/
SerializedDiagnostics.h
46
Warning
,
/src/external/apache2/llvm/dist/clang/include/clang/Tooling/Core/
Diagnostic.h
70
Warning
= DiagnosticsEngine::
Warning
,
92
/// Diagnostic level. Can indicate either an error or a
warning
.
/src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
LLLexer.h
72
void
Warning
(LocTy WarningLoc, const Twine &Msg) const;
73
void
Warning
(const Twine &Msg) const { return
Warning
(getLoc(), Msg); }
/src/external/apache2/llvm/dist/llvm/include/llvm/InterfaceStub/
ELFStub.h
44
Optional<std::string>
Warning
;
/src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h
70
bool
Warning
(SMLoc L, const Twine &Msg) {
71
return getParser().
Warning
(L, Msg);
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/
WithColor.h
34
Warning
,
93
/// Convenience method for printing "
warning
: " to stderr.
94
static raw_ostream &
warning
();
103
/// Convenience method for printing "
warning
: " to the given stream.
104
static raw_ostream &
warning
(raw_ostream &OS, StringRef Prefix = "",
132
/// Implement default handling for
Warning
.
133
/// Print "
warning
: " to stderr.
134
static void defaultWarningHandler(Error
Warning
);
/src/external/apache2/llvm/dist/clang/include/clang/Basic/
DiagnosticOptions.h
43
Warning
= 1 << 2,
45
All = Note | Remark |
Warning
| Error
DiagnosticIDs.h
77
/// to either Ignore (nothing), Remark (emit a remark),
Warning
78
/// (emit a
warning
) or Error (emit as an error). It allows clients to
84
Warning
= 3, ///< Present this diagnostic as a
warning
.
137
/// Whether this mapping attempted to map the diagnostic to a
warning
, but
168
Ignored, Note, Remark,
Warning
, Error, Fatal
198
/// diagnostic ID is a
Warning
or Extension.
223
/// treated as a
warning
/error by default.
228
/// Return the lowest-level
warning
option that enables the specified
Diagnostic.h
198
Warning
= DiagnosticIDs::
Warning
,
470
/// I.e. an error that was not upgraded from a
warning
by -Werror.
757
LastDiagLevel = Ignored ? DiagnosticIDs::Ignored : DiagnosticIDs::
Warning
;
768
/// mapped onto ignore/
warning
/error.
811
/// Set the
warning
-as-error flag for the given diagnostic group.
836
/// upgraded from a
warning
by -Werror.
1806
///
warning
options specified on the command line.
/src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLLexer.cpp
33
void LLLexer::
Warning
(LocTy WarningLoc, const Twine &Msg) const {
/src/external/apache2/llvm/dist/llvm/tools/llvm-ifs/
llvm-ifs.cpp
92
Optional<std::string>
Warning
;
126
IO.mapOptional("
Warning
", Symbol.
Warning
);
389
ElfSymbol.
Warning
= IfsSymbol.
Warning
;
556
// TODO: Not checking
Warning
. Will be dropped.
/src/external/apache2/llvm/dist/llvm/tools/dsymutil/
MachODebugMapParser.cpp
107
void
Warning
(const Twine &Msg, StringRef File = StringRef()) {
108
WithColor::
warning
() << "("
166
Warning
("unable to open object file: " + toString(std::move(Err)),
174
Warning
("unable to open object file: " + toString(std::move(Err)),
479
Warning
("could not find object file symbol for symbol " + Twine(Name));
485
Warning
(Twine("failed to insert symbol '") + Name + "' in the debug map.");
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAvailability.cpp
369
unsigned
Warning
= UseNewWarning ? diag::warn_unguarded_availability_new
375
S.Diag(Loc,
Warning
) << OffendingDecl << PlatformName
483
llvm_unreachable("
Warning
for availability of available declaration?");
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Module.h
122
/// Emits a
warning
if two values disagree. The result value will be the
124
Warning
= 2,
/src/external/bsd/pcc/dist/pcc/mip/
common.c
136
*
warning
144
fprintf(stderr, "
warning
: ");
157
*
warning
169
fprintf(stderr, "
warning
: ");
179
struct
Warning
{
189
struct
Warning
Warnings[] = {
230
* set the warn/err status of a conditional
warning
235
struct
Warning
*w = Warnings;
248
* handle a conditional
warning
flag.
253
struct
Warning
*w
[
all
...]
/src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
llvm.ml
331
|
Warning
339
|
Warning
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/AsmParser/
HexagonAsmParser.cpp
114
void
Warning
(SMLoc L, const Twine &Msg) { Parser.
Warning
(L, Msg); }
548
Warning
(MCI.getLoc(), "Signed/Unsigned mismatch");
886
Warning
(Begin, "Missing parenthesis around predicate register");
904
Warning
(Begin, "Missing parenthesis around predicate register");
963
Warning
(Loc, "Register name is not contigious");
/src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp
102
void
Warning
(SMLoc L, const Twine &Msg) { getParser().
Warning
(L, Msg); }
/src/external/apache2/llvm/dist/clang/bindings/python/clang/
cindex.py
376
Warning
= 2
/src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
AsmParser.cpp
239
bool
Warning
(SMLoc L, const Twine &Msg, SMRange Range = None) override;
693
// ".
warning
"
825
bool AsmParser::
Warning
(SMLoc L, const Twine &Msg, SMRange Range) {
873
return
Warning
(Loc, "negative count has no effect");
3323
Warning
(SizeLoc, "'.fill' directive with negative size has no effect");
3327
Warning
(SizeLoc, "'.fill' directive with size greater than 8 has been truncated to 8");
3332
Warning
(ExprLoc, "'.fill' directive pattern has been truncated to 32-bits");
3393
Warning
(AlignmentLoc, "p2align directive with no operand(s) is ignored");
3433
Warning
(MaxBytesLoc, "maximum bytes expression exceeds alignment and "
3567
return
Warning
(DirectiveLoc, "inconsistent use of MD5 checksums")
[
all
...]
MasmParser.cpp
489
bool
Warning
(SMLoc L, const Twine &Msg, SMRange Range = None) override;
1073
bool MasmParser::
Warning
(SMLoc L, const Twine &Msg, SMRange Range) {
3654
return
Warning
(SignLoc, "MASM-style hex floats ignore explicit sign");
4476
return
Warning
(AlignmentLoc,
4609
return
Warning
(DirectiveLoc, "file 0 not supported prior to DWARF-5");
4621
return
Warning
(DirectiveLoc, "inconsistent use of MD5 checksums");
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp
439
bool
Warning
(SMLoc L, const Twine &Msg, SMRange Range = None) {
440
return getParser().
Warning
(L, Msg, Range);
4539
Warning
(AfterMinusLoc, StringRef("duplicated register (") +
4573
Warning
(RegLoc, "duplicated register (" + RegTok.getString() +
4588
Warning
(RegLoc, "register list not in ascending order");
4599
Warning
(RegLoc, "duplicated register (" + RegTok.getString() +
7638
return
Warning
(Loc, "predicated instructions should be in IT block");
10963
Warning
(IDLoc, "deprecated instruction in IT block");
11290
Warning
(Loc, Twine("new target does not support ") +
Completed in 64 milliseconds
Indexes created Wed Mar 04 05:31:52 UTC 2026