Searched refs:conflicting (Results 1 – 25 of 272) sorted by relevance
1234567891011
/external/clang/test/SemaObjC/ |
D | method-typecheck-1.m | 10 -(void) setMoo: (float) x {} // expected-warning {{conflicting parameter types in implementation o… 11 - (char) setMoo1: (int) x { return 0; } // expected-warning {{conflicting return type in implement… 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… 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 + (int) cCat: (int) x { return 0; } // expected-warning {{conflicting return type in implementatio… 48 - (double)returnCGFloat { // expected-warning {{conflicting return type in implementation of 'retur…
|
D | qualified-protocol-method-conflicts.m | 18 -(void) setX: (int) arg0 { } // expected-warning {{conflicting parameter types in declaration of 's… 19 +(int) C {return 0; } // expected-warning {{conflicting return type in declaration of 'C': 'float' … 26 -(void) setX: (float) arg0 { } // expected-warning {{conflicting parameter types in declaration of … 27 + (float) C {return 0.0; } // expected-warning {{conflicting return type in declaration of 'C': 'in… 37 -(void) setX: (int) arg0 { } // expected-warning {{conflicting parameter types in declaration of 's… 38 + (int) C {return 0;} // expected-warning {{conflicting return type in declaration of 'C': 'float' …
|
D | class-protocol-method-match.m | 26 - (id)bud; // expected-warning {{conflicting distributed object modifiers on return type in declara… 27 - (void) baz; // expected-warning 2 {{conflicting return type in declaration of 'baz': 'unsigned ch… 28 - (void) bar : (unsigned char*)arg; // expected-warning {{conflicting parameter types in declaratio… 30 - (void) also_ok; // expected-warning {{conflicting return type in declaration of 'also_ok': 'unsig… 32 - (void) ban : (int) arg; // expected-warning {{conflicting variadic declaration of method and its … 47 - (void) bak {} // expected-warning {{conflicting return type in declaration of 'bak': 'char' vs 'v…
|
D | method-typecheck-2.m | 19 - (void) doSomething: (int) x {} // expected-warning {{conflicting parameter types}} 20 + (void) doSomethingClassy: (float) x{} // expected-warning {{conflicting parameter types}} 21 - (void) doSomethingInProtocol: (id) x {} // expected-warning {{conflicting parameter types}} 22 + (void) doSomethingClassyInProtocol: (id) x {} // expected-warning {{conflicting parameter types}}
|
D | method-conflict-1.m | 21 - (void)myMethod1:(NSArray *)object { // broken-warning {{conflicting parameter types in implementa… 35 - (void)myMethod:(MyClass *)object { // broken-warning {{conflicting parameter types in implementat… 37 - (void)myMethod1:(MyClass<MyProtocol> *)object { // broken-warning {{conflicting parameter types i… 52 - (void) test1:(B*) object {} // broken-warning {{conflicting parameter types in implementation of … 62 - (void) test1:(A*) object {} // broken-warning {{conflicting parameter types in implementation of … 73 - (A*) test2 { return 0; } // broken-warning {{conflicting return type in implementation of 'test2'…
|
D | dist-object-modifiers.m | 16 - (id)serverPID { return 0; } // expected-warning {{conflicting distributed object modifiers on ret… 17 - (void)doStuff:(id)clientId { } // expected-warning {{conflicting distributed object modifiers on … 19 + (id) stillMore : (id)Arg : (bycopy id)Arg1 { return Arg; } // expected-warning {{conflicting dis… 20 …// expected-warning 2{{conflicting distributed object modifiers on parameter type in implementatio…
|
D | method-typecheck-3.m | 17 - (A*)a { return self;} // expected-warning {{conflicting return type in implementation of 'a'}} 18 - (void)takesA: (B*)a // expected-warning {{conflicting parameter types in implementation of 'take… 20 - (void)takesId: (B*)a // expected-warning {{conflicting parameter types in implementation of 'take…
|
/external/llvm-project/clang/test/SemaObjC/ |
D | method-typecheck-1.m | 10 -(void) setMoo: (float) x {} // expected-warning {{conflicting parameter types in implementation o… 11 - (char) setMoo1: (int) x { return 0; } // expected-warning {{conflicting return type in implement… 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… 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 + (int) cCat: (int) x { return 0; } // expected-warning {{conflicting return type in implementatio… 48 - (double)returnCGFloat { // expected-warning {{conflicting return type in implementation of 'retur…
|
D | qualified-protocol-method-conflicts.m | 18 -(void) setX: (int) arg0 { } // expected-warning {{conflicting parameter types in declaration of 's… 19 +(int) C {return 0; } // expected-warning {{conflicting return type in declaration of 'C': 'float' … 26 -(void) setX: (float) arg0 { } // expected-warning {{conflicting parameter types in declaration of … 27 + (float) C {return 0.0; } // expected-warning {{conflicting return type in declaration of 'C': 'in… 37 -(void) setX: (int) arg0 { } // expected-warning {{conflicting parameter types in declaration of 's… 38 + (int) C {return 0;} // expected-warning {{conflicting return type in declaration of 'C': 'float' …
|
D | class-protocol-method-match.m | 26 - (id)bud; // expected-warning {{conflicting distributed object modifiers on return type in declara… 27 - (void) baz; // expected-warning 2 {{conflicting return type in declaration of 'baz': 'unsigned ch… 28 - (void) bar : (unsigned char*)arg; // expected-warning {{conflicting parameter types in declaratio… 30 - (void) also_ok; // expected-warning {{conflicting return type in declaration of 'also_ok': 'unsig… 32 - (void) ban : (int) arg; // expected-warning {{conflicting variadic declaration of method and its … 47 - (void) bak {} // expected-warning {{conflicting return type in declaration of 'bak': 'char' vs 'v…
|
D | method-typecheck-2.m | 19 - (void) doSomething: (int) x {} // expected-warning {{conflicting parameter types}} 20 + (void) doSomethingClassy: (float) x{} // expected-warning {{conflicting parameter types}} 21 - (void) doSomethingInProtocol: (id) x {} // expected-warning {{conflicting parameter types}} 22 + (void) doSomethingClassyInProtocol: (id) x {} // expected-warning {{conflicting parameter types}}
|
D | method-conflict-1.m | 21 - (void)myMethod1:(NSArray *)object { // broken-warning {{conflicting parameter types in implementa… 35 - (void)myMethod:(MyClass *)object { // broken-warning {{conflicting parameter types in implementat… 37 - (void)myMethod1:(MyClass<MyProtocol> *)object { // broken-warning {{conflicting parameter types i… 52 - (void) test1:(B*) object {} // broken-warning {{conflicting parameter types in implementation of … 62 - (void) test1:(A*) object {} // broken-warning {{conflicting parameter types in implementation of … 73 - (A*) test2 { return 0; } // broken-warning {{conflicting return type in implementation of 'test2'…
|
D | dist-object-modifiers.m | 16 - (id)serverPID { return 0; } // expected-warning {{conflicting distributed object modifiers on ret… 17 - (void)doStuff:(id)clientId { } // expected-warning {{conflicting distributed object modifiers on … 19 + (id) stillMore : (id)Arg : (bycopy id)Arg1 { return Arg; } // expected-warning {{conflicting dis… 20 …// expected-warning 2{{conflicting distributed object modifiers on parameter type in implementatio…
|
D | method-typecheck-3.m | 17 - (A*)a { return self;} // expected-warning {{conflicting return type in implementation of 'a'}} 18 - (void)takesA: (B*)a // expected-warning {{conflicting parameter types in implementation of 'take… 20 - (void)takesId: (B*)a // expected-warning {{conflicting parameter types in implementation of 'take…
|
/external/rust/crates/pin-project/tests/ui/not_unpin/ |
D | conflict-unpin.stderr | 1 error[E0119]: conflicting implementations of trait `std::marker::Unpin` for type `Foo<_, _>`: 5 | ^^^^^^ conflicting implementation for `Foo<_, _>` 10 error[E0119]: conflicting implementations of trait `std::marker::Unpin` for type `Bar<_, _>`: 14 | ^^^^^^ conflicting implementation for `Bar<_, _>` 19 error[E0119]: conflicting implementations of trait `std::marker::Unpin` for type `Baz<_, _>`: 23 | ^^^^^^ conflicting implementation for `Baz<_, _>`
|
D | impl-unsafe-unpin.stderr | 1 error[E0119]: conflicting implementations of trait `pin_project::UnsafeUnpin` for type `Foo<_, _>`: 5 | ^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `Foo<_, _>` 12 error[E0119]: conflicting implementations of trait `pin_project::UnsafeUnpin` for type `Bar<_, _>`: 16 | ^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `Bar<_, _>` 23 error[E0119]: conflicting implementations of trait `pin_project::UnsafeUnpin` for type `Baz<_, _>`: 27 | ^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `Baz<_, _>`
|
/external/rust/crates/pin-project/tests/ui/pin_project/ |
D | impl-unsafe-unpin.stderr | 1 error[E0119]: conflicting implementations of trait `pin_project::UnsafeUnpin` for type `Foo<_, _>`: 5 | ^^^^^^^^^^^^^^ conflicting implementation for `Foo<_, _>` 12 error[E0119]: conflicting implementations of trait `pin_project::UnsafeUnpin` for type `Bar<_, _>`: 16 | ^^^^^^^^^^^^^^ conflicting implementation for `Bar<_, _>` 23 error[E0119]: conflicting implementations of trait `pin_project::UnsafeUnpin` for type `Baz<_, _>`: 27 | ^^^^^^^^^^^^^^ conflicting implementation for `Baz<_, _>`
|
D | conflict-unpin.stderr | 1 error[E0119]: conflicting implementations of trait `std::marker::Unpin` for type `Foo<_, _>`: 5 | ^^^^^^^^^^^^^^ conflicting implementation for `Foo<_, _>` 12 error[E0119]: conflicting implementations of trait `std::marker::Unpin` for type `Bar<_, _>`: 16 | ^^^^^^^^^^^^^^ conflicting implementation for `Bar<_, _>` 23 error[E0119]: conflicting implementations of trait `std::marker::Unpin` for type `Baz<_, _>`: 27 | ^^^^^^^^^^^^^^ conflicting implementation for `Baz<_, _>`
|
D | conflict-drop.stderr | 1 error[E0119]: conflicting implementations of trait `_::FooMustNotImplDrop` for type `Foo<_, _>`: 8 | conflicting implementation for `Foo<_, _>` 12 error[E0119]: conflicting implementations of trait `std::ops::Drop` for type `Bar<_, _>`: 16 | ^^^^^^^^^^ conflicting implementation for `Bar<_, _>`
|
/external/rust/crates/pin-project/tests/ui/unsafe_unpin/ |
D | conflict-unpin.stderr | 1 error[E0119]: conflicting implementations of trait `std::marker::Unpin` for type `Foo<_, _>`: 5 | ^^^^^^^^^^^ conflicting implementation for `Foo<_, _>` 12 error[E0119]: conflicting implementations of trait `std::marker::Unpin` for type `Bar<_, _>`: 16 | ^^^^^^^^^^^ conflicting implementation for `Bar<_, _>` 23 error[E0119]: conflicting implementations of trait `std::marker::Unpin` for type `Baz<_, _>`: 27 | ^^^^^^^^^^^ conflicting implementation for `Baz<_, _>`
|
/external/rust/crates/pin-project-lite/tests/ui/ |
D | conflict-unpin.stderr | 1 error[E0119]: conflicting implementations of trait `std::marker::Unpin` for type `Foo<_, _>`: 11 | |_^ conflicting implementation for `Foo<_, _>` 18 error[E0119]: conflicting implementations of trait `std::marker::Unpin` for type `Bar<_, _>`: 28 | |_^ conflicting implementation for `Bar<_, _>` 35 error[E0119]: conflicting implementations of trait `std::marker::Unpin` for type `Baz<_, _>`: 45 | |_^ conflicting implementation for `Baz<_, _>`
|
/external/clang/test/Parser/ |
D | objc-recover.mm | 23 - (id)foo {} // expected-warning{{conflicting return type}} 25 + (id)bar {} // expected-warning{{conflicting return type}} 44 - (void)test { // expected-warning{{conflicting return type}} 63 - (id)PWEN_foo {} // expected-warning{{conflicting return type}}
|
/external/llvm-project/clang/test/Parser/ |
D | objc-recover.mm | 23 - (id)foo {} // expected-warning{{conflicting return type}} 25 + (id)bar {} // expected-warning{{conflicting return type}} 44 - (void)test { // expected-warning{{conflicting return type}} 63 - (id)PWEN_foo {} // expected-warning{{conflicting return type}}
|
/external/llvm-project/mlir/test/Dialect/SPIRV/Linking/ModuleCombiner/ |
D | conflict_resolution.mlir | 3 // Test basic renaming of conflicting funcOps. 33 // Test basic renaming of conflicting funcOps across 3 modules. 235 // Resolve conflicting funcOp and globalVariableOp. 260 // Resolve conflicting funcOp and globalVariableOp and update the global variable's 297 // Resolve conflicting globalVariableOp and funcOp and update the global variable's 334 // Resolve conflicting funcOp and specConstantOp. 359 // Resolve conflicting funcOp and specConstantOp and update the spec constant's 394 // Resolve conflicting specConstantOp and funcOp and update the spec constant's 429 // Resolve conflicting funcOp and specConstantCompositeOp. 456 // Resolve conflicting funcOp and specConstantCompositeOp and update the spec [all …]
|
/external/rust/cxx/tests/ui/ |
D | derive_duplicate.stderr | 1 error[E0119]: conflicting implementations of trait `std::clone::Clone` for type `ffi::Struct` 5 | ----- ^^^^^ conflicting implementation for `ffi::Struct`
|
1234567891011