OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CategoryID
(Results
1 - 3
of
3
) sorted by null
/external/clang/include/clang/Basic/
DiagnosticIDs.h
186
static StringRef getCategoryNameFromID(unsigned
CategoryID
);
/external/clang/lib/Basic/
DiagnosticIDs.cpp
228
/// category, an empty string if
CategoryID
is zero, or null if
CategoryID
is
230
StringRef DiagnosticIDs::getCategoryNameFromID(unsigned
CategoryID
) {
231
if (
CategoryID
>= getNumberOfCategories())
233
return CategoryNameTable[
CategoryID
].getName();
/external/clang/tools/libclang/
CIndexDiagnostic.cpp
326
if (unsigned
CategoryID
= clang_getDiagnosticCategory(Diagnostic)) {
332
Out <<
CategoryID
;
Completed in 82 milliseconds