HomeSort by relevance Sort by last modified time
    Searched full:undeclared (Results 1 - 25 of 262) 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}}
DelayedTemplateParsing.cpp 6 undeclared();
17 undeclared();
28 undeclared();
34 undeclared();
40 void undeclared() function
asm.c 9 asm("foo" : "=r" (a)); // expected-error {{use of undeclared identifier 'a'}}
10 asm("foo" : : "r" (b)); // expected-error {{use of undeclared identifier 'b'}}
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'}}
  /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/Driver/
std.cpp 16 // CXX98: undeclared identifier 'typeof'
17 // CXX98: undeclared identifier 'decltype'
19 // GNUXX98-NOT: undeclared identifier 'typeof'
20 // GNUXX98: undeclared identifier 'decltype'
22 // CXX11: undeclared identifier 'typeof'
23 // CXX11-NOT: undeclared identifier 'decltype'
25 // GNUXX11-NOT: undeclared identifier 'typeof'
26 // GNUXX11-NOT: undeclared identifier 'decltype'
28 // CXX1Y: undeclared identifier 'typeof'
29 // CXX1Y-NOT: undeclared identifier 'decltype
    [all...]
  /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/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/
explicit-specialization-member.cpp 15 class numpunct : public locale::facet // expected-error{{use of undeclared identifier 'locale'}} \
18 static locale::id id; // expected-error{{use of undeclared identifier}}
  /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/
typo-crash.m 5 - (int)method { return ivar; } // expected-error{{use of undeclared identifier 'ivar'}}

Completed in 1098 milliseconds

1 2 3 4 5 6 7 8 91011