Home
last modified time | relevance | path

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

12345678910>>...131

/external/parameter-framework/asio-1.10.6/include/asio/
Dbasic_io_object.hpp82 service.construct(implementation); in basic_io_object()
93 service.destroy(implementation); in ~basic_io_object()
118 return implementation; in get_implementation()
124 return implementation; in get_implementation()
129 implementation_type implementation; member in asio::basic_io_object
153 service_->construct(implementation); in basic_io_object()
159 service_->move_construct(implementation, other.implementation); in basic_io_object()
164 service_->destroy(implementation); in ~basic_io_object()
169 service_->move_assign(implementation, in operator =()
170 *other.service_, other.implementation); in operator =()
[all …]
/external/clang/test/Parser/
Dobjc-error-qualified-implementation.m9 @implementation I<P> @end // expected-error {{@implementation declaration cannot be protocol qualif…
15 @implementation J < P,P > // expected-error {{@implementation declaration cannot be protocol qualif…
20 @implementation K <P // expected-error {{@implementation declaration cannot be protocol qualified}}…
24 @implementation I (Cat) <P> // expected-error {{@implementation declaration cannot be protocol qua…
28 @implementation I (Cat1) <P // expected-error {{@implementation declaration cannot be protocol qual…
/external/clang/test/SemaObjC/
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…
[all …]
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.m18 @implementation MyClass
21 …SArray *)object { // broken-warning {{conflicting parameter types in implementation of 'myMethod1:…
34 @implementation MyOtherClass
35 …yClass *)object { // broken-warning {{conflicting parameter types in implementation of 'myMethod:'…
37 …tocol> *)object { // broken-warning {{conflicting parameter types in implementation of 'myMethod1:…
51 @implementation Test1
52 - (void) test1:(B*) object {} // broken-warning {{conflicting parameter types in implementation of …
61 @implementation Test2
62 - (void) test1:(A*) object {} // broken-warning {{conflicting parameter types in implementation of …
71 @implementation Test3
[all …]
Dproperty-category-4.m14 @implementation IDELogNavigator
15 …xpected-error {{property declared in category 'CAT' cannot be implemented in class implementation}}
16 …xpected-error {{property declared in category 'CAT' cannot be implemented in class implementation}}
34 @implementation NSArray(Additions)
48 @implementation NSArray1(Additions)
60 @implementation NSArray2(Additions)
74 @implementation NSArray3
86 @implementation I(CAT)
104 @implementation C (Category) // expected-warning {{property 'p1' requires method 'p1' to be define…
121implementation MyObject (CAT) // expected-warning {{property 'anotherFloat' requires method 'anoth…
Dmethod-conflict-2.m12 @implementation Test1
13 - (void) test1:(B*) object {} // expected-warning {{conflicting parameter types in implementation o…
22 @implementation Test2
23 - (void) test1:(A*) object {} // expected-warning {{conflicting parameter types in implementation o…
32 @implementation Test3
34 - (A*) test2 { return 0; } // expected-warning {{conflicting return type in implementation of 'test…
42 @implementation Test4
62 @implementation CKIMMessage
63 - (int32_t)sequenceNumber { // expected-warning {{conflicting return type in implementation of 'seq…
70 // is seen by the method implementation type matching logic before
[all …]
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…
Dprotocols-suppress-conformance.m12 // provide the implementation here, but this protocol will
23implementation ClassB // expected-warning {{property 'theWorstOfTimes' requires method 'theWorstOf…
29 @implementation ClassB_Good // no-warning
43 @implementation ClassB_AlsoGood // expected-note {{detected while default synthesizing properties …
63 @implementation ClassD // expected-warning {{method 'foulIsFair' in protocol 'Derived' not implemen…
124 @implementation MyObject
130 @implementation Lovecraft
135 @implementation Shoggoth
139 @implementation Shoggoth_2 // expected-warning {{method 'innsmouth' in protocol 'ProtocolB' not imp…
145 @implementation Shoggoth_Explicit // expected-warning {{method 'innsmouth' in protocol 'ProtocolB_E…
[all …]
Ddefault-synthesize-1.m15 @implementation SynthItAll // expected-note 2 {{detected while default synthesizing properties in c…
25 @implementation SynthSetter // expected-note 2 {{detected while default synthesizing properties in …
45 @implementation SynthGetter // expected-note 2 {{detected while default synthesizing properties in …
68 @implementation SynthNone
90 // No default synthesis if implementation has getter (readonly) and setter(readwrite) methods.
100 @implementation DSATextSearchResult
110 @implementation DSANodeSearchResult
123 @implementation rdar11333367 // expected-error {{cannot synthesize property 'y' with incomplete typ…
124 … // expected-note {{detected while default synthesizing properties in class implementation}}
139 @implementation ZXCalendarParsedResult // expected-note {{detected while default synthesizing prope…
Dattr-designated-init.m1 // RUN: %clang_cc1 -fsyntax-only -Wno-incomplete-implementation -verify -fblocks %s
27 @implementation I1
46 @implementation B1
63 @implementation S1
92 @implementation SS2 // expected-warning {{method override for the designated initializer of the sup…
107 @implementation SS3 // expected-warning {{method override for the designated initializer of the sup…
118 @implementation S4
131 @implementation S5
155 @implementation S6 // expected-warning {{method override for the designated initializer of the supe…
186 @implementation SS4
[all …]
Dproperty.m17 @implementation I
19 @dynamic bad; // expected-error {{property implementation must have its declaration in interface…
25 @implementation I(CAT)
26 @synthesize d1; // expected-error {{@synthesize not allowed in a category's implementation}}
27 @dynamic bad; // expected-error {{property implementation must have its declaration in the categor…
30 @implementation E // expected-warning {{cannot find interface declaration for 'E'}}
31 @dynamic d; // expected-error {{property implementation must have its declaration in interface 'E'…
34 @implementation Q(MYCAT) // expected-error {{cannot find interface declaration for 'Q'}}
35 @dynamic d; // expected-error {{property implementation in a category with no category declaration…
66 @synthesize window; // expected-error {{missing context for property implementation declaration}}
[all …]
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-12.m34 @implementation I0
39 @implementation I1
44 @implementation I2
49 @implementation I3
54 @implementation I4
59 @implementation I5
64 @implementation I6
/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 …]
/external/clang/test/Analysis/
DDeallocMissingRelease.m26 @implementation MyIvarClass1
52 @implementation MyIvarClass2
85 @implementation MyPropertyClass1
98 @implementation MyPropertyClass2
113 @implementation MyPropertyClass3
133 @implementation MyPropertyClass4
152 @implementation MyPropertyClass5
168 @implementation MyPropertyClassWithReturnInDealloc
189 @implementation MyPropertyClassWithReleaseInOtherInstance
213 @implementation MyPropertyClassWithNeitherReturnNorSuperDealloc
[all …]
DMissingDealloc.m33 @implementation MissingDeallocWithIvar
44 @implementation MissingDeallocWithIntProperty
51 @implementation MissingDeallocWithSELProperty
64 @implementation MissingDeallocWithCopyProperty
74 @implementation MissingDeallocWithRetainProperty
85 @implementation MissingDeallocWithMultipleProperties
97 @implementation MissingDeallocWithIVarAndRetainProperty
107 @implementation MissingDeallocWithReadOnlyRetainedProperty
121 @implementation TestSELs
142 @implementation HasOutlet // no-warning
[all …]
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
126 @implementation Radar11059352
/external/clang/test/Analysis/inlining/
DInlineObjCClassMethod.m29 @implementation MyClass
45 @implementation MyClassDIP
51 @implementation MyParentDIP
67 @implementation AAA
69 @implementation AAA (MyCat)
87 @implementation PPP
89 @implementation PPP (MyCat)
102 @implementation MyParentTricky
107 @implementation MyClassTricky
125 @implementation MyClassUnknown
[all …]
/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/parameter-framework/asio-1.10.6/include/asio/ip/
Dbasic_resolver.hpp76 return this->service.cancel(this->implementation); in cancel()
98 iterator i = this->service.resolve(this->implementation, q, ec); in resolve()
122 return this->service.resolve(this->implementation, q, ec); in resolve()
162 return this->service.async_resolve(this->implementation, q, in ASIO_INITFN_RESULT_TYPE()
187 iterator i = this->service.resolve(this->implementation, e, ec); in resolve()
213 return this->service.resolve(this->implementation, e, ec); in resolve()
255 return this->service.async_resolve(this->implementation, e, in ASIO_INITFN_RESULT_TYPE()
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
DMockMethodInterceptor.java7 import net.bytebuddy.implementation.bind.annotation.AllArguments;
8 import net.bytebuddy.implementation.bind.annotation.Argument;
9 import net.bytebuddy.implementation.bind.annotation.BindingPriority;
10 import net.bytebuddy.implementation.bind.annotation.FieldValue;
11 import net.bytebuddy.implementation.bind.annotation.Origin;
12 import net.bytebuddy.implementation.bind.annotation.RuntimeType;
13 import net.bytebuddy.implementation.bind.annotation.StubValue;
14 import net.bytebuddy.implementation.bind.annotation.SuperCall;
15 import net.bytebuddy.implementation.bind.annotation.This;
/external/clang/test/Index/
Dcomment-objc-decls.m117 /// @implementation's
120 * \brief implementation of MyClass class.
122 @implementation MyClass {
129 * \brief MethodMyClass is instance method implementation.
136 * \brief ClassMethodMyClass is class method implementation.
142 // CHECK: <Declaration>@implementation MyClass {\n id IvarPrivateToMyClassImpl;\n id _PropertyMyC…
148 * \brief MyClass (Category) is implementation of private to MyClass.
150 @implementation MyClass (Category)
165 // CHECK: <Declaration>@implementation MyClass (Category)\n@end</Declaration>
171 * \brief NSObject implementation
[all …]

12345678910>>...131