| /netbsd-src/usr.bin/rdist/ |
| H A D | expand.c | 71 static void Cat(const char *, const char *); 202 Cat(s, ""); in expstr() 239 Cat(path, s); in expstr() 241 Cat(tilde, s); in expstr() 249 Cat(s, ""); /* "nonomatch" is set */ in expstr() 277 Cat(path, ""); in expsh() 279 Cat(tilde, tpathp); in expsh() 323 Cat(path, dp->d_name); in matchdir() 326 Cat(tilde, tpathp); in matchdir() 513 Cat(path, ""); in amatch() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/yaml2obj/ |
| H A D | yaml2obj.cpp | 32 cl::OptionCategory Cat("yaml2obj Options"); variable 35 cl::init("-"), cl::cat(Cat)); 45 cl::cat(Cat)); 54 cl::Prefix, cl::cat(Cat)); 109 cl::HideUnrelatedOptions(Cat); in main()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
| H A D | BugType.h | 40 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) {}
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 138 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 …]
|
| /netbsd-src/external/gpl3/autoconf/dist/tests/ |
| H A D | base.at | 566 if AC_TRY_COMMAND([(echo "The Cat in the Hat"; 567 echo "The Hat in the Cat" >&2) | 568 grep \^The\ Cat\ in\ the\ Hat\$ >/dev/null]); then 571 AC_MSG_ERROR([didn't see the Cat in the Hat]) 574 if AC_TRY_COMMAND([(echo "The Cat in the Hat"; 575 echo "The Hat in the Cat" >&2) | 576 grep \^The\ Hat\ in\ the\ Cat\$ >/dev/null]); then 577 AC_MSG_ERROR([saw the Hat in the Cat])
|
| H A D | tools.at | 692 AH_TOP([The Cat in a h@t.]) 718 The Cat in a h@t.
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ObjCUnusedIVarsChecker.cpp | 89 for (const auto *Cat : ID->getClassInterface()->visible_categories()) { in Scan() local 90 if (const ObjCCategoryImplDecl *CID = Cat->getImplementation()) in Scan()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | DeclObjC.h | 1618 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 …]
|
| H A D | Expr.h | 449 void setValueKind(ExprValueKind Cat) { ExprBits.ValueKind = Cat; } in setValueKind() argument 452 void setObjectKind(ExprObjectKind Cat) { ExprBits.ObjectKind = Cat; } in setObjectKind() argument 3585 ExprValueKind Cat, FPOptionsOverride FPO);
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Index/ |
| H A D | USRGeneration.h | 40 void generateUSRForObjCCategory(StringRef Cls, StringRef Cat, raw_ostream &OS,
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | CodeCompleteConsumer.cpp | 398 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()
|
| H A D | SemaDeclObjC.cpp | 152 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 …]
|
| 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() 2629 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(CD)) in ProcessPropertyDecl() local 2630 CurrentClass = Cat->getClassInterface(); in ProcessPropertyDecl()
|
| H A D | SemaCodeComplete.cpp | 4743 for (auto *Cat : IFace->known_categories()) in AddObjCProperties() local 4744 AddObjCProperties(CCContext, Cat, AllowCategories, AllowNullaryMethods, in AddObjCProperties() 7269 for (const auto *Cat : Class->known_categories()) { in AddSuperSendCompletion() local 7270 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion() 7981 for (const auto *Cat : Class->visible_categories()) in CodeCompleteObjCInterfaceCategory() local 7982 CategoryNames.insert(Cat->getIdentifier()); in CodeCompleteObjCInterfaceCategory() 8025 for (const auto *Cat : Class->visible_categories()) { in CodeCompleteObjCImplementationCategory() local 8026 if ((!IgnoreImplemented || !Cat->getImplementation()) && in CodeCompleteObjCImplementationCategory() 8027 CategoryNames.insert(Cat->getIdentifier()).second) in CodeCompleteObjCImplementationCategory() 8028 Results.AddResult(Result(Cat, Results.getBasePriority(Cat), nullptr), in CodeCompleteObjCImplementationCategory() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | CommandLine.cpp | 2317 for (auto &Cat : Opt->Categories) { in printOptions() local 2318 assert(CategorizedOptions.count(Cat) > 0 && in printOptions() 2320 CategorizedOptions[Cat].push_back(Opt); in printOptions() 2600 for (auto &Cat : I.second->Categories) { in HideUnrelatedOptions() local 2601 if (Cat != &Category && in HideUnrelatedOptions() 2602 Cat != &GenericCategory) in HideUnrelatedOptions() 2611 for (auto &Cat : I.second->Categories) { in HideUnrelatedOptions() local 2612 if (!is_contained(Categories, Cat) && Cat != &GenericCategory) in HideUnrelatedOptions()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 312 static void setNextObjCCategory(ObjCCategoryDecl *Cat, in setNextObjCCategory() argument 314 Cat->NextClassCategory = Next; in setNextObjCCategory() 4295 void add(ObjCCategoryDecl *Cat) { in add() argument 4297 if (!Deserialized.erase(Cat)) in add() 4301 if (Cat->getDeclName()) { in add() 4302 ObjCCategoryDecl *&Existing = NameCategoryMap[Cat->getDeclName()]; in add() 4305 != Reader.getOwningModuleFile(Cat)) { in add() 4317 Reader.Diag(Cat->getLocation(), diag::warn_dup_category_def) in add() 4318 << Interface->getDeclName() << Cat->getDeclName(); in add() 4322 Existing = Cat; in add() [all …]
|
| H A D | ASTWriterDecl.cpp | 777 if (ObjCCategoryDecl *Cat = D->getCategoryListRaw()) { in VisitObjCInterfaceDecl() local 782 for (; Cat; Cat = Cat->getNextClassCategoryRaw()) in VisitObjCInterfaceDecl() 783 (void)Writer.GetDeclRef(Cat); in VisitObjCInterfaceDecl()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Index/ |
| H A D | IndexDecl.cpp | 483 const ObjCCategoryDecl *Cat = D->getCategoryDecl(); in VisitObjCCategoryImplDecl() local 484 if (!Cat) in VisitObjCCategoryImplDecl()
|
| H A D | USRGeneration.cpp | 1038 void clang::index::generateUSRForObjCCategory(StringRef Cls, StringRef Cat, in generateUSRForObjCCategory() argument 1043 OS << "objc(cy)" << Cls << '@' << Cat; in generateUSRForObjCCategory()
|
| /netbsd-src/bin/sh/USD.doc/ |
| H A D | Rv7man | 313 %O IEEE Cat. No. 74CH0859-9-CSCB.
|
| /netbsd-src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/freescale/ |
| H A D | imx8mn-venice-gw7902.dts | 587 /* LTE Cat M1/NB1/EGPRS modem or GPS (loading option) */
|
| H A D | imx8mm-venice-gw7902.dts | 590 /* LTE Cat M1/NB1/EGPRS modem or GPS (loading option) */
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| H A D | variant.d | 97 struct Cat { int a, b, c; } argument 98 static assert(maxSize!(bool, Cat) == 12);
|
| /netbsd-src/games/fortune/datfiles/ |
| H A D | fortunes.sp.ok | 199 Cat:man
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | optimize.c | 1234 ret = Cat(e->type, e->e1, e->e2).copy(); in Expression_optimize()
|