Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugType.h46 StringRef Cat = categories::LogicError, bool SuppressOnSink = false)
47 : CheckerName(CheckerName), Description(Desc), Category(Cat), in CheckerName()
53 StringRef Cat = categories::LogicError, bool SuppressOnSink = false)
54 : CheckerName(Checker), Description(Desc), Category(Cat), in CheckerName()
83 StringRef Cat = categories::LogicError,
85 : BugType(this, Desc, Cat, SuppressOnSink) {} in BugType() argument
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DRecordVisitor.cpp86 for (const auto *Cat : ObjCR.getObjCCategories()) in visitObjCInterface() local
87 addIVars(Cat->getObjCIVars(), ObjCR.getName()); in visitObjCInterface()
90 void SymbolConverter::visitObjCCategory(const ObjCCategoryRecord &Cat) { in visitObjCCategory() argument
91 addIVars(Cat.getObjCIVars(), Cat.getSuperClassName()); in visitObjCCategory()
H A DRecordsSlice.cpp300 for (auto &Cat : Categories) in visit() local
301 V.visitObjCCategory(*Cat.second); in visit()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DLog.h152 template <typename Cat>
154 llvm::StringLiteral description, Cat mask) in Category()
157 std::is_same<Log::MaskType, std::underlying_type_t<Cat>>::value); in Category()
171 template <typename Cat>
173 Cat default_flags) in Channel()
177 std::is_same<Log::MaskType, std::underlying_type_t<Cat>>::value); in Channel()
326 template <typename Cat> Log::Channel &LogChannelFor() = delete;
332 template <typename Cat> Log *GetLog(Cat mask) { in GetLog()
334 std::is_same<Log::MaskType, std::underlying_type_t<Cat>>::value); in GetLog()
335 return LogChannelFor<Cat>().GetLog(Log::MaskType(mask)); in GetLog()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp136 for (const auto *Cat : ID->visible_categories()) { in HasUserDeclaredSetterMethod() local
137 if (ObjCMethodDecl *MD = Cat->getInstanceMethod(Sel)) in HasUserDeclaredSetterMethod()
140 if (Cat->IsClassExtension()) in HasUserDeclaredSetterMethod()
146 for (const auto *P : Cat->properties()) in HasUserDeclaredSetterMethod()
285 for (const auto *Cat : OID->visible_categories()) { in FindPropertyDeclaration() local
286 if (!Cat->IsClassExtension()) in FindPropertyDeclaration()
287 if (ObjCPropertyDecl *P = Cat->FindPropertyDeclaration( in FindPropertyDeclaration()
718 for (const auto *Cat : ClassDecl->visible_categories()) in lookupMethod() local
719 if ((MethodDecl = Cat->getMethod(Sel, isInstance))) in lookupMethod()
720 if (C != Cat || !MethodDecl->isImplicit()) in lookupMethod()
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCUnusedIVarsChecker.cpp87 for (const auto *Cat : ID->getClassInterface()->visible_categories()) { in Scan() local
88 if (const ObjCCategoryImplDecl *CID = Cat->getImplementation()) in Scan()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h1639 static bool isVisibleCategory(ObjCCategoryDecl *Cat);
1709 static bool isVisibleExtension(ObjCCategoryDecl *Cat);
1745 static bool isKnownExtension(ObjCCategoryDecl *Cat);
1867 const ObjCCategoryDecl *Cat, in lookupPropertyAccessor() argument
1872 Cat); in lookupPropertyAccessor()
2940 inline bool ObjCInterfaceDecl::isVisibleCategory(ObjCCategoryDecl *Cat) { in isVisibleCategory() argument
2941 return !Cat->isInvalidDecl() && Cat->isUnconditionallyVisible(); in isVisibleCategory()
2944 inline bool ObjCInterfaceDecl::isVisibleExtension(ObjCCategoryDecl *Cat) { in isVisibleExtension() argument
2945 return !Cat->isInvalidDecl() && Cat->IsClassExtension() && in isVisibleExtension()
2946 Cat->isUnconditionallyVisible(); in isVisibleExtension()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DOpenMPKinds.cpp743 Category Cat = getDirectiveCategory(DKind); in isOpenMPExecutableDirective() local
744 return Cat == Category::Executable || Cat == Category::Subsidiary; in isOpenMPExecutableDirective()
750 Category Cat = getDirectiveCategory(DKind); in isOpenMPInformationalDirective() local
751 return Cat == Category::Informational; in isOpenMPInformationalDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Index/
H A DUSRGeneration.h43 void generateUSRForObjCCategory(StringRef Cls, StringRef Cat, raw_ostream &OS,
/freebsd/contrib/dialog/samples/
H A Dchecklist9.txt19 …"Cat" "No, never put a dog and a cat together! xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" …
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcompare39 template<class T, class Cat = partial_ordering>
41 template<class T, class U, class Cat = partial_ordering>
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp311 static void setNextObjCCategory(ObjCCategoryDecl *Cat, in setNextObjCCategory() argument
313 Cat->NextClassCategory = Next; in setNextObjCCategory()
4548 void add(ObjCCategoryDecl *Cat) {
4550 if (!Deserialized.erase(Cat)) in add() argument
4554 if (Cat->getDeclName()) { in add()
4555 ObjCCategoryDecl *&Existing = NameCategoryMap[Cat->getDeclName()]; in add()
4557 Reader.getOwningModuleFile(Cat)) { in add()
4560 Reader.getContext().getLangOpts(), Cat->getASTContext(), in add()
4566 if (!Ctx.IsEquivalent(Cat, Existing)) { in add()
4568 Reader.Diag(Cat in add()
4597 for (auto *Cat : Interface->known_categories()) { ObjCCategoriesVisitor() local
[all...]
H A DASTWriterDecl.cpp1066 if (ObjCCategoryDecl *Cat = D->getCategoryListRaw()) { in VisitObjCInterfaceDecl() local
1071 for (; Cat; Cat = Cat->getNextClassCategoryRaw()) in VisitObjCInterfaceDecl()
1072 (void)Writer.GetDeclRef(Cat); in VisitObjCInterfaceDecl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp411 if (const auto *Cat = dyn_cast<ObjCCategoryDecl>(CurDC)) { in getParentName() local
412 const ObjCInterfaceDecl *Interface = Cat->getClassInterface(); in getParentName()
420 OS << Interface->getName() << '(' << Cat->getName() << ')'; in getParentName()
H A DSemaDeclObjC.cpp157 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(DC)) in CheckObjCMethodOverride() local
158 CurrentClass = Cat->getClassInterface(); in CheckObjCMethodOverride()
2920 for (auto *Cat : I->visible_categories()) in MatchAllMethodDeclarations() local
2922 IMPDecl, Cat, IncompleteImpl, in MatchAllMethodDeclarations()
2923 ImmediateClass && Cat->IsClassExtension(), in MatchAllMethodDeclarations()
4194 if (ObjCCategoryDecl *Cat in ActOnAtEnd() local
4196 ImplMethodsVsClassMethods(S, CatImplClass, Cat); in ActOnAtEnd()
4386 for (auto *Cat : iface->known_categories()) in searchFrom() local
4387 search(Cat); in searchFrom()
4719 for (const auto *Cat : IDecl->visible_categories()) in checkObjCDirectMethodClashes() local
[all …]
H A DSemaObjCProperty.cpp255 } else if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(ClassDecl)) { in ActOnProperty() local
259 if (!Cat->IsClassExtension()) in ActOnProperty()
260 for (auto *P : Cat->protocols()) in ActOnProperty()
2617 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(CD)) in ProcessPropertyDecl() local
2618 CurrentClass = Cat->getClassInterface(); in ProcessPropertyDecl()
H A DSemaAPINotes.cpp1091 if (auto Cat = Impl->getCategoryDecl()) in ProcessAPINotes() local
1092 ObjCContainer = Cat->getClassInterface(); in ProcessAPINotes()
H A DSemaCodeComplete.cpp5309 for (auto *Cat : IFace->known_categories()) in AddObjCProperties() local
5310 AddObjCProperties(CCContext, Cat, AllowCategories, AllowNullaryMethods, in AddObjCProperties()
8127 for (const auto *Cat : Class->known_categories()) { in AddSuperSendCompletion() local
8128 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
8871 for (const auto *Cat : Class->visible_categories()) in CodeCompleteObjCInterfaceCategory() local
8872 CategoryNames.insert(Cat->getIdentifier()); in CodeCompleteObjCInterfaceCategory()
8915 for (const auto *Cat : Class->visible_categories()) { in CodeCompleteObjCImplementationCategory() local
8916 if ((!IgnoreImplemented || !Cat->getImplementation()) && in CodeCompleteObjCImplementationCategory()
8917 CategoryNames.insert(Cat->getIdentifier()).second) in CodeCompleteObjCImplementationCategory()
8918 Results.AddResult(Result(Cat, Results.getBasePriority(Cat), nullptr), in CodeCompleteObjCImplementationCategory()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp2452 for (OptionCategory *Cat : Opt->Categories) { in printOptions()
2453 assert(llvm::is_contained(SortedCategories, Cat) && in printOptions()
2455 CategorizedOptions[Cat].push_back(Opt); in printOptions()
2807 for (auto &Cat : I.second->Categories) { in HideUnrelatedOptions() local
2808 if (Cat == &Category || Cat == &CommonOptions->GenericCategory) in HideUnrelatedOptions()
2821 for (auto &Cat : I.second->Categories) { in HideUnrelatedOptions() local
2822 if (is_contained(Categories, Cat) || in HideUnrelatedOptions()
2823 Cat == &CommonOptions->GenericCategory) in HideUnrelatedOptions()
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-pp-string_test.cc58 TEST(Macros, Cat) { in TEST() argument
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DIndexDecl.cpp498 const ObjCCategoryDecl *Cat = D->getCategoryDecl(); in VisitObjCCategoryImplDecl() local
499 if (!Cat) in VisitObjCCategoryImplDecl()
H A DUSRGeneration.cpp1140 void clang::index::generateUSRForObjCCategory(StringRef Cls, StringRef Cat, in generateUSRForObjCCategory() argument
1145 OS << "objc(cy)" << Cls << '@' << Cat; in generateUSRForObjCCategory()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp5244 StringRef Cat) { in GetAttributeHeadingAndSpellings() argument
5275 else if (Cat == "Undocumented") in GetAttributeHeadingAndSpellings()
5387 StringRef Cat = Category->getValueAsString("Name"); in EmitClangAttrDocs() local
5388 if (Cat == "InternalOnly" && Docs.size() > 1) in EmitClangAttrDocs()
5393 if (Cat == "InternalOnly") in EmitClangAttrDocs()
5397 if (Cat == "Undocumented" && !UndocumentedCategory) in EmitClangAttrDocs()
5402 GetAttributeHeadingAndSpellings(Doc, Attr, Cat); in EmitClangAttrDocs()
5405 if (Cat == "Undocumented" && UndocumentedCategory) { in EmitClangAttrDocs()
/freebsd/sys/contrib/device-tree/src/arm64/freescale/
H A Dimx8mn-venice-gw7902.dts657 /* LTE Cat M1/NB1/EGPRS modem or GPS (loading option) */
H A Dimx8mm-venice-gw7902.dts696 /* LTE Cat M1/NB1/EGPRS modem or GPS (loading option) */

12