Home
last modified time | relevance | path

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

123

/external/clang/test/Rewriter/
Dobjc-modern-class-init.mm17 @interface Root(Cat) @end category
19 @interface Sub(Cat) @end category
21 @implementation Root(Cat) @end category
23 @implementation Sub(Cat) @end category
Dobjc-modern-class-init-hooks.mm17 @interface Root(Cat) @end category
19 @interface Sub(Cat) @end category
21 @implementation Root(Cat) @end category
23 @implementation Sub(Cat) @end category
/external/clang/test/CodeGenObjC/
Dnon-lazy-classes.m12 @interface A (Cat) @end category
13 @implementation A (Cat) category
24 @interface B (Cat) @end category
25 @implementation B (Cat) category
Did-isa-codegen.m54 @interface Cat {} interface
57 @interface SuperCat : Cat {}
58 +(void)geneticallyAlterCat:(Cat *)cat; argument
62 + (void)geneticallyAlterCat:(Cat *)cat { argument
Dmetadata_symbols.m19 // CHECK-X86_64: define internal void @"\01-[A(Cat) im1]"
30 // CHECK-X86_64-HIDDEN: define internal void @"\01-[A(Cat) im1]"
43 // CHECK-ARMV6: define internal void @"\01-[A(Cat) im1]"
53 @implementation A (Cat) category
Dexceptions-asm-attribute.m20 // CHECK-X86_64: define internal void @"\01-[A(Cat) im1]"
31 // CHECK-X86_64-HIDDEN: define internal void @"\01-[A(Cat) im1]"
44 // CHECK-ARMV6: define internal void @"\01-[A(Cat) im1]"
55 @implementation A (Cat) category
Dobjc-align.m17 @implementation A (Cat) category
Dproperty.m46 @interface A (Cat) category
50 @implementation A (Cat) category
/external/clang/lib/AST/
DDeclObjC.cpp115 for (const auto *Cat : ID->visible_categories()) { in HasUserDeclaredSetterMethod() local
116 if (ObjCMethodDecl *MD = Cat->getInstanceMethod(Sel)) in HasUserDeclaredSetterMethod()
119 if (Cat->IsClassExtension()) in HasUserDeclaredSetterMethod()
125 for (const auto *P : Cat->properties()) in HasUserDeclaredSetterMethod()
251 for (const auto *Cat : OID->visible_categories()) { in FindPropertyDeclaration() local
252 if (!Cat->IsClassExtension()) in FindPropertyDeclaration()
253 if (ObjCPropertyDecl *P = Cat->FindPropertyDeclaration( in FindPropertyDeclaration()
675 for (const auto *Cat : ClassDecl->visible_categories()) in lookupMethod() local
676 if ((MethodDecl = Cat->getMethod(Sel, isInstance))) in lookupMethod()
677 if (C != Cat || !MethodDecl->isImplicit()) in lookupMethod()
[all …]
/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
DExtensionSpiTest.java99 validateAssistedMethod(method, name, Cat.class, ImmutableList.<Key<?>>of()); in validateVisitor()
134 Cat createCat(String owner); in createCat()
145 private static class Cat implements Animal { class in ExtensionSpiTest
146 @Inject Cat(@Assisted String owner) {} in Cat() method in ExtensionSpiTest.Cat
164 private static class CatWithAName extends Cat {
DFactoryModuleBuilderTest.java465 Cat createCat(String name); in createCat()
466 Cat createCat(int age); in createCat()
477 private static class Cat implements Animal { class in FactoryModuleBuilderTest
479 @AssistedInject Cat(@Assisted String a, @Named("cat1") String b) {} in Cat() method in FactoryModuleBuilderTest.Cat
480 @AssistedInject Cat(@Assisted int a, @Named("cat2") String b) {} in Cat() method in FactoryModuleBuilderTest.Cat
481 @AssistedInject Cat(@Assisted byte a, @Named("catfail") String b) {} // not a dependency! in Cat() method in FactoryModuleBuilderTest.Cat
/external/clang/test/SemaObjC/
Dcheck-dup-objc-decls-1.m38 @interface A(Cat)<P> @end // expected-note {{previous definition is here}} category
39 @interface A(Cat)<Q> @end // expected-warning {{duplicate definition of category 'Cat' on interface… category
Dcategory-method-lookup-2.m10 @interface Bar (Cat) category
14 @implementation Bar (Cat) category
Dproperty-typecheck-1.m8 @interface A (Cat) category
12 @implementation A (Cat) category
Dproperty-ownership-attr.m16 @interface Foo (Cat) <P> category
Dproperty-category-3.m14 @interface I (Cat) <P> category
/external/clang/test/Coverage/
Dobjc-language-features.inc53 @interface A (Cat)
56 @implementation A (Cat)
/external/clang/lib/StaticAnalyzer/Checkers/
DObjCUnusedIVarsChecker.cpp90 for (const auto *Cat : ID->getClassInterface()->visible_categories()) { in Scan() local
91 if (const ObjCCategoryImplDecl *CID = Cat->getImplementation()) in Scan()
/external/icu/icu4c/source/test/testdata/
Dcasing.txt50 { "a ʻCaT. A ʻdOg! ʻeTc.", "A ʻCat. A ʻDog! ʻEtc.", "", "-1", "" }, // default
54 { "ʻcAt! ʻeTc.", "ʻCat! ʻetc.", "", "-2", "" }, // -2=Trivial break iterator
/external/clang/include/clang/AST/
DDeclObjC.h1548 static bool isVisibleCategory(ObjCCategoryDecl *Cat);
1618 static bool isVisibleExtension(ObjCCategoryDecl *Cat);
1654 static bool isKnownExtension(ObjCCategoryDecl *Cat);
1771 const ObjCCategoryDecl *Cat, in lookupPropertyAccessor() argument
1776 Cat); in lookupPropertyAccessor()
2779 inline bool ObjCInterfaceDecl::isVisibleCategory(ObjCCategoryDecl *Cat) { in isVisibleCategory() argument
2780 return !Cat->isHidden(); in isVisibleCategory()
2783 inline bool ObjCInterfaceDecl::isVisibleExtension(ObjCCategoryDecl *Cat) { in isVisibleExtension() argument
2784 return Cat->IsClassExtension() && !Cat->isHidden(); in isVisibleExtension()
2787 inline bool ObjCInterfaceDecl::isKnownExtension(ObjCCategoryDecl *Cat) { in isKnownExtension() argument
[all …]
/external/clang/include/clang/Index/
DUSRGeneration.h35 void generateUSRForObjCCategory(StringRef Cls, StringRef Cat, raw_ostream &OS);
/external/clang/lib/Sema/
DCodeCompleteConsumer.cpp307 if (const ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(CurDC)) { in getParentName() local
308 const ObjCInterfaceDecl *Interface = Cat->getClassInterface(); in getParentName()
316 OS << Interface->getName() << '(' << Cat->getName() << ')'; in getParentName()
/external/clang/test/Parser/
Dobjc-error-qualified-implementation.m24 @implementation I (Cat) <P> // expected-error {{@implementation declaration cannot be protocol qua… category
/external/clang/test/Index/
Dproperties-class-extensions.m5 @interface Foo (Cat) category
49 // CHECK: properties-class-extensions.m:5:12: ObjCCategoryDecl=Cat:5:12 Extent=[5:1 - 7:5]
/external/clang/lib/Serialization/
DASTReaderDecl.cpp257 static void setNextObjCCategory(ObjCCategoryDecl *Cat, in setNextObjCCategory() argument
259 Cat->NextClassCategory = Next; in setNextObjCCategory()
3587 void add(ObjCCategoryDecl *Cat) { in add() argument
3589 if (!Deserialized.erase(Cat)) in add()
3593 if (Cat->getDeclName()) { in add()
3594 ObjCCategoryDecl *&Existing = NameCategoryMap[Cat->getDeclName()]; in add()
3597 != Reader.getOwningModuleFile(Cat)) { in add()
3609 Reader.Diag(Cat->getLocation(), diag::warn_dup_category_def) in add()
3610 << Interface->getDeclName() << Cat->getDeclName(); in add()
3614 Existing = Cat; in add()
[all …]

123