OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:undeclared
(Results
26 - 50
of
634
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/FixIt/
typo-crash.m
5
- (int)method { return ivar; } // expected-error{{use of
undeclared
identifier 'ivar'}}
fixit-unrecoverable.cpp
9
return static_cst<float>(y); // expected-error{{use of
undeclared
identifier 'static_cst'; did you mean 'static_cast'?}}
/external/clang/test/Parser/
cxx-ambig-decl-expr.cpp
12
unknown * p + 0; // expected-error {{
undeclared
identifier 'unknown'}}
cxx-namespace-alias.cpp
7
// expected-error{{use of
undeclared
identifier 'A'}}
traditional_arg_scope.c
4
int y(b) int b; {return a;} // expected-error {{use of
undeclared
identifier}}
cxx-undeclared-identifier.cpp
16
int f(a::b::c); // expected-error {{use of
undeclared
identifier 'a'}}
18
class Foo::Bar { // expected-error {{use of
undeclared
identifier 'Foo'}} \
/external/clang/test/SemaCXX/
PR9459.cpp
7
{ts<a>::ap<ae_same<int>::&ae_same<>>::p(a); }; // expected-error {{use of
undeclared
identifier 'a'}}
decltype-crash.cpp
6
decltype(a()) c; // expected-warning {{'decltype' is a keyword in C++11}} expected-error {{use of
undeclared
identifier 'decltype'}}
warn-unused-variables-error.cpp
7
X<char> str (read_from_file()); // expected-error{{use of
undeclared
identifier 'read_from_file'}} \
typo-correction-delayed.cpp
50
callee(xxxxxx, // expected-error-re {{use of
undeclared
identifier 'xxxxxx'{{$}}}}
51
zzzzzz); // expected-error-re {{use of
undeclared
identifier 'zzzzzz'{{$}}}}
104
__atomic_load(i, i, something_something); // expected-error-re {{use of
undeclared
identifier 'something_something'{{$}}}}
109
template <int I = defaultArg> struct S {}; // expected-error {{use of
undeclared
identifier 'defaultArg'; did you mean 'DefaultArg'?}}
124
explicit SomeClass() : Kind(kSum) {} // expected-error {{use of
undeclared
identifier 'kSum'; did you mean 'kNum'?}}
134
// expected-error@+1 {{use of
undeclared
identifier 'resulta'; did you mean 'result'?}}
145
// expected-error@+2 {{use of
undeclared
identifier 'variableX'; did you mean 'variable'?}}
152
int (*a) () = (void)Z; // expected-error-re {{use of
undeclared
identifier 'Z'{{$}}}}
157
__typeof blur y; // expected-error {{use of
undeclared
identifier 'blur'; did you mean 'blue'?}}
162
// expected-error-re {{use of
undeclared
identifier 'b'{{$}}}
[
all
...]
missing-namespace-qualifier-typo-corrections.cpp
12
Double(toFoobar()); // expected-error{{use of
undeclared
identifier 'toFoobar'; did you mean 'barstool::toFoobar'?}}
26
if (toFoobar()) Double(7); // expected-error{{use of
undeclared
identifier 'toFoobar'; did you mean 'barstool::toFoobar'?}}
27
if (noFoobar()) Double(7); // expected-error{{use of
undeclared
identifier 'noFoobar'; did you mean 'barstool::toFoobar'?}}
28
if (moreFoobar()) Double(7); // expected-error{{use of
undeclared
identifier 'moreFoobar'; did you mean 'fizbin::nested::moreFoobar'}}
29
if (lessFoobar()) Double(7); // expected-error{{use of
undeclared
identifier 'lessFoobar'; did you mean 'fizbin::nested::lessFoobar'?}}
30
if (baztool::toFoobar()) Double(7); // expected-error{{use of
undeclared
identifier 'baztool'; did you mean 'fizbin::baztool'?}}
31
if (nested::moreFoobar()) Double(7); // expected-error{{use of
undeclared
identifier 'nested'; did you mean 'fizbin::nested'?}}
32
if (dummy::morebar()) Double(7); // expected-error{{use of
undeclared
identifier 'dummy'; did you mean 'fizbin::dummy'?}}
33
if (dummy::mrebar()) Double(7); // expected-error{{use of
undeclared
identifier 'dummy'; did you mean 'fizbin::dummy'?}} \
35
if (moFoobin()) Double(7); // expected-error{{use of
undeclared
identifier 'moFoobin'}
[
all
...]
/external/clang/test/SemaObjC/
synth-provisional-ivars.m
24
- (int) Meth1 { return PROP1; } // expected-error {{use of
undeclared
identifier 'PROP1'}}
26
- (int) Meth2 { return PROP2; } // expected-error {{use of
undeclared
identifier 'PROP2'}}
29
- (int) Meth3 { return PROP3; } // expected-error {{use of
undeclared
identifier 'PROP3'}}
43
- (int) Meth { return PROP1; } // expected-error {{use of
undeclared
identifier 'PROP1'}}
bad-property-synthesis-crash.m
13
__what; // expected-error {{use of
undeclared
identifier}} \
21
return __what; // expected-error {{use of
undeclared
identifier}}
error-outof-scope-property-use.m
18
[uuids_jobs objectForKey]; // expected-error {{use of
undeclared
identifier 'uuids_jobs'}} \
28
[uuids_jobs enumerateKeysAndObjectsUsingBlock]; // expected-error {{use of
undeclared
identifier 'uuids_jobs'}}
provisional-ivar-lookup.m
19
_foo = foo; // expected-error {{use of
undeclared
identifier 'foo'}}
27
_foo = foo2; // expected-error {{use of
undeclared
identifier 'foo2'}}
typo-correction-arc.m
26
i.array = aray; // expected-error{{use of
undeclared
identifier 'aray'; did you mean 'array'}}
29
[i setArrayValue:[i getArrayById:nameles]]; // expected-error{{use of
undeclared
identifier 'nameles'; did you mean 'nameless'}}
/external/clang/test/SemaTemplate/
crash-8204126.cpp
5
void bar() { foo(0); } // expected-error{{use of
undeclared
identifier 'foo'}}
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
template <typename T = ns::Bar> // expected-error {{use of
undeclared
identifier 'ns'}}
69
// unique
undeclared
identifiers so typo correction doesn't find types declared
88
template struct Foo<Yodel>; // expected-error {{use of
undeclared
identifier 'Yodel'}}
92
// Bury an
undeclared
type as a template argument to the type of a non-type
96
template <Bar<Xylophone> *P> // expected-error {{use of
undeclared
identifier 'Xylophone'}}
/external/clang/test/Sema/
pragma-unused.c
19
#pragma unused(x) // expected-warning{{
undeclared
variable 'x' used as an argument for '#pragma unused'}}
36
#pragma unused(
undeclared
, undefined, y) // expected-warning{{
undeclared
variable '
undeclared
' used as an argument for '#pragma unused'}} expected-warning{{
undeclared
variable 'undefined' used as an argument for '#pragma unused'}}
/external/clang/test/ARCMT/
objcmt-invalid-code.mm
17
void foo(int x =
undeclared
) { // expected-error {{
undeclared
}}
objcmt-invalid-code.mm.result
17
void foo(int x =
undeclared
) { // expected-error {{
undeclared
}}
/external/clang/test/CodeGenCXX/
constructors.cpp
16
A(struct
Undeclared
&);
21
A::A(struct
Undeclared
&ref) : mem(0) {}
24
// CHECK-LABEL: define void @_ZN1AC2ER10Undeclared(%struct.A* %this, %struct.
Undeclared
* nonnull %ref) unnamed_addr
27
// CHECK-LABEL: define void @_ZN1AC1ER10Undeclared(%struct.A* %this, %struct.
Undeclared
* nonnull %ref) unnamed_addr
40
B(struct
Undeclared
&);
44
B::B(struct
Undeclared
&ref) : A(ref), mem(1) {}
46
// CHECK-LABEL: define void @_ZN1BC2ER10Undeclared(%struct.B* %this, %struct.
Undeclared
* nonnull %ref) unnamed_addr
50
// CHECK-LABEL: define void @_ZN1BC1ER10Undeclared(%struct.B* %this, %struct.
Undeclared
* nonnull %ref) unnamed_addr
/external/clang/test/Index/
code-completion-skip-bodies.cpp
19
// STDERR-NOT: error: use of
undeclared
identifier 'undeclared1'
20
// STDERR: error: use of
undeclared
identifier 'undeclared2'
/external/clang/test/OpenMP/
target_data_messages.c
14
goto L1; // expected-error {{use of
undeclared
label 'L1'}}
16
goto L2; // expected-error {{use of
undeclared
label 'L2'}}
/external/clang/test/PCH/
different-diagnostic-level.c
14
int b = bar; // expected-error {{
undeclared
}}
Completed in 518 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>