Home
last modified time | relevance | path

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

12

/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.cpp299 for (auto &Cat : Categories) in visit() local
300 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()
325 template <typename Cat> Log::Channel &LogChannelFor() = delete;
331 template <typename Cat> Log *GetLog(Cat mask) { in GetLog()
333 std::is_same<Log::MaskType, std::underlying_type_t<Cat>>::value); in GetLog()
334 return LogChannelFor<Cat>().GetLog(Log::MaskType(mask)); in GetLog()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp139 for (const auto *Cat : ID->visible_categories()) { in HasUserDeclaredSetterMethod() local
140 if (ObjCMethodDecl *MD = Cat->getInstanceMethod(Sel)) in HasUserDeclaredSetterMethod()
143 if (Cat->IsClassExtension()) in HasUserDeclaredSetterMethod()
149 for (const auto *P : Cat->properties()) in HasUserDeclaredSetterMethod()
288 for (const auto *Cat : OID->visible_categories()) { in FindPropertyDeclaration() local
289 if (!Cat->IsClassExtension()) in FindPropertyDeclaration()
290 if (ObjCPropertyDecl *P = Cat->FindPropertyDeclaration( in FindPropertyDeclaration()
721 for (const auto *Cat : ClassDecl->visible_categories()) in lookupMethod() local
722 if ((MethodDecl = Cat->getMethod(Sel, isInstance))) in lookupMethod()
723 if (C != Cat || !MethodDecl->isImplicit()) in lookupMethod()
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCUnusedIVarsChecker.cpp88 for (const auto *Cat : ID->getClassInterface()->visible_categories()) { in Scan() local
89 if (const ObjCCategoryImplDecl *CID = Cat->getImplementation()) in Scan()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h1641 static bool isVisibleCategory(ObjCCategoryDecl *Cat);
1711 static bool isVisibleExtension(ObjCCategoryDecl *Cat);
1747 static bool isKnownExtension(ObjCCategoryDecl *Cat);
1868 const ObjCCategoryDecl *Cat, in lookupPropertyAccessor() argument
1873 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 …]
H A DExpr.h454 void setValueKind(ExprValueKind Cat) { ExprBits.ValueKind = Cat; } in setValueKind() argument
457 void setObjectKind(ExprObjectKind Cat) { ExprBits.ObjectKind = Cat; } in setObjectKind() argument
3714 ExprValueKind Cat, FPOptionsOverride FPO);
/freebsd/contrib/llvm-project/clang/include/clang/Index/
H A DUSRGeneration.h40 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.cpp320 static void setNextObjCCategory(ObjCCategoryDecl *Cat, in setNextObjCCategory() argument
322 Cat->NextClassCategory = Next; in setNextObjCCategory()
4405 void add(ObjCCategoryDecl *Cat) { in add() argument
4407 if (!Deserialized.erase(Cat)) in add()
4411 if (Cat->getDeclName()) { in add()
4412 ObjCCategoryDecl *&Existing = NameCategoryMap[Cat->getDeclName()]; in add()
4414 Reader.getOwningModuleFile(Cat)) { in add()
4417 Cat->getASTContext(), Existing->getASTContext(), in add()
4422 if (!Ctx.IsEquivalent(Cat, Existing)) { in add()
4424 Reader.Diag(Cat->getLocation(), diag::warn_dup_category_def) in add()
[all …]
H A DASTWriterDecl.cpp893 if (ObjCCategoryDecl *Cat = D->getCategoryListRaw()) { in VisitObjCInterfaceDecl() local
898 for (; Cat; Cat = Cat->getNextClassCategoryRaw()) in VisitObjCInterfaceDecl()
899 (void)Writer.GetDeclRef(Cat); in VisitObjCInterfaceDecl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp415 if (const auto *Cat = dyn_cast<ObjCCategoryDecl>(CurDC)) { in getParentName() local
416 const ObjCInterfaceDecl *Interface = Cat->getClassInterface(); in getParentName()
424 OS << Interface->getName() << '(' << Cat->getName() << ')'; in getParentName()
H A DSemaDeclObjC.cpp158 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(DC)) in CheckObjCMethodOverride() local
159 CurrentClass = Cat->getClassInterface(); in CheckObjCMethodOverride()
2912 for (auto *Cat : I->visible_categories()) in MatchAllMethodDeclarations() local
2914 IMPDecl, Cat, IncompleteImpl, in MatchAllMethodDeclarations()
2915 ImmediateClass && Cat->IsClassExtension(), in MatchAllMethodDeclarations()
4192 if (ObjCCategoryDecl *Cat in ActOnAtEnd() local
4194 ImplMethodsVsClassMethods(S, CatImplClass, Cat); in ActOnAtEnd()
4384 for (auto *Cat : iface->known_categories()) in searchFrom() local
4385 search(Cat); in searchFrom()
4719 for (const auto *Cat : IDecl->visible_categories()) in checkObjCDirectMethodClashes() local
[all …]
H A 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()
2608 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(CD)) in ProcessPropertyDecl() local
2609 CurrentClass = Cat->getClassInterface(); in ProcessPropertyDecl()
H A DSemaAPINotes.cpp945 if (auto Cat = Impl->getCategoryDecl()) in ProcessAPINotes() local
946 ObjCContainer = Cat->getClassInterface(); in ProcessAPINotes()
H A DSemaCodeComplete.cpp5148 for (auto *Cat : IFace->known_categories()) in AddObjCProperties() local
5149 AddObjCProperties(CCContext, Cat, AllowCategories, AllowNullaryMethods, in AddObjCProperties()
7976 for (const auto *Cat : Class->known_categories()) { in AddSuperSendCompletion() local
7977 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
8723 for (const auto *Cat : Class->visible_categories()) in CodeCompleteObjCInterfaceCategory() local
8724 CategoryNames.insert(Cat->getIdentifier()); in CodeCompleteObjCInterfaceCategory()
8767 for (const auto *Cat : Class->visible_categories()) { in CodeCompleteObjCImplementationCategory() local
8768 if ((!IgnoreImplemented || !Cat->getImplementation()) && in CodeCompleteObjCImplementationCategory()
8769 CategoryNames.insert(Cat->getIdentifier()).second) in CodeCompleteObjCImplementationCategory()
8770 Results.AddResult(Result(Cat, Results.getBasePriority(Cat), nullptr), in CodeCompleteObjCImplementationCategory()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DOpenMPKinds.cpp709 Category Cat = getDirectiveCategory(DKind); in isOpenMPExecutableDirective() local
710 return Cat == Category::Executable || Cat == Category::Subsidiary; in isOpenMPExecutableDirective()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp2457 for (auto &Cat : Opt->Categories) { in printOptions() local
2458 assert(llvm::is_contained(SortedCategories, Cat) && in printOptions()
2460 CategorizedOptions[Cat].push_back(Opt); in printOptions()
2811 for (auto &Cat : I.second->Categories) { in HideUnrelatedOptions() local
2812 if (Cat == &Category || Cat == &CommonOptions->GenericCategory) in HideUnrelatedOptions()
2825 for (auto &Cat : I.second->Categories) { in HideUnrelatedOptions() local
2826 if (is_contained(Categories, Cat) || in HideUnrelatedOptions()
2827 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.cpp1142 void clang::index::generateUSRForObjCCategory(StringRef Cls, StringRef Cat, in generateUSRForObjCCategory() argument
1147 OS << "objc(cy)" << Cls << '@' << Cat; in generateUSRForObjCCategory()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp5096 StringRef Cat) { in GetAttributeHeadingAndSpellings() argument
5128 else if (Cat == "Undocumented") in GetAttributeHeadingAndSpellings()
5230 const StringRef Cat = Category->getValueAsString("Name"); in EmitClangAttrDocs() local
5231 bool InternalOnly = Cat == "InternalOnly"; in EmitClangAttrDocs()
5239 Doc, Attr, GetAttributeHeadingAndSpellings(Doc, Attr, Cat))); in EmitClangAttrDocs()
/freebsd/sys/contrib/device-tree/src/arm64/freescale/
H A Dimx8mn-venice-gw7902.dts655 /* LTE Cat M1/NB1/EGPRS modem or GPS (loading option) */
H A Dimx8mm-venice-gw7902.dts694 /* LTE Cat M1/NB1/EGPRS modem or GPS (loading option) */

12