/freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | RecordVisitor.cpp | 86 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 D | RecordsSlice.cpp | 299 for (auto &Cat : Categories) in visit() local 300 V.visitObjCCategory(*Cat.second); in visit()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | Log.h | 152 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 D | DeclObjC.cpp | 139 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 D | ObjCUnusedIVarsChecker.cpp | 88 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 D | DeclObjC.h | 1641 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 D | Expr.h | 454 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 D | USRGeneration.h | 40 void generateUSRForObjCCategory(StringRef Cls, StringRef Cat, raw_ostream &OS,
|
/freebsd/contrib/dialog/samples/ |
H A D | checklist9.txt | 19 …"Cat" "No, never put a dog and a cat together! xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" …
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | compare | 39 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 D | ASTReaderDecl.cpp | 320 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 D | ASTWriterDecl.cpp | 893 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 D | CodeCompleteConsumer.cpp | 415 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 D | SemaDeclObjC.cpp | 158 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 D | SemaObjCProperty.cpp | 254 } 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 D | SemaAPINotes.cpp | 945 if (auto Cat = Impl->getCategoryDecl()) in ProcessAPINotes() local 946 ObjCContainer = Cat->getClassInterface(); in ProcessAPINotes()
|
H A D | SemaCodeComplete.cpp | 5148 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 D | OpenMPKinds.cpp | 709 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 D | CommandLine.cpp | 2457 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 D | gmock-pp-string_test.cc | 58 TEST(Macros, Cat) { in TEST() argument
|
/freebsd/contrib/llvm-project/clang/lib/Index/ |
H A D | IndexDecl.cpp | 498 const ObjCCategoryDecl *Cat = D->getCategoryDecl(); in VisitObjCCategoryImplDecl() local 499 if (!Cat) in VisitObjCCategoryImplDecl()
|
H A D | USRGeneration.cpp | 1142 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 D | ClangAttrEmitter.cpp | 5096 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 D | imx8mn-venice-gw7902.dts | 655 /* LTE Cat M1/NB1/EGPRS modem or GPS (loading option) */
|
H A D | imx8mm-venice-gw7902.dts | 694 /* LTE Cat M1/NB1/EGPRS modem or GPS (loading option) */
|