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
262
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/external/clang/test/Parser/
recovery.c
61
&BADIDENT, 0 /* expected-error {{use of
undeclared
identifier}} */
switch-recovery.cpp
7
switch (a) { // expected-error{{use of
undeclared
identifier 'a'}}
/external/clang/test/Sema/
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'}}
function-redecl.c
92
int *(*fp)(int) = outer8; // expected-error{{use of
undeclared
identifier 'outer8'}}
init.c
91
.b = bogus // expected-error {{use of
undeclared
identifier 'bogus'}}
/external/clang/test/SemaCXX/
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'}}
warn-unused-variables.cpp
48
X<char> str (read_from_file()); // expected-error{{use of
undeclared
identifier 'read_from_file'}} \
decl-expr-ambiguity.cpp
94
baz* b2; // expected-error {{use of
undeclared
identifier 'b2'}}
exceptions.cpp
19
int j = i; // expected-error {{use of
undeclared
identifier 'i'}}
alias-template.cpp
117
// FIXME: we recover as if cell is an
undeclared
variable. the diagnostics are terrible!
118
template<typename T> using cell = pair<T*, cell<T>*>; // expected-error {{use of
undeclared
identifier 'cell'}} \
/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
AbstractIteratorTest.java
181
* Throws a
undeclared
checked exception.
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p3.cpp
90
auto fail((unknown)); // expected-error{{use of
undeclared
identifier 'unknown'}}
/external/clang/test/CXX/special/class.dtor/
p10-0x.cpp
27
y->~decltype(A())(); // expected-error{{use of
undeclared
identifier 'y'}}
/external/clang/test/FixIt/
fixit.c
44
int x = y ? 1 4+foobar; // expected-error {{expected ':'}} expected-error {{
undeclared
identifier}} expected-note {{to match}}
/external/clang/include/clang/Sema/
ExternalSemaSource.h
152
/// \brief Read the set of weak,
undeclared
identifiers known to the
155
/// The external source should append its own weak,
undeclared
identifiers to
/external/clang/test/SemaTemplate/
dependent-names.cpp
99
foo(v); // expected-error {{use of
undeclared
identifier}}
272
__range(a); // expected-error {{
undeclared
identifier '__range'}}
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
NamespaceSupportTest.java
260
assertNull("Test 13: Null expected for
undeclared
prefix.",
296
assertNull("Test 13: Null expected for
undeclared
prefix.",
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
scopes.rb
211
example "failing to parse
undeclared
symbols with rule c" do
/external/chromium/testing/gmock/scripts/generator/
README.cppclean
19
*
Undeclared
function definitions
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p5.cpp
127
B() { g(T::f()); } // expected-error {{
undeclared
identifier 'g'}}
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
p2-0x.cpp
138
using cell = pair<void*, cell*>; // expected-error {{use of
undeclared
identifier 'cell'}} \
Completed in 3302 milliseconds
1
2
3
4
5
6
7
8
9
10
11