HomeSort by relevance Sort by last modified time
    Searched full:undeclared (Results 1 - 25 of 347) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /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}}
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}}
  /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'}}
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'}} \
  /libcore/luni/src/main/java/java/lang/reflect/
UndeclaredThrowableException.java 21 * This class provides a wrapper for an undeclared, checked exception thrown by
34 * undeclared, checked exception that occurred.
37 * the undeclared, checked exception that occurred
46 * undeclared, checked exception that occurred and a message.
51 * the undeclared, checked exception that occurred
61 * Returns the undeclared, checked exception that occurred, which may be
64 * @return the undeclared, checked exception that occurred
71 * Returns the undeclared, checked exception that occurred, which may be
74 * @return the undeclared, checked exception that occurred
  /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...]
  /external/clang/test/Sema/
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/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?'?
typo-crash.m 5 - (int)method { return ivar; } // expected-error{{use of undeclared identifier 'ivar'}}

Completed in 1869 milliseconds

1 2 3 4 5 6 7 8 91011>>