Home
last modified time | relevance | path

Searched refs:CategoryName (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnostic.td47 string CategoryName = "";
54 string CategoryName = Name;
61 string CategoryName = "";
91 string CategoryName = "";
H A DDiagnosticSerializationKinds.td10 let CategoryName = "AST Deserialization Issue" in {
139 } // let CategoryName
141 let CategoryName = "AST Serialization Issue" in {
150 } // let CategoryName
H A DDiagnosticRefactoringKinds.td15 let CategoryName = "Refactoring Invocation Issue" in {
H A DDiagnosticInstallAPIKinds.td14 let CategoryName = "Command line" in {
33 let CategoryName = "Verification" in {
H A DDiagnosticCommonKinds.td55 let CategoryName = "Lexical or Preprocessor Issue" in {
86 let CategoryName = "Parse Issue" in {
152 let CategoryName = "Nullability Issue" in {
302 let CategoryName = "Inline Assembly Issue" in {
H A DDiagnosticCommentKinds.td10 let CategoryName = "Documentation Issue" in {
H A DDiagnosticFrontendKinds.td288 let CategoryName = "Codegen ABI Check" in {
352 let CategoryName = "Instrumentation Issue" in {
H A DDiagnosticParseKinds.td20 let CategoryName = "Inline Assembly Issue" in {
32 let CategoryName = "Parse Issue" in {
511 let CategoryName = "ARC Parse Issue" in {
1685 let CategoryName = "Modules Issue" in {
1720 let CategoryName = "Generics Issue" in {
1735 let CategoryName = "Coroutines Issue" in {
1743 let CategoryName = "Concepts Issue" in {
H A DDiagnosticLexKinds.td13 let Component = "Lex", CategoryName = "Lexical or Preprocessor Issue" in {
337 let CategoryName = "User-Defined Issue" in {
980 let CategoryName = "Nullability Issue" in {
995 let CategoryName = "Dependency Directive Source Scanner Issue" in {
H A DDiagnosticASTKinds.td429 let CategoryName = "Inline Assembly Issue" in {
444 let CategoryName = "VTable ABI Issue" in {
H A DDiagnosticSemaKinds.td14 let CategoryName = "Semantic Issue" in {
3491 let CategoryName = "Cocoa API Issue" in {
6618 let CategoryName = "ARC Semantic Issue" in {
6622 let CategoryName = "ARC Weak References" in {
6649 let CategoryName = "ARC Restrictions" in {
6770 let CategoryName = "ARC Retain Cycle" in {
6785 let CategoryName = "ARC and @properties" in {
6811 let CategoryName = "ARC Casting Rules" in {
8210 let CategoryName = "Lambda Issue" in {
9320 let CategoryName = "Inline Assembly Issue" in {
[all …]
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DFrontend.cpp50 StringRef CategoryName, in addObjCCategory() argument
54 llvm::MachO::RecordsSlice::addObjCCategory(ClassToExtend, CategoryName); in addObjCCategory()
H A DVisitor.cpp199 StringRef CategoryName = D->getName(); in VisitObjCCategoryDecl() local
209 Ctx.Slice->addObjCCategory(InterfaceName, CategoryName, Avail, D, *Access) in VisitObjCCategoryDecl()
/freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/
H A DFrontendRecords.h83 addObjCCategory(StringRef ClassToExtend, StringRef CategoryName,
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCGNU.cpp446 StringRef CategoryName,
2995 StringRef CategoryName, in GenerateMethodList() argument
3375 const std::string CategoryName = "AnotherHack"; in GenerateProtocolHolderCategory() local
3376 Elements.add(MakeConstantString(CategoryName)); in GenerateProtocolHolderCategory()
3379 Elements.add(GenerateMethodList(ClassName, CategoryName, {}, false)); in GenerateProtocolHolderCategory()
3381 Elements.add(GenerateMethodList(ClassName, CategoryName, {}, true)); in GenerateProtocolHolderCategory()
3459 std::string CategoryName = OCD->getNameAsString(); in GenerateCategory() local
3466 Elements.add(MakeConstantString(CategoryName)); in GenerateCategory()
3473 GenerateMethodList(ClassName, CategoryName, InstanceMethods, false)); in GenerateCategory()
3480 Elements.add(GenerateMethodList(ClassName, CategoryName, ClassMethods, true)); in GenerateCategory()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp1817 const IdentifierInfo *CategoryName, SourceLocation CategoryLoc, in ActOnStartCategoryInterface() argument
1830 CategoryName == nullptr)) { in ActOnStartCategoryInterface()
1836 CategoryName, IDecl, typeParamList); in ActOnStartCategoryInterface()
1846 if (!CategoryName && IDecl->getImplementation()) { in ActOnStartCategoryInterface()
1852 if (CategoryName) { in ActOnStartCategoryInterface()
1855 = IDecl->FindCategoryDeclaration(CategoryName)) { in ActOnStartCategoryInterface()
1858 << ClassName << CategoryName; in ActOnStartCategoryInterface()
1868 CategoryName ? TypeParamListContext::Category in ActOnStartCategoryInterface()
1874 << (CategoryName != nullptr) in ActOnStartCategoryInterface()
1883 ClassLoc, CategoryLoc, CategoryName, IDecl, in ActOnStartCategoryInterface()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h300 const IdentifierInfo *CategoryName, SourceLocation CategoryLoc,