Home
last modified time | relevance | path

Searched refs:Cat (Results 1 – 25 of 27) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DBugType.h40 BugType(CheckerNameRef CheckerName, StringRef Name, StringRef Cat,
42 : CheckerName(CheckerName), Description(Name), Category(Cat), in CheckerName()
44 BugType(const CheckerBase *Checker, StringRef Name, StringRef Cat,
47 Category(Cat), Checker(Checker), SuppressOnSink(SuppressOnSink) {}
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DDeclObjC.cpp138 for (const auto *Cat : ID->visible_categories()) { in HasUserDeclaredSetterMethod() local
139 if (ObjCMethodDecl *MD = Cat->getInstanceMethod(Sel)) in HasUserDeclaredSetterMethod()
142 if (Cat->IsClassExtension()) in HasUserDeclaredSetterMethod()
148 for (const auto *P : Cat->properties()) in HasUserDeclaredSetterMethod()
275 for (const auto *Cat : OID->visible_categories()) { in FindPropertyDeclaration() local
276 if (!Cat->IsClassExtension()) in FindPropertyDeclaration()
277 if (ObjCPropertyDecl *P = Cat->FindPropertyDeclaration( in FindPropertyDeclaration()
706 for (const auto *Cat : ClassDecl->visible_categories()) in lookupMethod() local
707 if ((MethodDecl = Cat->getMethod(Sel, isInstance))) in lookupMethod()
708 if (C != Cat || !MethodDecl->isImplicit()) in lookupMethod()
[all …]
DASTContext.cpp2594 for (const auto *Cat : OI->visible_categories()) in CollectInheritedProtocols() local
2595 CollectInheritedProtocols(Cat, Protocols); in CollectInheritedProtocols()
DASTImporter.cpp4962 for (auto *Cat : From->known_categories()) { in ImportDefinition() local
4963 auto ToCatOrErr = import(Cat); in ImportDefinition()
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DObjCUnusedIVarsChecker.cpp89 for (const auto *Cat : ID->getClassInterface()->visible_categories()) { in Scan() local
90 if (const ObjCCategoryImplDecl *CID = Cat->getImplementation()) in Scan()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DDeclObjC.h1618 static bool isVisibleCategory(ObjCCategoryDecl *Cat);
1688 static bool isVisibleExtension(ObjCCategoryDecl *Cat);
1724 static bool isKnownExtension(ObjCCategoryDecl *Cat);
1846 const ObjCCategoryDecl *Cat, in lookupPropertyAccessor() argument
1851 Cat); in lookupPropertyAccessor()
2878 inline bool ObjCInterfaceDecl::isVisibleCategory(ObjCCategoryDecl *Cat) { in isVisibleCategory() argument
2879 return Cat->isUnconditionallyVisible(); in isVisibleCategory()
2882 inline bool ObjCInterfaceDecl::isVisibleExtension(ObjCCategoryDecl *Cat) { in isVisibleExtension() argument
2883 return Cat->IsClassExtension() && Cat->isUnconditionallyVisible(); in isVisibleExtension()
2886 inline bool ObjCInterfaceDecl::isKnownExtension(ObjCCategoryDecl *Cat) { in isKnownExtension() argument
[all …]
DExpr.h447 void setValueKind(ExprValueKind Cat) { ExprBits.ValueKind = Cat; } in setValueKind() argument
450 void setObjectKind(ExprObjectKind Cat) { ExprBits.ObjectKind = Cat; } in setObjectKind() argument
3652 ExprValueKind Cat, FPOptionsOverride FPO);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Index/
DUSRGeneration.h40 void generateUSRForObjCCategory(StringRef Cls, StringRef Cat, raw_ostream &OS,
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DCodeCompleteConsumer.cpp398 if (const auto *Cat = dyn_cast<ObjCCategoryDecl>(CurDC)) { in getParentName() local
399 const ObjCInterfaceDecl *Interface = Cat->getClassInterface(); in getParentName()
407 OS << Interface->getName() << '(' << Cat->getName() << ')'; in getParentName()
DSemaDeclObjC.cpp152 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(DC)) in CheckObjCMethodOverride() local
153 CurrentClass = Cat->getClassInterface(); in CheckObjCMethodOverride()
2896 for (auto *Cat : I->visible_categories()) in MatchAllMethodDeclarations() local
2898 IMPDecl, Cat, IncompleteImpl, in MatchAllMethodDeclarations()
2899 ImmediateClass && Cat->IsClassExtension(), in MatchAllMethodDeclarations()
4171 if (ObjCCategoryDecl *Cat in ActOnAtEnd() local
4173 ImplMethodsVsClassMethods(S, CatImplClass, Cat); in ActOnAtEnd()
4362 for (auto *Cat : iface->known_categories()) in searchFrom() local
4363 search(Cat); in searchFrom()
4692 for (const auto *Cat : IDecl->visible_categories()) in checkObjCDirectMethodClashes() local
[all …]
DSemaObjCProperty.cpp254 } else if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(ClassDecl)) { in ActOnProperty() local
258 if (!Cat->IsClassExtension()) in ActOnProperty()
259 for (auto *P : Cat->protocols()) in ActOnProperty()
2628 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(CD)) in ProcessPropertyDecl() local
2629 CurrentClass = Cat->getClassInterface(); in ProcessPropertyDecl()
DSemaCodeComplete.cpp4746 for (auto *Cat : IFace->known_categories()) in AddObjCProperties() local
4747 AddObjCProperties(CCContext, Cat, AllowCategories, AllowNullaryMethods, in AddObjCProperties()
7272 for (const auto *Cat : Class->known_categories()) { in AddSuperSendCompletion() local
7273 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
7984 for (const auto *Cat : Class->visible_categories()) in CodeCompleteObjCInterfaceCategory() local
7985 CategoryNames.insert(Cat->getIdentifier()); in CodeCompleteObjCInterfaceCategory()
8028 for (const auto *Cat : Class->visible_categories()) { in CodeCompleteObjCImplementationCategory() local
8029 if ((!IgnoreImplemented || !Cat->getImplementation()) && in CodeCompleteObjCImplementationCategory()
8030 CategoryNames.insert(Cat->getIdentifier()).second) in CodeCompleteObjCImplementationCategory()
8031 Results.AddResult(Result(Cat, Results.getBasePriority(Cat), nullptr), in CodeCompleteObjCImplementationCategory()
[all …]
DSemaLookup.cpp3934 for (auto *Cat : IFace->visible_categories()) { in lookupInDeclContext() local
3936 lookupInDeclContext(Cat, Result, QualifiedNameLookup, in lookupInDeclContext()
DSemaDeclCXX.cpp7873 Optional<ComparisonCategoryType> Cat = in visitBinaryOperator() local
7875 assert(Cat && "no category for builtin comparison?"); in visitBinaryOperator()
7876 R.Category = *Cat; in visitBinaryOperator()
8528 QualType Cat = CheckComparisonCategoryType( in CheckExplicitlyDefaultedComparison() local
8530 if (Cat.isNull()) in CheckExplicitlyDefaultedComparison()
8533 FD, SubstAutoType(FD->getDeclaredReturnType(), Cat)); in CheckExplicitlyDefaultedComparison()
/freebsd-12-stable/contrib/dialog/samples/
Dchecklist9.txt19 …"Cat" "No, never put a dog and a cat together! xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" …
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
DCommandLine.cpp2321 for (auto &Cat : Opt->Categories) { in printOptions() local
2322 assert(CategorizedOptions.count(Cat) > 0 && in printOptions()
2324 CategorizedOptions[Cat].push_back(Opt); in printOptions()
2650 for (auto &Cat : I.second->Categories) { in HideUnrelatedOptions() local
2651 if (Cat != &Category && Cat != &CommonOptions->GenericCategory) in HideUnrelatedOptions()
2661 for (auto &Cat : I.second->Categories) { in HideUnrelatedOptions() local
2662 if (!is_contained(Categories, Cat) && in HideUnrelatedOptions()
2663 Cat != &CommonOptions->GenericCategory) in HideUnrelatedOptions()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
DASTReaderDecl.cpp312 static void setNextObjCCategory(ObjCCategoryDecl *Cat, in setNextObjCCategory() argument
314 Cat->NextClassCategory = Next; in setNextObjCCategory()
4328 void add(ObjCCategoryDecl *Cat) { in add() argument
4330 if (!Deserialized.erase(Cat)) in add()
4334 if (Cat->getDeclName()) { in add()
4335 ObjCCategoryDecl *&Existing = NameCategoryMap[Cat->getDeclName()]; in add()
4338 != Reader.getOwningModuleFile(Cat)) { in add()
4350 Reader.Diag(Cat->getLocation(), diag::warn_dup_category_def) in add()
4351 << Interface->getDeclName() << Cat->getDeclName(); in add()
4355 Existing = Cat; in add()
[all …]
DASTWriterDecl.cpp779 if (ObjCCategoryDecl *Cat = D->getCategoryListRaw()) { in VisitObjCInterfaceDecl() local
784 for (; Cat; Cat = Cat->getNextClassCategoryRaw()) in VisitObjCInterfaceDecl()
785 (void)Writer.GetDeclRef(Cat); in VisitObjCInterfaceDecl()
DASTWriter.cpp3990 Cat = Class->known_categories_begin(), in WriteObjCCategories() local
3992 Cat != CatEnd; ++Cat, ++Size) { in WriteObjCCategories()
3993 assert(getDeclID(*Cat) != 0 && "Bogus category"); in WriteObjCCategories()
3994 AddDeclRef(*Cat, Categories); in WriteObjCCategories()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Index/
DIndexDecl.cpp483 const ObjCCategoryDecl *Cat = D->getCategoryDecl(); in VisitObjCCategoryImplDecl() local
484 if (!Cat) in VisitObjCCategoryImplDecl()
DUSRGeneration.cpp1038 void clang::index::generateUSRForObjCCategory(StringRef Cls, StringRef Cat, in generateUSRForObjCCategory() argument
1043 OS << "objc(cy)" << Cls << '@' << Cat; in generateUSRForObjCCategory()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGObjCGNU.cpp1590 auto *Cat = cast<llvm::GlobalVariable>(C->stripPointerCasts()); in ModuleInitFunction() local
1591 Cat->setSection(sectionName<CategorySection>()); in ModuleInitFunction()
1592 CGM.addUsedGlobal(Cat); in ModuleInitFunction()
/freebsd-12-stable/contrib/llvm-project/clang/utils/TableGen/
DClangAttrEmitter.cpp4410 const StringRef Cat = Category->getValueAsString("Name"); in EmitClangAttrDocs() local
4411 bool Undocumented = Cat == "Undocumented"; in EmitClangAttrDocs()
/freebsd-12-stable/contrib/diff/
DChangeLog941 (edit): Cat lin to long before printing with %ld, since lin might
/freebsd-12-stable/contrib/gcc/cp/
DChangeLog-19942829 (OBJS): Cat ../stamp-objlist to get language independent files.

12