OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:undeclared
(Results
101 - 125
of
323
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/Parser/
statements.c
63
undecl // expected-error {{use of
undeclared
identifier 'undecl'}}
cxx0x-decl.cpp
36
static_assert(something, ""); // expected-error {{
undeclared
identifier}}
recovery.c
61
&BADIDENT, 0 /* expected-error {{use of
undeclared
identifier}} */
/external/clang/test/Sema/
block-literal.c
36
goto foo; // expected-error {{use of
undeclared
label 'foo'}}
address_spaces.c
68
typedef int PR4997 __attribute__((address_space(Foobar))); // expected-error {{use of
undeclared
identifier 'Foobar'}}
statements.c
40
switch (env->fpscr) // expected-error {{use of
undeclared
identifier 'env'}}
var-redecl.c
56
int *p=&g19; // expected-error{{use of
undeclared
identifier 'g19'}} \
block-misc.c
90
^{ goto somelabel; }(); // expected-error {{use of
undeclared
label 'somelabel'}}
94
goto somelabel; // expected-error {{use of
undeclared
label 'somelabel'}}
/external/clang/test/SemaCXX/
warn-empty-body.cpp
236
aa; // expected-error{{use of
undeclared
identifier}}
241
bb; // expected-error{{use of
undeclared
identifier}}
245
cc; // expected-error{{use of
undeclared
identifier}}
248
dd; // expected-error{{use of
undeclared
identifier}}
nested-name-spec.cpp
86
N::x = 0; // expected-error {{use of
undeclared
identifier 'N'}}
96
void f4(undef::C); // expected-error {{use of
undeclared
identifier 'undef'}}
169
X::X() : a(5) { } // expected-error{{use of
undeclared
identifier 'X'}} \
297
int foobar = a + longer_b; // expected-error {{use of
undeclared
identifier 'a'; did you mean 'NS::a'?}} \
298
// expected-error {{use of
undeclared
identifier 'longer_b'; did you mean 'NS::longer_b'?}}
copy-assignment.cpp
102
template<typename T> class A : public unknown::X { // expected-error {{
undeclared
identifier 'unknown'}} expected-error {{expected class name}}
crashes.cpp
26
int aa() { return p; } // expected-error{{use of
undeclared
identifier 'p'}}
/external/clang/test/SemaObjC/
boxing-illegal.m
44
@(not_defined); // expected-error {{use of
undeclared
identifier 'not_defined'}}
invalid-code.m
27
[Cake lie]; // expected-error {{
undeclared
}}
/external/clang/test/SemaObjCXX/
boxing-illegal-types.mm
44
@(not_defined); // expected-error {{use of
undeclared
identifier 'not_defined'}}
/external/mesa3d/src/gallium/state_trackers/wgl/
stw_wgl.h
38
*
Undeclared
APIs exported by opengl32.dll
/external/clang/test/FixIt/
typo.m
50
herivar = a; // expected-error{{use of
undeclared
identifier 'herivar'; did you mean 'her_ivar'?}}
51
hisivar = a; // expected-error{{use of
undeclared
identifier 'hisivar'; did you mean 'his_ivar'?}}
163
int x = super; // expected-error{{use of
undeclared
identifier 'super'}}
typo.c
42
unsinged *ptr = 0; // expected-error{{use of
undeclared
identifier 'unsinged'; did you mean 'unsigned'?}}
/external/clang/test/SemaTemplate/
alias-templates.cpp
131
void f1(Y<T> a) { h(g(a)); } // expected-error {{
undeclared
identifier 'g'}}
132
void f2(Y<Ts>...as) { h(g(as)...); } // expected-error {{
undeclared
identifier 'g'}}
134
void f4(Ts ...ts) { h(g(sizeof(ts))...); } // expected-error {{
undeclared
identifier 'g'}}
ms-lookup-template-base-classes.cpp
32
XX; //expected-error {{use of
undeclared
identifier 'XX'}}
41
XX; //expected-error {{use of
undeclared
identifier 'XX'}}
49
XX; //expected-error {{use of
undeclared
identifier 'XX'}}
/external/chromium_org/third_party/jinja2/
compiler.py
89
"""Check if the names passed are accessed
undeclared
. The return value
90
is a set of all the
undeclared
names from the sequence of names found.
98
return visitor.
undeclared
109
#
undeclared
variables from outer scopes
114
# declared and
undeclared
.
115
self.
undeclared
= set()
125
self.
undeclared
.discard(name)
179
parent.identifiers.
undeclared
-
257
self.
undeclared
= set()
261
self.
undeclared
.add(node.name
[
all
...]
/external/chromium_org/v8/test/webkit/
exception-with-handler-inside-eval-with-dynamic-scope.js
38
eval("try { throw ''; } finally { result = test; shouldBe('result', '\"inner scope\"'); result = null;
undeclared
; }");
/external/clang/test/CXX/class/class.mem/
p1.cpp
19
S::EnumT Evar2 = EnumT(); //expected-error{{use of
undeclared
identifier 'EnumT'}}
/external/guava/guava-tests/test/com/google/common/base/
ThrowablesTest.java
86
// Expect the
undeclared
exception to have been chained inside another
167
// Expect the
undeclared
exception to have been chained inside another
334
// Expect the
undeclared
exception to have been chained inside another
414
// Expect
undeclared
exception wrapped by RuntimeException to be thrown
/external/clang/test/Preprocessor/
macro_with_initializer_list.cpp
152
// expected-error@-2 {{use of
undeclared
identifier}}
158
// expected-error@-2 {{use of
undeclared
identifier}}
180
// expected-error@-3 {{use of
undeclared
identifier}}
Completed in 1070 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>