OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:redefinition
(Results
26 - 50
of
450
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
p3.cpp
8
typedef char I; // expected-error {{typedef
redefinition
with different types}}
p4.cpp
6
typedef A A; // expected-error {{
redefinition
of 'A'}}
/external/clang/test/Parser/
control-scope.c
6
return 1 + sizeof (enum {a}); // expected-error {{
redefinition
of enumerator 'a'}}
/external/clang/test/Preprocessor/
mi_opt.c
3
// This test should get a
redefinition
error from m_iopt.h: the MI opt
/external/clang/test/SemaCXX/
function-overloaded-redecl.cpp
9
void f (cInt) { } // expected-error {{
redefinition
of 'f'}}
namespace.cpp
8
int A; // expected-error {{
redefinition
of 'A' as different kind of symbol}}
9
class A; // expected-error {{
redefinition
of 'A' as different kind of symbol}}
15
namespace C {} // expected-error {{
redefinition
of 'C' as different kind of symbol}}
59
namespace B {} // expected-error {{
redefinition
of 'B' as different kind of symbol}}
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')}}
objc2-merge-gc-attribue-decl.m
17
extern __weak id p3; // expected-error {{
redefinition
of 'p3' with a different type}}
20
extern void * __strong p4; // expected-error {{
redefinition
of 'p4' with a different type}}
26
extern char* p6; // expected-error {{
redefinition
of 'p6' with a different type}}
29
extern char* p7; // expected-error {{
redefinition
of 'p7' with a different type}}
/external/clang/test/SemaObjCXX/
objc2-merge-gc-attribue-decl.mm
39
extern __weak id p3; // expected-error {{
redefinition
of 'p3' with a different type}}
42
extern void * __strong p4; // expected-error {{
redefinition
of 'p4' with a different type}}
48
extern char* p6; // expected-error {{
redefinition
of 'p6' with a different type}}
51
extern char* p7; // expected-error {{
redefinition
of 'p7' with a different type}}
/external/llvm/test/MC/AsmParser/
equ.s
8
// CHECK: error:
redefinition
of 'a'
/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/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
pushf-err.errwarn
4
-:15: error:
redefinition
of `pushfq'
7
-:19: error:
redefinition
of `popfq'
/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/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
9
int x = 2; // expected-error{{
redefinition
}}
10
int y = 5; // expected-error{{
redefinition
}}
replaced-decl.m
20
typedef int I; // 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
}}
inject-templated-friend.cpp
15
friend std_ostream& operator << (std_ostream& o, const Streamer& f) // expected-error{{
redefinition
of 'operator<<'}}
34
// Sema should flag this as a
redefinition
/external/clang/test/CXX/basic/basic.link/
p9.cpp
9
int N(); // expected-error{{
redefinition
}} expected-warning{{interpreted as a function declaration}} expected-note {{replace parentheses with an initializer}}
Completed in 1028 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>