Home | History | Annotate | Download | only in TableGen

Lines Matching defs:Category

28 // Diagnostic category computation code.
56 // If the DiagGroup has a category, return it.
61 // check these for a category as well.
70 /// getDiagnosticCategory - Return the category that the specified diagnostic
74 // If the diagnostic is in a group, and that group has a category, use it.
76 // Check the diagnostic's diag group for a category.
82 // If the diagnostic itself has a category, get it.
95 // The zero'th category is "".
102 std::string Category = getDiagnosticCategory(Diags[i], ParentInfo);
103 if (Category.empty()) continue; // Skip diags with no category.
105 unsigned &ID = CategoryIDs[Category];
109 CategoryStrings.push_back(Category);
240 // Category number.
332 // Emit the category table next.
337 OS << "CATEGORY(\"" << *I << "\", " << getDiagCategoryEnum(*I) << ")\n";