OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:redefinition
(Results
1 - 25
of
450
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
089-redefine-macro-error.c.expected
1
0:2(9): preprocessor error:
Redefinition
of macro x
3
0:5(9): preprocessor error:
Redefinition
of macro abc
5
0:8(9): preprocessor error:
Redefinition
of macro foo
7
0:11(9): preprocessor error:
Redefinition
of macro bar
9
0:14(9): preprocessor error:
Redefinition
of macro biff
11
0:17(9): preprocessor error:
Redefinition
of macro oper
092-redefine-macro-error-2.c.expected
1
0:2(9): preprocessor error:
Redefinition
of macro A
3
0:5(9): preprocessor error:
Redefinition
of macro B
/external/mesa3d/src/glsl/glcpp/tests/
089-redefine-macro-error.c.expected
1
0:2(9): preprocessor error:
Redefinition
of macro x
3
0:5(9): preprocessor error:
Redefinition
of macro abc
5
0:8(9): preprocessor error:
Redefinition
of macro foo
7
0:11(9): preprocessor error:
Redefinition
of macro bar
9
0:14(9): preprocessor error:
Redefinition
of macro biff
11
0:17(9): preprocessor error:
Redefinition
of macro oper
092-redefine-macro-error-2.c.expected
1
0:2(9): preprocessor error:
Redefinition
of macro A
3
0:5(9): preprocessor error:
Redefinition
of macro B
/external/clang/test/CXX/basic/basic.scope/basic.scope.local/
p4-0x.cpp
8
bool b; // expected-error {{
redefinition
}}
10
int b; // expected-error {{
redefinition
}}
12
int b; // expected-error {{
redefinition
}}
14
bool c = true;) // expected-error {{
redefinition
}}
15
double c; // expected-error {{
redefinition
}}
17
int n; // expected-error {{
redefinition
}}
19
int a = 0; // expected-error {{
redefinition
}}
22
int b; // expected-error {{
redefinition
}}
24
int b; // expected-error {{
redefinition
}}
27
int b; // expected-error {{
redefinition
}}
[
all
...]
p2.cpp
4
int i; // expected-error{{
redefinition
of 'i'}}
8
int i; // expected-error{{
redefinition
of 'i'}}
13
} catch (int i) { // FIXME: error {{
redefinition
of 'i'}}
18
int i; // expected-error{{
redefinition
of 'i'}}
29
int i; // expected-error{{
redefinition
of 'i'}}
35
int i; // expected-error{{
redefinition
of 'i'}}
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
duplabel-err.errwarn
1
-:16: error:
redefinition
of `label'
3
-:18: error:
redefinition
of `label'
/external/clang/test/CXX/stmt.stmt/stmt.select/
p3.cpp
7
int x; // expected-error{{
redefinition
of 'x'}}
9
int x; // expected-error{{
redefinition
of 'x'}}
16
int x; // expected-error{{
redefinition
of 'x'}}
18
int x; // expected-error{{
redefinition
of 'x'}}
/external/clang/test/Sema/
typedef-redef.c
5
typedef int x; // expected-error {{typedef
redefinition
with different types}}
10
float y; // expected-error{{
redefinition
of 'y' with a different type}}
11
double y; // expected-error{{
redefinition
of 'y' with a different type}}
arg-duplicate.c
4
x) // expected-error {{
redefinition
of parameter}}
7
x; // expected-error {{
redefinition
of parameter}}
array-declared-as-incorrect-type.c
7
float a2[1]; // expected-error {{
redefinition
of 'a2'}}
13
int a4[2]; // expected-error {{
redefinition
of 'a4'}}
16
int a5[3][2][1]; // expected-error {{
redefinition
of 'a5'}}
var-redecl.c
12
extern float outer1; // expected-error{{
redefinition
of 'outer1' with a different type}}
13
extern float outer2; // expected-error{{
redefinition
of 'outer2' with a different type}}
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}}
43
extern float outer11; // expected-error{{
redefinition
of 'outer11' with a different type}}
46
extern float outer12; // expected-error{{
redefinition
of 'outer12' with a different type}
[
all
...]
c11-typedef-redef.c
13
typedef int vla[N]; // expected-error{{
redefinition
of typedef for variably-modified type 'int [N]'}}
17
typedef vla2 vla3; // expected-error{{
redefinition
of typedef for variably-modified type 'vla2' (aka 'int [N]')}}
redefinition.c
4
int f(int a) { return 0; } // expected-error {{
redefinition
of 'f'}}
14
int g(void) { return 0; } // expected-error{{
redefinition
of a 'extern inline' function 'g' is not supported in C99 mode}}
typedef-variable-type.c
1
// RUN: %clang_cc1 %s -verify -fsyntax-only -pedantic -Wno-typedef-
redefinition
-std=c99
7
// (The test uses -Wno-typedef-
redefinition
to simulate this.)
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
p4-neg.cpp
4
template<class U> void f0(U) { } // expected-error{{
redefinition
}}
7
template<int> void f0() { } // expected-error{{
redefinition
}}
14
void f0() { } // expected-error{{
redefinition
}}
22
typename MetaFun<U*>::type f0(const U&) { while (1) {} } // expected-error{{
redefinition
}}
27
// template<int J> void f0(A<J>) { } // Xpected-error{{
redefinition
}}
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p3.cpp
3
void f(const int) { } // expected-error {{
redefinition
of 'f'}}
/external/clang/test/Parser/
argument_redef.c
5
int A; /* expected-error {{
redefinition
of 'A'}} */
/external/clang/test/SemaCXX/
redeclared-auto.cpp
5
auto a = 0; // expected-error {{
redefinition
}}
6
int a = 0; // expected-error {{
redefinition
}}
18
auto S::a; // expected-error {{
redefinition
}} expected-error {{requires an initializer}}
19
int S::a = 0; // expected-error {{
redefinition
}}
/external/llvm/test/Feature/
globalredefinition3.ll
1
; RUN: not llvm-as %s -o /dev/null 2>&1 | grep "
redefinition
of global '@B'"
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
p15.cpp
14
} catch (int a) { // expected-error {{
redefinition
of 'a'}}
15
int b; // expected-error {{
redefinition
of 'b'}}
/external/clang/test/SemaObjC/
check-dup-objc-decls-1.m
6
float Foo; // expected-error {{
redefinition
of 'Foo' as different kind of symbol}}
10
typedef int Bar; // expected-error {{
redefinition
of 'Bar' as different kind of symbol}}
18
@class OBJECT ; // expected-error {{
redefinition
of 'OBJECT' as different kind of symbol}}
23
@interface Gorf @end // expected-error {{
redefinition
of 'Gorf' as different kind of symbol}} expected-note {{previous definition is here}}
25
void Gorf() // expected-error {{
redefinition
of 'Gorf' as different kind of symbol}}
44
NSString * const TestBaz; // expected-error {{
redefinition
of 'TestBaz' with a different type}}
/external/clang/test/CXX/class/class.static/class.static.data/
p4.cpp
15
int const InClassInitializerAndOutOfClassCopyInitializer::i = 0; // expected-error{{
redefinition
of 'i'}}
20
int const InClassInitializerAndOutOfClassDirectInitializer::i(0); // expected-error{{
redefinition
of 'i'}}
/external/clang/test/Misc/
error-limit.c
11
// CHECK: 5:8: error:
redefinition
of 's1'
14
// CHECK-NOT: 9:8: error:
redefinition
of 's2'
/external/clang/test/PCH/
cxx-trailing-return.cpp
12
typedef void f; // expected-error {{typedef
redefinition
with different types ('void' vs 'auto () -> int')}}
14
typedef void g; // expected-error {{typedef
redefinition
with different types ('void' vs 'int ()')}}
Completed in 2070 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>