HomeSort by relevance Sort by last modified time
    Searched full:redefinition (Results 51 - 75 of 509) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
function-overloaded-redecl.cpp 9 void f (cInt) { } // expected-error {{redefinition of 'f'}}
typedef-redecl.cpp 6 typedef float REALLY_INT; // expected-error{{typedef redefinition with different types ('float' vs 'INT' (aka 'int'))}}
10 typedef INT result_type; // expected-error {{redefinition of 'result_type'}}
14 typedef int Y; // expected-error{{typedef redefinition with different types ('int' vs 'Y')}}
20 typedef int f; // expected-error{{redefinition of 'f' as different kind of symbol}}
23 void f2(); // expected-error{{redefinition of 'f2' as different kind of symbol}}
71 typedef int q[C >= 1 ? 2 : -2]; // expected-error{{typedef redefinition with different types ('int [2]' vs 'int [1]')}}
83 typedef int q[T]; // expected-error{{typedef redefinition with different types ('int [2]' vs 'int [1]')}}
condition.cpp 25 int x; // expected-error {{redefinition of 'x'}}
28 int x; // expected-error {{redefinition of 'x'}}
29 while (int x=0) int x; // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}}
30 while (int x=0) { int x; } // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}}
31 for (int x; int x=0; ) ; // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}}
32 for (int x; ; ) int x; // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}}
33 for (; int x=0; ) int x; // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}}
34 for (; int x=0; ) { int x; } // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}}
35 switch (int x=0) { default: int x; } // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}}
  /external/clang/test/SemaObjC/
class-def-test-1.m 9 @interface INTF @end // expected-error {{redefinition of 'INTF' as different kind of symbol}}
17 typedef int OBJECT; // expected-error {{redefinition of 'OBJECT' as different kind of symbol}}
20 @interface INTF2 : OBJECT2 @end // expected-error {{redefinition of 'OBJECT2' as different kind of symbol}}
22 @implementation INTF2 : OBJECT2 @end // expected-error {{redefinition of 'OBJECT2' as different kind of symbol}}
id.m 20 typedef int id; // expected-error {{typedef redefinition with different types ('int' vs 'id')}}
23 typedef double id; // expected-error {{typedef redefinition with different types ('double' vs 'id')}}
25 typedef char *id; // expected-error {{typedef redefinition with different types ('char *' vs 'id')}}
27 typedef union U{ int iu; } *id; // expected-error {{typedef redefinition with different types ('union U *' vs 'id')}}
  /external/llvm/test/Assembler/
alias-redefinition.ll 3 ; CHECK: error: redefinition of global '@bar'
  /external/llvm/test/MC/AsmParser/
equ.s 8 // CHECK: error: redefinition of 'a'
  /external/llvm/test/MC/ELF/
section-sym-err.s 6 // CHECK: error: invalid symbol redefinition
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug039.go 10 var x int; // ERROR "redecl|redefinition"
bug040.go 10 x int) { // ERROR "duplicate argument|redefinition"
bug192.go 11 var fmt int // ERROR "redecl|redefinition"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug039.go 10 var x int; // ERROR "redecl|redefinition"
bug040.go 10 x int) { // ERROR "duplicate argument|redefinition"
bug192.go 11 var fmt int // ERROR "redecl|redefinition"
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
req.l 4 [^:]*:41: Warning: ignoring redefinition of register alias 'FOO'
  /external/clang/test/CXX/class/class.mem/
p1.cpp 9 static int v; //expected-error{{redefinition of 'v' as different kind of symbol}}
11 static int v; //expected-error{{redefinition of 'v' as different kind of symbol}}
45 int S4::v4; //expected-error{{redefinition of 'v4'}}
50 void v5() { } //expected-error{{redefinition of 'v5' as different kind of symbol}}
53 static int v6; //expected-error{{redefinition of 'v6' as different kind of symbol}}
57 static int v7; //expected-error{{redefinition of 'v7' as different kind of symbol}}
  /external/clang/test/Sema/
var-redecl.c 17 extern int outer6; // expected-error{{redefinition of 'outer6' as different kind of symbol}}
26 int outer3; // expected-error{{redefinition of 'outer3' with a different type}}
27 float outer4; // expected-error{{redefinition of 'outer4' with a different type}}
28 float outer5; // expected-error{{redefinition of 'outer5' with a different type}}
29 int outer8(int); // expected-error{{redefinition of 'outer8' as different kind of symbol}}
30 float outer9; // expected-error{{redefinition of 'outer9' with a different type}}
  /external/clang/test/CXX/basic/basic.def.odr/
p1-var.cpp 9 int i; // expected-error {{redefinition}}
21 int l = 2; // expected-error {{redefinition}}
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.unnamed/
p1.cpp 32 class Test3 {}; // expected-error {{redefinition of 'Test3'}}
40 class Test4 {}; // expected-error {{redefinition of 'Test4'}}
  /external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
p6.cpp 10 template<int V1, int V2> void f0(A0<V1, V2>) { } // expected-error{{redefinition}}
14 template<int A, int B> void f1(A0<0, (A + B)>) { } // expected-error{{redefinition}}
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p4.cpp 5 friend void f6(int) { } // expected-error{{redefinition of}} \
16 friend void f(int x) { } // expected-error{{redefinition}} \
  /external/clang/test/Modules/
elaborated-type-specifier-from-hidden-module.m 8 struct S2 { int x; }; // expected-error {{redefinition}}
11 struct S3 { float y; }; // expected-error {{redefinition}}
  /external/clang/test/PCH/
macro-redef.c 5 // Test that a redefinition inside the PCH won't manifest as an ambiguous macro.
26 int x = M2; // expected-error {{redefinition}}
reloc.c 10 int x = 2; // expected-error{{redefinition}}
11 int y = 5; // expected-error{{redefinition}}
  /external/clang/test/SemaTemplate/
canonical-expr-type-0x.cpp 13 void f0(U u, decltype(f(M, u))) { } // expected-error{{redefinition}}
25 N<sizeof...(U)> f1() {} // expected-error{{redefinition}}

Completed in 1799 milliseconds

1 23 4 5 6 7 8 91011>>