OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DiagnosticLevelMask
(Results
1 - 4
of
4
) sorted by null
/external/clang/lib/Basic/
DiagnosticOptions.cpp
19
raw_ostream& operator<<(raw_ostream& Out,
DiagnosticLevelMask
M) {
20
using UT = std::underlying_type<
DiagnosticLevelMask
>::type;
/external/clang/include/clang/Basic/
DiagnosticOptions.h
30
enum class
DiagnosticLevelMask
: unsigned {
39
inline
DiagnosticLevelMask
operator~(
DiagnosticLevelMask
M) {
40
using UT = std::underlying_type<
DiagnosticLevelMask
>::type;
41
return static_cast<
DiagnosticLevelMask
>(~static_cast<UT>(M));
44
inline
DiagnosticLevelMask
operator|(
DiagnosticLevelMask
LHS,
45
DiagnosticLevelMask
RHS) {
46
using UT = std::underlying_type<
DiagnosticLevelMask
>::type;
47
return static_cast<
DiagnosticLevelMask
>(
[
all
...]
/external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp
750
const
DiagnosticLevelMask
DiagMask =
756
bool(
DiagnosticLevelMask
::Error & DiagMask));
761
bool(
DiagnosticLevelMask
::Warning & DiagMask));
766
bool(
DiagnosticLevelMask
::Remark & DiagMask));
771
bool(
DiagnosticLevelMask
::Note & DiagMask));
866
const
DiagnosticLevelMask
DiagMask =
868
if (bool(
DiagnosticLevelMask
::Error & DiagMask))
871
if (bool(
DiagnosticLevelMask
::Warning & DiagMask))
874
if (bool(
DiagnosticLevelMask
::Remark & DiagMask))
877
if (bool(
DiagnosticLevelMask
::Note & DiagMask)
[
all
...]
CompilerInvocation.cpp
331
DiagnosticLevelMask
&M) {
334
DiagnosticLevelMask
const PM =
335
llvm::StringSwitch<
DiagnosticLevelMask
>(Level)
336
.Case("note",
DiagnosticLevelMask
::Note)
337
.Case("remark",
DiagnosticLevelMask
::Remark)
338
.Case("warning",
DiagnosticLevelMask
::Warning)
339
.Case("error",
DiagnosticLevelMask
::Error)
340
.Default(
DiagnosticLevelMask
::None);
341
if (PM ==
DiagnosticLevelMask
::None) {
[
all
...]
Completed in 407 milliseconds