Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/llvm/tools/clang/lib/AST/
DDeclObjC.cpp116 Cat = ID->visible_categories_begin(), in HasUserDeclaredSetterMethod() local
118 Cat != CatEnd; in HasUserDeclaredSetterMethod()
119 ++Cat) { in HasUserDeclaredSetterMethod()
120 if (ObjCMethodDecl *MD = Cat->getInstanceMethod(Sel)) in HasUserDeclaredSetterMethod()
123 if (Cat->IsClassExtension()) in HasUserDeclaredSetterMethod()
128 for (ObjCContainerDecl::prop_iterator P = Cat->prop_begin(), in HasUserDeclaredSetterMethod()
129 E = Cat->prop_end(); P != E; ++P) in HasUserDeclaredSetterMethod()
222 Cat = OID->visible_categories_begin(), in FindPropertyDeclaration() local
224 Cat != CatEnd; ++Cat) { in FindPropertyDeclaration()
225 if (!Cat->IsClassExtension()) in FindPropertyDeclaration()
[all …]
DASTImporter.cpp3562 Cat = From->known_categories_begin(), in ImportDefinition() local
3564 Cat != CatEnd; ++Cat) { in ImportDefinition()
3565 Importer.Import(*Cat); in ImportDefinition()
DASTContext.cpp1830 Cat = OI->visible_categories_begin(), in CollectInheritedProtocols() local
1832 Cat != CatEnd; ++Cat) { in CollectInheritedProtocols()
1833 CollectInheritedProtocols(*Cat, Protocols); in CollectInheritedProtocols()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
DObjCUnusedIVarsChecker.cpp93 Cat = ID->getClassInterface()->visible_categories_begin(), in Scan() local
95 Cat != CatEnd; ++Cat) { in Scan()
96 if (const ObjCCategoryImplDecl *CID = Cat->getImplementation()) in Scan()
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/AST/
DDeclObjC.h979 static bool isVisibleCategory(ObjCCategoryDecl *Cat);
1034 static bool isVisibleExtension(ObjCCategoryDecl *Cat);
1062 static bool isKnownExtension(ObjCCategoryDecl *Cat);
1168 const ObjCCategoryDecl *Cat) const { in lookupPropertyAccessor() argument
1170 false/*shallowCategoryLookup*/, Cat); in lookupPropertyAccessor()
2291 inline bool ObjCInterfaceDecl::isVisibleCategory(ObjCCategoryDecl *Cat) { in isVisibleCategory() argument
2292 return !Cat->isHidden(); in isVisibleCategory()
2295 inline bool ObjCInterfaceDecl::isVisibleExtension(ObjCCategoryDecl *Cat) { in isVisibleExtension() argument
2296 return Cat->IsClassExtension() && !Cat->isHidden(); in isVisibleExtension()
2299 inline bool ObjCInterfaceDecl::isKnownExtension(ObjCCategoryDecl *Cat) { in isKnownExtension() argument
[all …]
DExpr.h419 void setValueKind(ExprValueKind Cat) { ExprBits.ValueKind = Cat; } in setValueKind() argument
422 void setObjectKind(ExprObjectKind Cat) { ExprBits.ObjectKind = Cat; } in setObjectKind() argument
2756 ExprValueKind Cat);
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Index/
DUSRGeneration.h33 void generateUSRForObjCCategory(StringRef Cls, StringRef Cat, raw_ostream &OS);
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Serialization/
DASTReaderDecl.cpp209 static void setNextObjCCategory(ObjCCategoryDecl *Cat, in setNextObjCCategory() argument
211 Cat->NextClassCategory = Next; in setNextObjCCategory()
2834 void add(ObjCCategoryDecl *Cat) { in add() argument
2836 if (!Deserialized.erase(Cat)) in add()
2840 if (Cat->getDeclName()) { in add()
2841 ObjCCategoryDecl *&Existing = NameCategoryMap[Cat->getDeclName()]; in add()
2844 != Reader.getOwningModuleFile(Cat)) { in add()
2856 Reader.Diag(Cat->getLocation(), diag::warn_dup_category_def) in add()
2857 << Interface->getDeclName() << Cat->getDeclName(); in add()
2861 Existing = Cat; in add()
[all …]
DASTWriterDecl.cpp513 if (ObjCCategoryDecl *Cat = D->getCategoryListRaw()) { in VisitObjCInterfaceDecl() local
518 for (; Cat; Cat = Cat->getNextClassCategoryRaw()) in VisitObjCInterfaceDecl()
519 (void)Writer.GetDeclRef(Cat); in VisitObjCInterfaceDecl()
DASTWriter.cpp3623 Cat = Class->known_categories_begin(), in WriteObjCCategories() local
3625 Cat != CatEnd; ++Cat, ++Size) { in WriteObjCCategories()
3626 assert(getDeclID(*Cat) != 0 && "Bogus category"); in WriteObjCCategories()
3627 AddDeclRef(*Cat, Categories); in WriteObjCCategories()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Sema/
DCodeCompleteConsumer.cpp311 if (const ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(CurDC)) { in getParentName() local
312 const ObjCInterfaceDecl *Interface = Cat->getClassInterface(); in getParentName()
320 OS << Interface->getName() << '(' << Cat->getName() << ')'; in getParentName()
DSemaCodeComplete.cpp3522 Cat = IFace->known_categories_begin(), in AddObjCProperties() local
3524 Cat != CatEnd; ++Cat) in AddObjCProperties()
3525 AddObjCProperties(*Cat, AllowCategories, AllowNullaryMethods, in AddObjCProperties()
4908 Cat = IFace->known_categories_begin(), in AddObjCMethods() local
4910 Cat != CatEnd; ++Cat) { in AddObjCMethods()
4911 ObjCCategoryDecl *CatDecl = *Cat; in AddObjCMethods()
5185 Cat = Class->known_categories_begin(), in AddSuperSendCompletion() local
5187 Cat != CatEnd; ++Cat) { in AddSuperSendCompletion()
5188 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
5913 Cat = Class->visible_categories_begin(), in CodeCompleteObjCInterfaceCategory() local
[all …]
DSemaDeclObjC.cpp130 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(DC)) in CheckObjCMethodOverride() local
131 CurrentClass = Cat->getClassInterface(); in CheckObjCMethodOverride()
1802 Cat = I->visible_categories_begin(), in MatchAllMethodDeclarations() local
1804 Cat != CatEnd; ++Cat) { in MatchAllMethodDeclarations()
1806 IMPDecl, *Cat, IncompleteImpl, false, in MatchAllMethodDeclarations()
2694 if (ObjCCategoryDecl *Cat in ActOnAtEnd() local
2696 ImplMethodsVsClassMethods(S, CatImplClass, Cat); in ActOnAtEnd()
3254 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(ClassDecl)) in ActOnMethodDeclaration() local
3255 CurrentClass = Cat->getClassInterface(); in ActOnMethodDeclaration()
DSemaObjCProperty.cpp234 } else if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(ClassDecl)) { in ActOnProperty() local
235 for (ObjCCategoryDecl::protocol_iterator P = Cat->protocol_begin(), in ActOnProperty()
236 PEnd = Cat->protocol_end(); in ActOnProperty()
2002 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(CD)) in ProcessPropertyDecl() local
2003 CurrentClass = Cat->getClassInterface(); in ProcessPropertyDecl()
DSemaLookup.cpp3169 Cat = IFace->visible_categories_begin(), in LookupVisibleDecls() local
3171 Cat != CatEnd; ++Cat) { in LookupVisibleDecls()
3173 LookupVisibleDecls(*Cat, Result, QualifiedNameLookup, false, in LookupVisibleDecls()
/freebsd-9-stable/contrib/dialog/samples/
Dchecklist9.txt19 …"Cat" "No, never put a dog and a cat together! xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" …
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Index/
DUSRGeneration.cpp771 void clang::index::generateUSRForObjCCategory(StringRef Cls, StringRef Cat, in generateUSRForObjCCategory() argument
773 OS << "objc(cy)" << Cls << '@' << Cat; in generateUSRForObjCCategory()
/freebsd-9-stable/contrib/diff/
DChangeLog941 (edit): Cat lin to long before printing with %ld, since lin might
/freebsd-9-stable/contrib/gcc/cp/
DChangeLog-19942829 (OBJS): Cat ../stamp-objlist to get language independent files.
/freebsd-9-stable/games/fortune/datfiles/
Dfortunes142 Wrong", led by Tom Kempson, "Batman or Cat:man?" led by Richie Dennis
1553 -- Kurt Vonnegut, Jr., "Cat's Cradle"
1618 the Cat.
1620 "Then it doesn't matter which way you go," said the Cat.
12920 Cat, n.:
29856 Gibson the Cat's Corollary:
37208 -- Bokonon, "Cat's Cradle" by Kurt Vonnegut, Jr.
/freebsd-9-stable/contrib/ncurses/misc/
Dterminfo.src16389 # Apple Cat ][ 212 modem, + more all
/freebsd-9-stable/share/dict/
Dweb231378 Cat