Home
last modified time | relevance | path

Searched refs:implementation (Results 1 – 25 of 1837) sorted by relevance

12345678910>>...74

/external/webkit/Source/WebKit/mac/WebView/
DWebDelegateImplementationCaching.mm37 @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/
Dmissing-atend-metadata.m6 @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…
Dmethod-conflict-1.m17 @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 …]
Dmethod-typecheck-1.m9 @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…
Dprotocol-warn.m11 @implementation UIResponder
17 @implementation UIView
23 @implementation UIWebTiledView
29 @implementation UIWebDocumentView
35 @implementation UIWebBrowserView
41 @implementation UIPDFView
47 @implementation UIWebPDFView
Dsuper-class-protocol-conformance.m22 @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…
Dincomplete-implementation.m8 @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
Dclass-impl-1.m12 @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'}}
Dproperty.m17 @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 …]
Dmethod-conflict-2.m11 @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
Dno-protocol-option-tests.m10 @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
Dconflicting-ivar-test-1.m10 @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
Dmethod-undef-category-warn-1.m15 @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/
Ddot-syntax-1.m21 @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 …]
Dobjc2-weak-import-attribute.m10 @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/
Dcategory1.m27 // Category with implementation
31 @implementation I2 (Cat3)
34 // Category with implementation
38 @implementation I2 (Cat4)
41 // Category with mismatched implementation
45 @implementation I2 (Cat6)
Dcategory2.m29 // 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/
Dmissing-end-4.m5 @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/
Drewrite-modern-class.mm23 @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/
DPATENTS3 "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/
DPATENTS3 "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/
DPATENTS3 "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/
DPATENTS3 "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/
DisEqualNode.js4 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/
Dunused-ivars.m22 @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