/external/clang/test/Rewriter/ |
D | objc-modern-class-init.mm | 17 @interface Root(Cat) @end category 19 @interface Sub(Cat) @end category 21 @implementation Root(Cat) @end category 23 @implementation Sub(Cat) @end category
|
D | objc-modern-class-init-hooks.mm | 17 @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/ |
D | non-lazy-classes.m | 12 @interface A (Cat) @end category 13 @implementation A (Cat) category 24 @interface B (Cat) @end category 25 @implementation B (Cat) category
|
D | id-isa-codegen.m | 54 @interface Cat {} interface 57 @interface SuperCat : Cat {} 58 +(void)geneticallyAlterCat:(Cat *)cat; argument 62 + (void)geneticallyAlterCat:(Cat *)cat { argument
|
D | metadata_symbols.m | 19 // 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
|
D | exceptions-asm-attribute.m | 20 // 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
|
D | objc-align.m | 17 @implementation A (Cat) category
|
/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/ |
D | ExtensionSpiTest.java | 99 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 {
|
D | FactoryModuleBuilderTest.java | 465 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/lib/AST/ |
D | DeclObjC.cpp | 115 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() 229 for (const auto *Cat : OID->visible_categories()) { in FindPropertyDeclaration() local 230 if (!Cat->IsClassExtension()) in FindPropertyDeclaration() 231 if (ObjCPropertyDecl *P = Cat->FindPropertyDeclaration(PropertyId)) in FindPropertyDeclaration() 647 for (const auto *Cat : ClassDecl->visible_categories()) in lookupMethod() local 648 if ((MethodDecl = Cat->getMethod(Sel, isInstance))) in lookupMethod() 649 if (C != Cat || !MethodDecl->isImplicit()) in lookupMethod() [all …]
|
/external/clang/test/SemaObjC/ |
D | category-method-lookup-2.m | 10 @interface Bar (Cat) category 14 @implementation Bar (Cat) category
|
D | check-dup-objc-decls-1.m | 38 @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
|
D | property-typecheck-1.m | 8 @interface A (Cat) category 12 @implementation A (Cat) category
|
D | property-ownership-attr.m | 16 @interface Foo (Cat) <P> category
|
D | property-category-3.m | 14 @interface I (Cat) <P> category
|
/external/clang/test/Coverage/ |
D | objc-language-features.inc | 53 @interface A (Cat) 56 @implementation A (Cat)
|
/external/regex-re2/re2/ |
D | compile.cc | 161 Frag Cat(Frag a, Frag b); 306 Frag Compiler::Cat(Frag a, Frag b) { in Cat() function in re2::Compiler 705 f = Cat(f, ByteRange((uint8)buf[i], buf[i], false)); in Literal() 736 f = Cat(DotStar(), Cat(EmptyWidth(kEmptyEndText), f)); in PostVisit() 743 f = Cat(f, child_frags[i]); in PostVisit() 776 f = Cat(f, f1); in PostVisit() 1018 Frag all = c.Cat(f, c.Match(0)); in Compile() 1033 Frag unanchored = c.Cat(c.DotStar(), all); in Compile() 1108 all = c.Cat(c.DotStar(), all); in CompileSet()
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/testing/dependency_test_dir/other_animals/cat/cat/ |
D | cat_object.py | 5 class Cat(object): class
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | ObjCUnusedIVarsChecker.cpp | 90 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/ |
D | casing.txt | 48 { "a ʻCaT. A ʻdOg! ʻeTc.", "A ʻCat. A ʻDog! ʻEtc.", "", "-1", "" }, // default 52 { "ʻcAt! ʻeTc.", "ʻCat! ʻetc.", "", "-2", "" }, // -2=Trivial break iterator
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/testing/dependency_test_dir/dog/dog/ |
D | dog_object.py | 15 return cat_object.Cat()
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 1308 static bool isVisibleCategory(ObjCCategoryDecl *Cat); 1378 static bool isVisibleExtension(ObjCCategoryDecl *Cat); 1414 static bool isKnownExtension(ObjCCategoryDecl *Cat); 1530 const ObjCCategoryDecl *Cat) const { in lookupPropertyAccessor() argument 1534 Cat); in lookupPropertyAccessor() 2727 inline bool ObjCInterfaceDecl::isVisibleCategory(ObjCCategoryDecl *Cat) { in isVisibleCategory() argument 2728 return !Cat->isHidden(); in isVisibleCategory() 2731 inline bool ObjCInterfaceDecl::isVisibleExtension(ObjCCategoryDecl *Cat) { in isVisibleExtension() argument 2732 return Cat->IsClassExtension() && !Cat->isHidden(); in isVisibleExtension() 2735 inline bool ObjCInterfaceDecl::isKnownExtension(ObjCCategoryDecl *Cat) { in isKnownExtension() argument [all …]
|
/external/clang/include/clang/Index/ |
D | USRGeneration.h | 35 void generateUSRForObjCCategory(StringRef Cls, StringRef Cat, raw_ostream &OS);
|
/external/clang/lib/Sema/ |
D | CodeCompleteConsumer.cpp | 307 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/ |
D | objc-error-qualified-implementation.m | 24 @implementation I (Cat) <P> // expected-error {{@implementation declaration cannot be protocol qua… category
|