OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:redefinition
(Results
51 - 75
of
450
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/Parser/
goto.c
26
l: /* expected-error {{
redefinition
of label 'l'}} */
DelayedTemplateParsing.cpp
14
void foo4() { } // expected-error {{class member cannot be redeclared}} expected-error {{
redefinition
of 'foo4'}}
24
void B<T>::foo5() { // expected-error {{
redefinition
of 'foo5'}}
47
template <class T> void foo5() {} // expected-error {{
redefinition
of 'foo5'}}
cxx0x-member-initializers.cpp
8
} a; // expected-error {{
redefinition
}}
/external/clang/test/Sema/
nested-redef.c
3
struct X { } x; // expected-error{{nested
redefinition
of 'X'}}
decl-in-prototype.c
20
int f4(struct A { struct b { int j; } t; } *); // expected-warning {{declaration of 'struct A' will not be visible outside of this function}} expected-warning {{
redefinition
of 'b' will not be visible outside of this function}}
28
int f5(struct aA { struct ab { int j; } b; struct ab { char glorx; } glorx; } *); // expected-warning {{declaration of 'struct aA' will not be visible}} expected-warning {{
redefinition
of 'ab' will not be visible}} expected-warning {{
redefinition
of 'ab' will not be visible}}
merge-decls.c
18
int funcdef2() { return 0; } // expected-error {{
redefinition
of 'funcdef2'}}
28
Vi2 g0; // expected-error {{
redefinition
of 'g0'}}
31
_Complex float g1; // expected-error {{
redefinition
of 'g1'}}
struct-compat.c
5
extern struct {int a;} x; // expected-error {{
redefinition
of 'x'}}
types.c
31
typedef __int128_t check_int_128; // expected-note {{here}} expected-warning {{
redefinition
}}
35
typedef __uint128_t check_uint_128; // expected-note {{here}} expected-warning {{
redefinition
}}
46
int j[42]; // expected-error {{
redefinition
of 'j' with a different type: 'int [42]' vs 'int [4]'}}
predefined-function.c
23
int bar() // expected-error {{
redefinition
of 'bar'}}
/external/clang/test/PCH/
variables.c
35
double z; // expected-error{{
redefinition
}} expected-note@14{{previous}}
36
int z2 = 18; // expected-error{{
redefinition
}} expected-note@16{{previous}}
37
double VeryHappy; // expected-error{{
redefinition
}} expected-note@19{{previous definition is here}}
line-directive.c
8
double x; // expected-error{{
redefinition
of 'x' with a different type}}
/external/clang/test/SemaTemplate/
canonical-expr-type.cpp
13
void f0(U u, __typeof__(f(u))) { } // expected-error{{
redefinition
}}
25
void f0a(T x, __typeof__(f(N)) y) { } // expected-error{{
redefinition
}}
37
void f1(T (&array)[M + N]) { } // expected-error{{
redefinition
}}
/external/clang/test/CXX/stmt.stmt/stmt.label/
p1.cpp
12
label1: // expected-error{{
redefinition
of label 'label1'}}
/external/clang/test/SemaCXX/
array-bound-merge.cpp
14
int e[] = { 1 }; // expected-error {{
redefinition
of 'e' with a different type: 'int []' vs 'const int [2]'}}
fntype-decl.cpp
19
int h(int) { } // expected-error{{
redefinition
of 'h'}}
redeclared-alias-template.cpp
4
template<typename T> using A = char; // expected-error {{type alias template
redefinition
with different types ('char' vs 'int')}}
8
template<typename T2, typename T1> using B = T1; // expected-error {{type alias template
redefinition
with different types}}
namespace-alias.cpp
8
namespace B = N; // expected-error {{
redefinition
of 'B' as different kind of symbol}}
11
namespace C = N; // expected-error {{
redefinition
of 'C'}}
43
namespace B = A2; // expected-error {{
redefinition
of 'B' as different kind of symbol}}
/external/clang/test/SemaObjC/
forward-class-redeclare.m
13
@class PLAlbum; // expected-warning {{
redefinition
of forward class 'PLAlbum' of a typedef name of an object type is ignore}}
ivar-sem-check-1.m
12
struct T {} X; // expected-error {{nested
redefinition
of 'T'}}
/external/llvm/test/Assembler/
2002-03-08-NameCollision.ll
8
;
Redefinition
of value named 'X' in the 'int *' type plane!
/external/llvm/test/MC/AsmParser/
variables-invalid.s
12
// CHECK:
redefinition
of 't2_s0'
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p4.cpp
23
void f0(int i = 1, // expected-error{{
redefinition
of default argument}}
48
void f(int, int = 5); // expected-error{{
redefinition
of default argument}}
p6.cpp
9
void C::f(int i = 3) { } // expected-error{{
redefinition
of default argument}}
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
p1.cpp
47
// FIXME: error message should probably say, "
redefinition
of 'X0<T, U>::f0'"
48
// rather than just "
redefinition
of 'f0'"
50
void X0<T, U>::f0(const T&, const U&) { // expected-error{{
redefinition
}}
/external/chromium_org/third_party/skia/src/gpu/gl/mesa/
osmesa_wrapper.h
10
// defines GL_GLEXT_PROTOTYPES. This will cause a
redefinition
warning if
Completed in 2610 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>