Searched refs:implementation (Results 1 – 25 of 3479) sorted by relevance
12345678910>>...140
82 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_object153 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 …]
45 def _unary_response(argument, implementation, rpc, servicer_context): argument47 response = implementation(argument, servicer_context)54 def _stream_response(argument, implementation, rpc, servicer_context): argument56 response_iterator = implementation(argument, servicer_context)73 def unary_unary(implementation, rpc, request, servicer_context): argument74 _unary_response(request, implementation, rpc, servicer_context)77 def unary_stream(implementation, rpc, request, servicer_context): argument78 _stream_response(request, implementation, rpc, servicer_context)81 def stream_unary(implementation, rpc, handler, servicer_context): argument83 _RequestIterator(rpc, handler), implementation, rpc, servicer_context)[all …]
... jar.asm.MethodVisitor, net.bytebuddy.implementation.Implementation$Context, net.bytebuddy.description ...
9 @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…
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…[all …]
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…
18 @implementation MyClass21 …SArray *)object { // broken-warning {{conflicting parameter types in implementation of 'myMethod1:…34 @implementation MyOtherClass35 …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 Test152 - (void) test1:(B*) object {} // broken-warning {{conflicting parameter types in implementation of …61 @implementation Test262 - (void) test1:(A*) object {} // broken-warning {{conflicting parameter types in implementation of …71 @implementation Test3[all …]
12 @implementation Test113 - (void) test1:(B*) object {} // expected-warning {{conflicting parameter types in implementation o…22 @implementation Test223 - (void) test1:(A*) object {} // expected-warning {{conflicting parameter types in implementation o…32 @implementation Test334 - (A*) test2 { return 0; } // expected-warning {{conflicting return type in implementation of 'test…42 @implementation Test462 @implementation CKIMMessage63 - (int32_t)sequenceNumber { // expected-warning {{conflicting return type in implementation of 'seq…70 // is seen by the method implementation type matching logic before[all …]
14 @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 NSArray386 @implementation I(CAT)104 @implementation C (Category) // expected-warning {{property 'p1' requires method 'p1' to be define…121 …implementation MyObject (CAT) // expected-warning {{property 'anotherFloat' requires method 'anoth…
11 @implementation UIResponder17 @implementation UIView23 @implementation UIWebTiledView29 @implementation UIWebDocumentView35 @implementation UIWebBrowserView41 @implementation UIPDFView47 @implementation UIWebPDFView
22 @implementation SubClass1 @end // Test1 - No Warning24 @implementation TopClass // expected-warning {{property 'myString' requires method 'myString' to b…27 @implementation SubClass // Test3 - No Warning 33 @implementation SubClass2 @end // Test 4 - No Warning36 @implementation SubClass3 @end // Test 5 - No Warning 39 @implementation SubClass4 @end // Test 5 - No Warning46 @implementation SubClass5 @end // expected-warning {{property 'myNewString' requires method 'myNe…63 @implementation INTF @end // expected-warning{{property 'invalidationBacktrace' requires method 'in…
12 // provide the implementation here, but this protocol will23 …implementation ClassB // expected-warning {{property 'theWorstOfTimes' requires method 'theWorstOf…29 @implementation ClassB_Good // no-warning43 @implementation ClassB_AlsoGood // expected-note {{detected while default synthesizing properties …63 @implementation ClassD // expected-warning {{method 'foulIsFair' in protocol 'Derived' not implemen…124 @implementation MyObject130 @implementation Lovecraft135 @implementation Shoggoth139 @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 …]
15 @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 SynthNone90 // No default synthesis if implementation has getter (readonly) and setter(readwrite) methods.100 @implementation DSATextSearchResult 110 @implementation DSANodeSearchResult123 @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…
1 // RUN: %clang_cc1 -fsyntax-only -Wno-incomplete-implementation -verify -fblocks %s27 @implementation I146 @implementation B163 @implementation S192 @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 S4131 @implementation S5155 @implementation S6 // expected-warning {{method override for the designated initializer of the supe…186 @implementation SS4[all …]
17 @implementation I19 @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 …]
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'}}
62 implementation 'com.android.support:appcompat-v7:26.1.0'63 implementation 'com.android.support:multidex:1.0.3'64 implementation 'com.android.support:support-annotations:27.1.1'65 implementation 'com.google.android.gms:play-services-base:15.0.1'66 implementation ('com.google.auth:google-auth-library-oauth2-http:0.9.0') {69 implementation 'com.google.truth:truth:0.36'70 implementation 'javax.annotation:javax.annotation-api:1.2'71 implementation 'junit:junit:4.12'74 implementation 'io.grpc:grpc-auth:1.16.0-SNAPSHOT' // CURRENT_GRPC_VERSION75 implementation 'io.grpc:grpc-okhttp:1.16.0-SNAPSHOT' // CURRENT_GRPC_VERSION[all …]
257 def _simple_method_handler(implementation, request_deserializer, argument259 if implementation.style is style.Service.INLINE:260 if implementation.cardinality is cardinality.Cardinality.UNARY_UNARY:264 implementation.unary_unary_inline),266 elif implementation.cardinality is cardinality.Cardinality.UNARY_STREAM:270 implementation.unary_stream_inline),272 elif implementation.cardinality is cardinality.Cardinality.STREAM_UNARY:276 implementation.stream_unary_inline),278 elif implementation.cardinality is cardinality.Cardinality.STREAM_STREAM:283 implementation.stream_stream_inline))[all …]
21 @implementation Top031 @implementation Bot052 @implementation Top162 @implementation Bot183 @implementation Top293 @implementation Bot2114 @implementation Top3124 @implementation Bot3145 @implementation Top4155 @implementation Bot4[all …]
26 @implementation MyIvarClass152 @implementation MyIvarClass285 @implementation MyPropertyClass198 @implementation MyPropertyClass2113 @implementation MyPropertyClass3133 @implementation MyPropertyClass4152 @implementation MyPropertyClass5168 @implementation MyPropertyClassWithReturnInDealloc189 @implementation MyPropertyClassWithReleaseInOtherInstance213 @implementation MyPropertyClassWithNeitherReturnNorSuperDealloc[all …]
33 @implementation MissingDeallocWithIvar44 @implementation MissingDeallocWithIntProperty51 @implementation MissingDeallocWithSELProperty64 @implementation MissingDeallocWithCopyProperty74 @implementation MissingDeallocWithRetainProperty85 @implementation MissingDeallocWithMultipleProperties97 @implementation MissingDeallocWithIVarAndRetainProperty107 @implementation MissingDeallocWithReadOnlyRetainedProperty121 @implementation TestSELs142 @implementation HasOutlet // no-warning[all …]
29 @implementation MyClass45 @implementation MyClassDIP51 @implementation MyParentDIP67 @implementation AAA69 @implementation AAA (MyCat)87 @implementation PPP89 @implementation PPP (MyCat)102 @implementation MyParentTricky107 @implementation MyClassTricky125 @implementation MyClassUnknown[all …]
39 implementation fileTree(dir: 'libs', include: ['*.jar'])40 implementation 'com.android.support:appcompat-v7:25.2.0'41 implementation 'com.android.support.constraint:constraint-layout:1.0.2'42 implementation 'com.android.support:design:25.2.0'43 implementation 'com.android.support:support-annotations:25.3.1'44 implementation 'com.android.support:support-v13:25.2.0'46 implementation 'org.tensorflow:tensorflow-lite:+'
49 for implementation in [1, 2]:56 'implementation': implementation59 if padding == 'same' and implementation == 1:77 for implementation in [1, 2]:85 'implementation': implementation,89 if padding == 'same' and implementation == 1:135 for implementation in [1, 2]:147 'implementation': implementation150 if padding == 'same' and implementation == 1:169 for implementation in [1, 2]:[all …]
134 implementation=1, argument141 if self.padding != 'valid' and implementation == 1:155 self.implementation = implementation171 if self.implementation == 1:182 elif self.implementation == 2:207 % self.implementation)241 if self.implementation == 1:245 elif self.implementation == 2:251 % self.implementation)290 self.implementation[all …]