| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A D | method-direct-properties.m | 64 …ue; // expected-error {{cannot override a method that is declared direct by a superclass}} 65 …lue; // expected-error {{cannot override a method that is declared direct by a superclass}} 69 …_setDynamic; // expected-error {{cannot override a method that is declared direct by a superclass}} 71 … // expected-error {{cannot override a method that is declared direct by a superclass}} 72 …alue; // expected-error {{cannot override a method that is declared direct by a superclass}} 73 … // expected-error {{cannot override a method that is declared direct by a superclass}} 74 …:(int)value; // expected-error {{cannot override a method that is declared direct by a superclass}} 77 …:(int)value; // expected-error {{cannot override a method that is declared direct by a superclass}} 79 …:(int)value; // expected-error {{cannot override a method that is declared direct by a superclass}} 120 …ctProperty { // expected-error {{cannot override a method that is declared direct by a superclass}} [all …]
|
| H A D | method-direct.m | 62 …objc_direct)); // expected-error {{methods that override superclass methods cannot b… 72 … // expected-error {{cannot override a method that is declared direct by a superclass}} 73 …t; // expected-error {{cannot override a method that is declared direct by a superclass}} 74 …irect; // expected-error {{cannot override a method that is declared direct by a superclass}} 75 …sionDirect; // expected-error {{cannot override a method that is declared direct by a superclass}} 76 …irect2; // expected-error {{cannot override a method that is declared direct by a superclass}} 77 …sionDirect2; // expected-error {{cannot override a method that is declared direct by a superclass}} 78 …rect; // expected-error {{cannot override a method that is declared direct by a superclass}} 79 …oryDirect; // expected-error {{cannot override a method that is declared direct by a superclass}} 80 …rect2; // expected-error {{cannot override a method that is declared direct by a superclass}} [all …]
|
| H A D | property-and-class-extension.m | 5 and treat ivars in a superclass extension the same as ivars in the superclass @interface. 7 extension but ignore any ivars in superclass class extensions.
|
| H A D | undef-superclass-1.m | 5 …F :SUPER // expected-error {{attempting to use the forward class 'SUPER' as superclass of 'INTF'}} 16 @interface INTF3 : Y // expected-error {{attempting to use the forward class 'Y' as superclass of '… 29 …lass // expected-error {{trying to recursively use 'RecursiveClass' as superclass of 'RecursiveCla…
|
| H A D | unimplemented-protocol-prop.m | 30 @interface superclass interface 34 @interface childclass : superclass <PROTOCOL1>
|
| H A D | forward-class-1.m | 6 @interface INTF : FOO // expected-error {{attempting to use the forward class 'FOO' as superclass o… 50 @interface A : B {} // expected-error {{attempting to use the forward class 'B' as superclass of 'A…
|
| H A D | class-def-test-1.m | 26 …OTO @end // expected-error {{cannot find interface declaration for 'PROTO', superclass of 'INTF3'}} 35 … expected-error{{cannot find interface declaration for 'SomeClassSup', superclass of 'SomeClassSub…
|
| H A D | flexible-array.m | 247 …rite instance variable 'flexible' with variable sized type 'char[]' in superclass 'FlexibleArrayMe… 254 …rite instance variable 'flexible' with variable sized type 'char[]' in superclass 'FlexibleArrayMe… 261 …rite instance variable 'flexible' with variable sized type 'char[]' in superclass 'FlexibleArrayMe… 269 …rite instance variable 'flexible' with variable sized type 'char[]' in superclass 'FlexibleArrayMe… 273 …rite instance variable 'flexible' with variable sized type 'char[]' in superclass 'FlexibleArrayMe… 286 …rite instance variable 'flexible' with variable sized type 'char[]' in superclass 'FlexibleArrayMe…
|
| H A D | attr-objc-runtime-visible.m | 16 @implementation B // expected-error{{cannot implement subclass 'B' of a superclass 'A' that is only…
|
| H A D | attr-designated-init.m | 92 …pected-warning {{method override for the designated initializer of the superclass '-initB1' not fo… 93 …pected-warning {{method override for the designated initializer of the superclass '-initB3' not fo… 107 …pected-warning {{method override for the designated initializer of the superclass '-initS1' not fo… 155 …pected-warning {{method override for the designated initializer of the superclass '-initB1' not fo… 156 …pected-warning {{method override for the designated initializer of the superclass '-initB3' not fo…
|
| H A D | method-lookup-4.m | 46 // should lookup method in superclass implementation if available
|
| H A D | class-impl-1.m | 27 …2 : SUPR // expected-error {{cannot find interface declaration for 'SUPR', superclass of 'INTF2'}}
|
| H A D | class-proto-1.m | 29 @interface E3 : U1 @end // expected-error {{attempting to use the forward class 'U1' as superclass …
|
| H A D | super-property-notation.m | 44 …o property synthesis will not synthesize property 'foo'; it will be implemented by its superclass}}
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/objc/ |
| H A D | super-self.m | 15 …spicious invocation of 'self' in initializer; did you mean to invoke a superclass initializer? [ob… 21 …spicious invocation of 'self' in initializer; did you mean to invoke a superclass initializer? [ob… 33 …spicious invocation of 'self' in initializer; did you mean to invoke a superclass initializer? [ob… 41 …spicious invocation of 'self' in initializer; did you mean to invoke a superclass initializer? [ob… 49 …spicious invocation of 'self' in initializer; did you mean to invoke a superclass initializer? [ob… 57 …spicious invocation of 'self' in initializer; did you mean to invoke a superclass initializer? [ob…
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/objc/ |
| H A D | super-self.rst | 7 of ``NSObject`` and recommends calling a superclass initializer instead. 10 error when the programmer's original intent is to call a superclass 11 initializer. Failing to call a superclass initializer breaks initializer
|
| /llvm-project-15.0.7/clang/test/ASTMerge/interface/ |
| H A D | test.m | 8 // CHECK: interface1.m:21:17: note: inherits from superclass 'I2' here 9 // CHECK: interface2.m:21:17: note: inherits from superclass 'I1' here 19 // CHECK: interface1.m:100:17: note: inherits from superclass 'I12' here 20 // CHECK: interface2.m:99:17: note: inherits from superclass 'I11' here
|
| /llvm-project-15.0.7/clang/test/Index/ |
| H A D | complete-objc-message-id.m | 9 + (Class)superclass; class 12 - (id)superclass; method 26 [[b superclass] B_method]; 69 // CHECK-SELECTOR-PREF: ObjCClassMethodDecl:{ResultType Class}{TypedText superclass} (35)
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objdump/MachO/ |
| H A D | macho-objc-meta-data.test | 14 OBJC2_64BIT_EXE: superclass 0x0 39 OBJC2_64BIT_EXE: superclass 0x0 56 OBJC2_64BIT_EXE: superclass 0x0 101 OBJC2_64BIT_EXE: superclass 0x0 175 OBJC2_64BIT_OBJ: name 0x19c2 superclass 219 OBJC2_32BIT_EXE: superclass 0x0 306 OBJC2_32BIT_EXE: superclass 0x0 341 OBJC2_32BIT_EXE: superclass 0x0 423 OBJC2_32BIT_EXE: superclass 0x0 439 OBJC2_32BIT_EXE: superclass 0x0 [all …]
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | superclass.m | 52 // Do not warn if UIViewController/*Responder/NSDocument is not our superclass 72 // Do not warn for the implementation in the superclass itself. 91 // Warn if UIViewController is our superclass and we do not call super 115 // Do not warn if UIViewController is our superclass but we did call super
|
| /llvm-project-15.0.7/llvm/test/TableGen/ |
| H A D | SuperSubclassSameName.td | 3 // Test for template arguments that have the same name as superclass template
|
| H A D | self-reference-typeerror.td | 8 // At the time A0 is referenced, A has not yet been established as a superclass.
|
| H A D | self-reference.td | 68 // before) adding C as a superclass. However, SystemZ uses this pattern. 94 // work here because E0 does not yet have E as a superclass while the template
|
| /llvm-project-15.0.7/clang/test/Rewriter/ |
| H A D | objc-modern-ivar-receiver-1.mm | 30 // CHECK: struct _class_t *superclass;
|
| /llvm-project-15.0.7/clang/test/CodeGenObjC/ |
| H A D | 2008-10-3-EhValue.m | 15 -superclass; method
|