Home | History | Annotate | Download | only in Frontend

Lines Matching refs:Category

120       unsigned Category, unsigned Flag, StringRef Message) override;
214 /// \brief Emit the string information for the category.
215 unsigned getEmitCategory(unsigned category = 0);
477 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // Category.
486 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Category ID.
488 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Category text.
540 unsigned SDiagsWriter::getEmitCategory(unsigned int category) {
541 if (!State->Categories.insert(category).second)
542 return category;
545 // another record when we lazily generate one for the category entry.
546 StringRef catName = DiagnosticIDs::getCategoryNameFromID(category);
547 RecordData::value_type Record[] = {RECORD_CATEGORY, category, catName.size()};
551 return category;
664 // Emit the category string lazily and get the category ID.
847 unsigned Category, unsigned Flag, StringRef Message) {
850 Location.Col, Location.Offset, CategoryLookup[Category],