OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:undeclared
(Results
1 - 25
of
429
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/Misc/
diag-verify.cpp
4
// "use of
undeclared
identifier 'y'" error message.
9
x = y; // expected-error{{use of
undeclared
identifier 'y'}}
10
x = y; // expected-error{{use of
undeclared
identifier}}
11
x = y; // expected-error{{
undeclared
identifier 'y'}}
13
x = y; // expected-error{{
undeclared
identifier}}
17
x = y; // expected-error{{use of
undeclared
identifier 'y' is fine}}
18
x = y; // expected-error{{abuse of
undeclared
identifier 'y'}}
19
x = y; // expected-error{{good use of
undeclared
identifier 'y' in code}}
20
x = y; // expected-error{{ use of
undeclared
identifier 'y' }}
21
x = y; // expected-error{{use of
undeclared
identifier 'y' is disallowed}
[
all
...]
/prebuilts/go/darwin-x86/src/go/types/testdata/
decls2b.src
41
func (T /* ERROR "
undeclared
" */ ) _() {}
42
func (T1) _(
undeclared
/* ERROR "
undeclared
" */ ) {}
45
// Methods with
undeclared
receiver type can still be checked.
47
func (Foo /* ERROR "
undeclared
" */ ) m() {}
48
func (Foo /* ERROR "
undeclared
" */ ) m(
undeclared
/* ERROR "
undeclared
" */ ) {}
49
func (Foo /* ERROR "
undeclared
" */ ) m() int { return "foo" /* ERROR "cannot convert" */ }
51
func (Foo /* ERROR "
undeclared
" */ ) _() {
[
all
...]
/prebuilts/go/linux-x86/src/go/types/testdata/
decls2b.src
41
func (T /* ERROR "
undeclared
" */ ) _() {}
42
func (T1) _(
undeclared
/* ERROR "
undeclared
" */ ) {}
45
// Methods with
undeclared
receiver type can still be checked.
47
func (Foo /* ERROR "
undeclared
" */ ) m() {}
48
func (Foo /* ERROR "
undeclared
" */ ) m(
undeclared
/* ERROR "
undeclared
" */ ) {}
49
func (Foo /* ERROR "
undeclared
" */ ) m() int { return "foo" /* ERROR "cannot convert" */ }
51
func (Foo /* ERROR "
undeclared
" */ ) _() {
[
all
...]
/external/clang/test/SemaObjCXX/
goto.mm
13
goto
undeclared
; // expected-error{{use of
undeclared
label '
undeclared
'}}
/external/clang/test/Parser/
parenthesis-balance.cpp
4
if (int foo = f(bar)) {} // expected-error{{use of
undeclared
identifier 'bar'}}
5
while (int foo = f(bar)) {} // expected-error{{use of
undeclared
identifier 'bar'}}
6
for (int foo = f(bar);;) {} // expected-error{{use of
undeclared
identifier 'bar'}}
CompoundStmtScope.c
7
X Y; // expected-error {{use of
undeclared
identifier}}
if-scope-c99.c
7
return b; // expected-error{{use of
undeclared
identifier}}
/external/clang/test/Sema/
typo-correction.c
6
__typeof__(struct F*) var[invalid]; // expected-error-re {{use of
undeclared
identifier 'invalid'{{$}}}}
10
x = (float)arst; // expected-error-re {{use of
undeclared
identifier 'arst'{{$}}}}
14
// expected-error {{use of
undeclared
identifier 'b'}}
18
// expected-error {{use of
undeclared
identifier 'goobar'; did you mean 'foobar'?}} \
27
case SOME_ENUM_: // expected-error {{use of
undeclared
identifier 'SOME_ENUM_'; did you mean 'SOME_ENUM'}}
34
_Generic(hello, int : banana)(); // expected-error-re {{use of
undeclared
identifier 'hello'{{$}}}}
35
_Generic(arg, int : bandana)(); // expected-error {{use of
undeclared
identifier 'bandana'; did you mean 'banana'?}}
41
// expected-error {{use of
undeclared
identifier '__v2di'}}
45
__atomic_or_fetch(a, b, c); // expected-error {{use of
undeclared
identifier 'c'}}
50
cabs(errij); // expected-error {{use of
undeclared
identifier 'errij'}
[
all
...]
recover-goto.c
4
goto A; // expected-error {{use of
undeclared
label}}
warn-unused-variables.c
24
return Y + X; // expected-error {{use of
undeclared
identifier 'Y'}}
29
(void)(Y1 + X1); // expected-error {{use of
undeclared
identifier 'Y1'}}
31
(void)(^() { int X = 4; return Y + X; }); // expected-error {{use of
undeclared
identifier 'Y'}}
/external/clang/test/SemaCXX/
function-overload-typo-crash.cpp
10
fin(); //expected-error {{use of
undeclared
identifier 'fin'; did you mean 'min'}}
11
fax(0); //expected-error {{use of
undeclared
identifier 'fax'; did you mean 'max'}}
23
somefun(i, j); //expected-error {{use of
undeclared
identifier 'somefun'; did you mean 'somefunc'?}}
24
somefun(x); //expected-error {{use of
undeclared
identifier 'somefun'; did you mean 'somefunc'?}}
25
somefun(i, l); //expected-error {{use of
undeclared
identifier 'somefun'; did you mean 'somefunc'?}}
26
somefun(l, x); //expected-error {{use of
undeclared
identifier 'somefun'; did you mean 'somefunc'?}}
27
somefun(i, x); //expected-error {{use of
undeclared
identifier 'somefun'; did you mean 'somefunc'?}}
no-implicit-builtin-decls.cpp
4
void *p = malloc(sizeof(int) * 10); // expected-error{{use of
undeclared
identifier 'malloc'}}
goto.cpp
48
goto end; // expected-error{{use of
undeclared
label 'end'}}
81
goto
undeclared
; // expected-error{{use of
undeclared
label '
undeclared
'}}
89
goto
undeclared
; // expected-error{{use of
undeclared
label '
undeclared
'}}
typo-correction-cxx11.cpp
4
decltype(ned); // expected-error-re {{use of
undeclared
identifier 'ned'{{$}}}}
20
auto lneed = gned.*[] {}; // expected-error-re {{use of
undeclared
identifier 'gned'{{$}}}}
23
int thatval = aaa * (bbb + thatvar); // expected-error {{use of
undeclared
identifier 'thatvar'; did you mean 'thisvar'?}}
29
for (auto&& x : e) { // expected-error-re {{use of
undeclared
identifier 'e'{{$}}}}
58
new_annotation->Swap(&annotation); // expected-error {{use of
undeclared
identifier 'new_annotation'; did you mean 'new_anotation'?}}
PR21679.cpp
3
int w = z.; // expected-error {{use of
undeclared
identifier 'z'}} \
6
int x = { y[ // expected-error {{use of
undeclared
identifier 'y'}} \
/external/clang/test/CXX/class/class.mem/
p5-0x.cpp
8
int b = g(); // expected-error {{use of
undeclared
identifier 'g'}}
p1b.cpp
19
// CHECK: error: use of
undeclared
identifier 'first'
20
void a4(int a = first); // expected-error{{use of
undeclared
identifier 'first'}}
32
// CHECK: error: use of
undeclared
identifier 'second'
33
void b2(int a = second); // expected-error{{use of
undeclared
identifier 'second'}}
44
// CHECK: error: use of
undeclared
identifier 'third'
45
void a7(int a = third); // expected-error{{use of
undeclared
identifier 'third'}}
/external/clang/test/Driver/
std.cpp
18
// CXX98:
undeclared
identifier 'typeof'
19
// CXX98:
undeclared
identifier 'decltype'
21
// GNUXX98-NOT:
undeclared
identifier 'typeof'
22
// GNUXX98:
undeclared
identifier 'decltype'
24
// CXX11:
undeclared
identifier 'typeof'
25
// CXX11-NOT:
undeclared
identifier 'decltype'
27
// GNUXX11-NOT:
undeclared
identifier 'typeof'
28
// GNUXX11-NOT:
undeclared
identifier 'decltype'
30
// CXX1Y:
undeclared
identifier 'typeof'
31
// CXX1Y-NOT:
undeclared
identifier 'decltype
[
all
...]
/frameworks/compile/slang/tests/F_foreach_forward_reference/
stderr.txt.expect
1
foreach_forward_reference.rs:6:13: error: use of
undeclared
identifier 'goo'; did you mean 'goto'?
/external/clang/test/OpenMP/
target_data_messages.c
11
goto L1; // expected-error {{use of
undeclared
label 'L1'}}
13
goto L2; // expected-error {{use of
undeclared
label 'L2'}}
/external/clang/test/SemaObjC/
undef-arg-super-method-call.m
17
[super addViewLayerInfo:view]; // expected-error {{use of
undeclared
identifier 'view'; did you mean 'aView'?}}
21
[super addInstViewLayerInfo:view]; // expected-error {{use of
undeclared
identifier 'view'; did you mean 'aView'?}}
/external/clang/test/SemaTemplate/
ms-delayed-default-template-args.cpp
6
template <typename T = Baz> // expected-warning {{using the
undeclared
type 'Baz' as a default template argument is a Microsoft extension}}
14
template <typename T = Baz> // expected-warning {{using the
undeclared
type 'Baz' as a default template argument is a Microsoft extension}}
26
template <typename T = Baz> // expected-warning {{using the
undeclared
type 'Baz' as a default template argument is a Microsoft extension}}
49
template <typename T = Bar<Weber>> // expected-error {{use of
undeclared
identifier 'Weber'}}
60
// unique
undeclared
identifiers so typo correction doesn't find types declared
79
template struct Foo<Yodel>; // expected-error {{use of
undeclared
identifier 'Yodel'}}
83
// Bury an
undeclared
type as a template argument to the type of a non-type
87
template <Bar<Xylophone> *P> // expected-error {{use of
undeclared
identifier 'Xylophone'}}
/external/clang/test/CXX/temp/temp.decls/temp.friend/
p3.cpp
9
template <class T> friend class
Undeclared
;
/external/clang/test/CodeGen/
2006-09-25-DebugFilename.c
4
int func2() { fluffy; return hfunc1(); } // expected-error {{use of
undeclared
identifier 'fluffy'}}
/external/clang/test/FixIt/
fixit-unicode-with-utf8-output.c
11
// CHECK: error: use of
undeclared
identifier '?sss'; did you mean '?ssss'?
15
// CHECK: error: use of
undeclared
identifier 'ss?s'; did you mean 'ss?ss'?
19
// CHECK: error: use of
undeclared
identifier 'ss???'; did you mean 's???'?
23
// CHECK: error: use of
undeclared
identifier 'sssssssss'; did you mean 'sssssssss?'?
Completed in 671 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>