OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:redefinition
(Results
126 - 150
of
363
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/Modules/
serialized-diags.m
27
// CHECK-WITH-ERRORS: has_errors.h:2:13: error:
redefinition
of 'foo'
extern_c.cpp
72
// expected-error@-2 {{
redefinition
of 'f' as different kind of symbol}}
/external/clang/test/SemaCXX/
linkage-spec.cpp
77
extern "C" void pr7859_a(int) {} // expected-error {{
redefinition
}}
trailing-return-0x.cpp
31
using T = void; // expected-error {{type alias
redefinition
with different types ('void' vs 'auto (int) -> auto (*)(char) -> void')}}
default2.cpp
20
int i, int j) { // expected-error {{
redefinition
of parameter 'i'}}
46
void C::f(int i = 3) // expected-error{{
redefinition
of default argument}}
decl-expr-ambiguity.cpp
39
T(d)[5]; // expected-error {{
redefinition
of 'd'}}
exceptions.cpp
11
int i; // expected-error {{
redefinition
of 'i'}}
/external/clang/test/SemaTemplate/
inject-templated-friend-post.cpp
37
friend std_ostream& operator << (std_ostream& o, const Streamer& f) // expected-error{{
redefinition
of 'operator<<'}}
instantiation-default-1.cpp
39
template<> struct Def1<const int, const int> { }; // expected-error{{
redefinition
of 'Def1<const int>'}}
class-template-spec.cpp
30
template<> struct A<FLOAT, float> { }; // expected-error{{
redefinition
}}
32
template<> struct A<float, int> { }; // expected-error{{
redefinition
}}
class-template-decl.cpp
49
struct test : T {}; // expected-error{{
redefinition
}}
/external/sfntly/cpp/src/sfntly/port/
type.h
31
// Definitions to avoid ICU
redefinition
issue
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
p2-0x.cpp
43
using U = int; // expected-error {{type alias
redefinition
with different types ('int' vs 'int [42]')}}
104
using c = int; // expected-error {{typedef
redefinition
with different types}}
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/
p3.cpp
161
extern T n_var; // expected-error {{
redefinition
of 'n_var' with a different type: 'double' vs 'int'}} expected-note {{previous}}
172
float o_var; // expected-error {{
redefinition
of 'o_var' with a different type: 'float' vs 'int'}}
/external/clang/test/PCH/
cxx1y-variable-templates.cpp
92
template<typename T> extern T err0; // expected-error {{
redefinition
of 'err0' with a different type: 'T' vs 'float'}} // expected-note@42 {{previous definition is here}}
93
template<typename T> extern float err1; // expected-error {{
redefinition
of 'err1' with a different type: 'float' vs 'T'}} // expected-note@43 {{previous definition is here}}
/external/clang/test/Preprocessor/
line-directive.c
47
typedef int x; // expected-warning {{
redefinition
of typedef 'x' is a C11 feature}}
68
typedef int w; // expected-warning {{
redefinition
of typedef 'w' is a C11 feature}}
/external/clang/test/Sema/
MicrosoftExtensions.c
114
void ptr_func(int * __ptr64 i) {} // expected-error {{
redefinition
of 'ptr_func'}}
118
void ptr_func2(int * __uptr __ptr32 i) {} // expected-error {{
redefinition
of 'ptr_func2'}}
attr-deprecated.c
125
typedef int test23_ty; // expected-note {{'test23_ty' has been explicitly marked deprecated here}} expected-warning {{
redefinition
of typedef 'test23_ty' is a C11 feature}}
enum.c
58
E0 = sizeof(enum e0 { E1 }), // expected-error {{nested
redefinition
}}
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml
199
* has a body, don't allow
redefinition
or reextern. *)
203
raise (Error "
redefinition
of function");
207
raise (Error "
redefinition
of function with different # args");
/external/chromium_org/third_party/freetype/src/cff/
cf2glue.h
89
/* and gcc compiler doesn't allow
redefinition
*/
/external/chromium_org/third_party/sfntly/cpp/src/test/
test_utils.h
20
// Must include this before ICU to avoid stdint
redefinition
issue.
/external/chromium_org/v8/test/mjsunit/regress/
regress-1530.js
55
// Verify that the previous
redefinition
didn't screw up callbacks and
/external/clang/test/Parser/
declarators.c
33
void test4(x, x) int x; {} /* expected-error {{
redefinition
of parameter 'x'}} */
/external/freetype/src/cff/
cf2glue.h
89
/* and gcc compiler doesn't allow
redefinition
*/
Completed in 751 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>