Searched refs:implementation (Results 1 – 25 of 1837) sorted by relevance
12345678910>>...74
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebDelegateImplementationCaching.mm | 37 @implementation WebView (WebDelegateImplementationCaching) 264 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector) 269 return implementation(delegate, selector, self); 271 return implementation(delegate, selector, self); 278 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id obje… 283 return implementation(delegate, selector, self, object); 285 return implementation(delegate, selector, self, object); 292 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id obje… 297 return implementation(delegate, selector, self, object1, object2); 299 return implementation(delegate, selector, self, object1, object2); [all …]
|
/external/clang/test/SemaObjC/ |
D | missing-atend-metadata.m | 6 @implementation I0 // expected-note {{implementation started here}} 12 @implementation I1 // expected-note {{implementation started here}} 19 @implementation I2 // expected-note {{implementation started here}} 22 @implementation I2(CAT) // expected-error 2 {{missing '@end'}} expected-note {{implementation star…
|
D | method-conflict-1.m | 17 @implementation MyClass 20 …SArray *)object { // broken-warning {{conflicting parameter types in implementation of 'myMethod1:… 33 @implementation MyOtherClass 34 …yClass *)object { // broken-warning {{conflicting parameter types in implementation of 'myMethod:'… 36 …tocol> *)object { // broken-warning {{conflicting parameter types in implementation of 'myMethod1:… 50 @implementation Test1 51 - (void) test1:(B*) object {} // broken-warning {{conflicting parameter types in implementation of … 60 @implementation Test2 61 - (void) test1:(A*) object {} // broken-warning {{conflicting parameter types in implementation of … 70 @implementation Test3 [all …]
|
D | method-typecheck-1.m | 9 @implementation A 10 -(void) setMoo: (float) x {} // expected-warning {{conflicting parameter types in implementation o… 11 …t) x { return 0; } // expected-warning {{conflicting return type in implementation of 'setMoo1:':… 21 @implementation C 22 +(float) cMoo: // expected-warning {{conflicting return type in implementation of 'cMoo:': 'void'… 23 …(float) x { return 0; } // expected-warning {{conflicting parameter types in implementation of 'c… 32 @implementation A(CAT) 33 -(float) setCat: // expected-warning {{conflicting return type in implementation of 'setCat:': 'vo… 34 (float) x { return 0; } // expected-warning {{conflicting parameter types in implementation of 'se… 35 …t) x { return 0; } // expected-warning {{conflicting return type in implementation of 'cCat:': 'v…
|
D | protocol-warn.m | 11 @implementation UIResponder 17 @implementation UIView 23 @implementation UIWebTiledView 29 @implementation UIWebDocumentView 35 @implementation UIWebBrowserView 41 @implementation UIPDFView 47 @implementation UIWebPDFView
|
D | super-class-protocol-conformance.m | 22 @implementation SubClass1 @end // Test1 - No Warning 24 @implementation TopClass // expected-warning {{property 'myString' requires method 'myString' to b… 27 @implementation SubClass // Test3 - No Warning 33 @implementation SubClass2 @end // Test 4 - No Warning 36 @implementation SubClass3 @end // Test 5 - No Warning 39 @implementation SubClass4 @end // Test 5 - No Warning 46 @implementation SubClass5 @end // expected-warning {{property 'myNewString' requires method 'myNe… 63 @implementation INTF @end // expected-warning{{property 'invalidationBacktrace' requires method 'in…
|
D | incomplete-implementation.m | 8 @implementation I // expected-warning{{incomplete implementation}} 11 @implementation I(CAT) 15 #pragma GCC diagnostic ignored "-Wincomplete-implementation" 20 @implementation I2 23 @implementation I2(CAT) 31 @implementation Q
|
D | class-impl-1.m | 12 @implementation INTF @end // expected-note {{previous definition is here}} 14 @implementation INTF // expected-error {{reimplementation of class 'INTF'}} 21 @implementation INTF1 : SUPER // expected-error {{conflicting super class name 'SUPER'}} 27 @implementation INTF2 : SUPR // expected-error {{cannot find interface declaration for 'SUPR', sup… 30 @implementation INTF3 @end // expected-error {{redefinition of 'INTF3' as different kind of symbol}} 32 @implementation INTF4 @end // expected-warning {{cannot find interface declaration for 'INTF4'}} 36 @implementation INTF5 { // expected-warning {{cannot find interface declaration for 'INTF5'}}
|
D | property.m | 17 @implementation I 19 @dynamic bad; // expected-error {{property implementation must have its declaration in interface… 25 @implementation I(CAT) // expected-warning {{property 'd1' requires method 'd1' to be defined }} \ 27 @synthesize d1; // expected-error {{@synthesize not allowed in a category's implementation}} 28 @dynamic bad; // expected-error {{property implementation must have its declaration in the categor… 31 @implementation E // expected-warning {{cannot find interface declaration for 'E'}} 32 @dynamic d; // expected-error {{property implementation must have its declaration in interface 'E'… 35 @implementation Q(MYCAT) // expected-error {{cannot find interface declaration for 'Q'}} 36 @dynamic d; // expected-error {{property implementation in a category with no category declaration… 67 @synthesize window; // expected-error {{missing context for property implementation declaration}} [all …]
|
D | method-conflict-2.m | 11 @implementation Test1 12 - (void) test1:(B*) object {} // expected-warning {{conflicting parameter types in implementation o… 21 @implementation Test2 22 - (void) test1:(A*) object {} // expected-warning {{conflicting parameter types in implementation o… 31 @implementation Test3 33 - (A*) test2 { return 0; } // expected-warning {{conflicting return type in implementation of 'test… 41 @implementation Test4
|
D | no-protocol-option-tests.m | 10 @implementation I @end // no warning with -Wno-protocol 15 @implementation C (Category) @end // no warning with -Wno-protocol 22 @implementation J @end // expected-warning {{incomplete implementation}} 27 @implementation K @end // no warning with -Wno-protocol 32 @implementation L @end // no warning with -Wno-protocol
|
D | conflicting-ivar-test-1.m | 10 @implementation INTF 28 @implementation INTF1 44 @implementation INTF2 61 @implementation INTF3 69 @implementation INTF4 // expected-warning {{cannot find interface declaration for 'INTF4'}} 83 @implementation INTF5
|
D | method-undef-category-warn-1.m | 15 @implementation MyClass1(CAT) // expected-warning {{incomplete implementation}} \ 24 @implementation MyClass1(DOG) // expected-warning {{incomplete implementation}} \ 29 @implementation MyClass1(CAT1) 52 @implementation NSObject (FooConformance) 72 @implementation NSOrderedSet (CollectionConformance)
|
/external/clang/test/CodeGenObjC/ |
D | dot-syntax-1.m | 21 @implementation Top0 31 @implementation Bot0 52 @implementation Top1 62 @implementation Bot1 83 @implementation Top2 93 @implementation Bot2 114 @implementation Top3 124 @implementation Bot3 145 @implementation Top4 155 @implementation Bot4 [all …]
|
D | objc2-weak-import-attribute.m | 10 @implementation MySubclass @end 12 @implementation WeakClass(MyCategory) @end 18 @implementation WeakClass1(MyCategory) @end 20 @implementation WeakClass1(YourCategory) @end 44 @implementation Sub @end 46 @implementation Root @end
|
/external/clang/test/ASTMerge/Inputs/ |
D | category1.m | 27 // Category with implementation 31 @implementation I2 (Cat3) 34 // Category with implementation 38 @implementation I2 (Cat4) 41 // Category with mismatched implementation 45 @implementation I2 (Cat6)
|
D | category2.m | 29 // Category with implementation 33 @implementation I2 (Cat3) 36 // Category with implementation 40 @implementation I2 (Cat5) 43 // Category with mismatched implementation 47 @implementation I2 (Cat6)
|
/external/clang/test/Parser/ |
D | missing-end-4.m | 5 @implementation X1 // expected-note {{implementation started here}} 12 @implementation X2 // expected-note {{implementation started here}} 28 @implementation X4 // expected-error {{missing '@end'}} 34 @implementation I 47 @implementation I3
|
/external/clang/test/Rewriter/ |
D | rewrite-modern-class.mm | 23 @implementation MAXIMAL 29 @implementation empty_class @end 33 @implementation class_empty_root @end 41 @implementation class_with_ivars @end 45 @implementation class_has_no_ivar @end 57 @implementation INTF
|
/external/webrtc/src/ |
D | PATENTS | 3 "This implementation" means the copyrightable works distributed by 10 implementation of the WebRTC code package, where such license applies 13 infringed by this implementation of the WebRTC code package. This 15 consequence of further modification of this implementation. If you or 19 implementation of the WebRTC code package or any code incorporated 20 within this implementation of the WebRTC code package constitutes 23 for this implementation of the WebRTC code package shall terminate as
|
/external/webp/ |
D | PATENTS | 3 "This implementation" means the copyrightable works distributed by 10 implementation of VP8, where such license applies only to those patent 13 implementation of VP8. This grant does not include claims that would be 15 implementation. If you or your agent or exclusive licensee institute or 18 that this implementation of VP8 or any code incorporated within this 19 implementation of VP8 constitutes direct or contributory patent 21 rights granted to you under this License for this implementation of VP8
|
/external/libyuv/files/ |
D | PATENTS | 3 "This implementation" means the copyrightable works distributed by 10 implementation of the LibYuv code package, where such license applies 13 infringed by this implementation of the LibYuv code package. This 15 consequence of further modification of this implementation. If you or 19 implementation of the LibYuv code package or any code incorporated 20 within this implementation of the LibYuv code package constitutes 23 for this implementation of the LibYuv code package shall terminate as
|
/external/libvpx/ |
D | PATENTS | 3 "This implementation" means the copyrightable works distributed by 10 implementation of VP8, where such license applies only to those patent 13 implementation of VP8. This grant does not include claims that would be 15 implementation. If you or your agent or exclusive licensee institute or 18 that this implementation of VP8 or any code incorporated within this 19 implementation of VP8 constitutes direct or contributory patent 21 rights granted to you under this License for this implementation of VP8
|
/external/webkit/LayoutTests/fast/dom/Node/script-tests/ |
D | isEqualNode.js | 4 var docTypeAllSet = document.implementation.createDocumentType('html', '-//W3C//DTD XHTML 1.0 Stric… 5 var docTypeAllSet2 = document.implementation.createDocumentType('html', '-//W3C//DTD XHTML 1.0 Stri… 6 var docTypeDifferentPublicID = document.implementation.createDocumentType('html', 'foo', 'http://ww… 7 var docTypeDifferentSystemID = document.implementation.createDocumentType('html', '-//W3C//DTD XHTM…
|
/external/clang/test/Analysis/ |
D | unused-ivars.m | 22 @implementation TestA @end 33 @implementation TestB 49 // in the same file as the implementation 61 @implementation RDar6260004 @end 62 @implementation RDar6260004 (Protocol6260004) 79 @implementation RDar7254495 96 @implementation RDar7353683 109 @implementation RDar8481311
|
12345678910>>...74