HomeSort by relevance Sort by last modified time
    Searched full:undeclared (Results 76 - 100 of 429) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/test/SemaTemplate/
instantiate-scope.cpp 14 void X<A<T, decltype(f(T()))>...>::f(int) {} // expected-error {{undeclared}}
17 int X<A<T, decltype(f(T()))>...>::n = 0; // expected-error {{undeclared}}
temp_arg.cpp 18 bar(::test0::foo<tee> *ptr) {} // FIXME(redundant): expected-error 2 {{use of undeclared identifier 'tee'}}
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug017.go 17 main.go.c:24: error: ?def? undeclared (first use in this function)
18 main.go.c:24: error: (Each undeclared identifier is reported only once
  /prebuilts/go/linux-x86/test/fixedbugs/
bug017.go 17 main.go.c:24: error: ?def? undeclared (first use in this function)
18 main.go.c:24: error: (Each undeclared identifier is reported only once
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
NotificationInd.java 33 * RuntimeException if an undeclared error occurs.
63 * RuntimeException if an undeclared error occurs.
85 * RuntimeException if an undeclared error occurs.
107 * @throws RuntimeException if an undeclared error occurs.
129 * RuntimeException if an undeclared error occurs.
151 * RuntimeException if an undeclared error occurs.
171 * @throws RuntimeException if an undeclared error occurs.
191 * RuntimeException if an undeclared error occurs.
211 * RuntimeException if an undeclared error occurs.
231 * RuntimeException if an undeclared error occurs
    [all...]
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
NotificationInd.java 31 * RuntimeException if an undeclared error occurs.
61 * RuntimeException if an undeclared error occurs.
83 * RuntimeException if an undeclared error occurs.
105 * @throws RuntimeException if an undeclared error occurs.
127 * RuntimeException if an undeclared error occurs.
149 * RuntimeException if an undeclared error occurs.
169 * @throws RuntimeException if an undeclared error occurs.
189 * RuntimeException if an undeclared error occurs.
209 * RuntimeException if an undeclared error occurs.
229 * RuntimeException if an undeclared error occurs
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
NotificationInd.java 33 * @throws RuntimeException if an undeclared error occurs.
63 * @throws RuntimeException if an undeclared error occurs.
85 * @throws RuntimeException if an undeclared error occurs.
107 * @throws RuntimeException if an undeclared error occurs.
129 * @throws RuntimeException if an undeclared error occurs.
151 * @throws RuntimeException if an undeclared error occurs.
171 * @throws RuntimeException if an undeclared error occurs.
191 * @throws RuntimeException if an undeclared error occurs.
211 * @throws RuntimeException if an undeclared error occurs.
231 * @throws RuntimeException if an undeclared error occurs
    [all...]
  /external/clang/test/Index/skip-parsed-bodies/
compile_commands.json 34 // CHECK-NEXT: [diagnostic]: {{.*}} undeclared identifier 'undef_val1'
35 // CHECK-NEXT: [diagnostic]: {{.*}} undeclared identifier 'undef_val2'
36 // CHECK-NEXT: [diagnostic]: {{.*}} undeclared identifier 'undef_val3'
54 // CHECK-NEXT: [diagnostic]: {{.*}} undeclared identifier 'undef_val4'
55 // CHECK-NEXT: [diagnostic]: {{.*}} undeclared identifier 'undef_tsval'
56 // CHECK-NEXT: [diagnostic]: {{.*}} undeclared identifier 'undef_impval'
74 // CHECK-NOT: [diagnostic]: {{.*}} undeclared identifier
  /external/clang/test/Parser/
switch-recovery.cpp 7 switch (a) { // expected-error{{use of undeclared identifier 'a'}}
176 case v: ; // expected-error {{use of undeclared identifier 'v'}}
188 case v // expected-error{{use of undeclared identifier 'v'}}
194 case v1: case v2: ; // expected-error {{use of undeclared identifier 'v1'}} \
195 // expected-error {{use of undeclared identifier 'v2'}}
200 case 1: case v2: ; // expected-error {{use of undeclared identifier 'v2'}}
220 case bar5: ; // expected-error{{use of undeclared identifier 'bar5'}}
cxx-friend.cpp 43 some_template<foo, bar>& // expected-error {{use of undeclared identifier 'foo'}}
objc-quirks.m 28 [(super) a]; // expected-error {{use of undeclared identifier 'super'}}
  /external/clang/test/SemaObjC/
default-synthesize-1.m 72 return howMany; // expected-error {{use of undeclared identifier 'howMany'}}
75 howMany = value; // expected-error {{use of undeclared identifier 'howMany'}}
79 return what; // expected-error {{use of undeclared identifier 'what'}}
82 if (what != value) { // expected-error {{use of undeclared identifier 'what'}}
83 [what release]; // expected-error {{use of undeclared identifier 'what'}}
84 what = [value retain]; // expected-error {{use of undeclared identifier 'what'}}
141 return _description; // expected-error {{use of undeclared identifier '_description'}}
typo-correction.m 28 [self foo:[super description] other:someivar]; // expected-error {{use of undeclared identifier 'someivar'; did you mean '_someivar'?}}
undeclared-selector.m 40 SEL c = @selector(methodC); // expected-warning {{undeclared selector 'methodC'}}
  /external/clang/test/SemaCXX/
friend.cpp 202 f10_d(); // expected-error {{undeclared identifier}}
212 f10_d(x); // PR16597: expected-error {{undeclared identifier}}
232 f10_d(); // expected-error {{undeclared identifier}}
236 f10_d(x); // expected-error {{undeclared identifier}}
263 f10_d(); // expected-error {{undeclared identifier}}
264 f10_d(x); // expected-error {{undeclared identifier}}
274 f10_d(); // expected-error {{undeclared identifier}}
275 f10_d(x); // expected-error {{undeclared identifier}}
363 f_pr6954(5); // expected-error{{undeclared identifier 'f_pr6954'}}
decltype.cpp 54 B(decltype(undeclared)); // expected-error {{undeclared identifier}}
57 C(decltype(undeclared; // expected-error {{undeclared identifier}} \
return.cpp 117 // The use of an undeclared variable tricks clang into building a
121 return int(undeclared, 4; // expected-error {{expected ')'}} expected-note{{to match this '('}} expected-error {{void function 'cxx_unresolved_expr' should not return a value}} expected-error {{use of undeclared identifier 'undeclared'}}
type-dependent-exprs.cpp 22 h(1); // expected-error{{use of undeclared identifier 'h'}}
  /external/clang/test/CXX/class/class.friend/
p1.cpp 70 friend int Unknown::thing(); // expected-error {{use of undeclared identifier}}
71 friend int friendfunc(), Unknown::thing(); // expected-error {{use of undeclared identifier}}
72 friend int friendfunc(), Unknown::thing() : 4; // expected-error {{use of undeclared identifier}}
  /external/clang/test/FixIt/
fixit-unicode.c 44 int a = ?sss; // expected-error{{use of undeclared identifier '?sss'; did you mean '?ssss'?}}
50 int b = ss?s; // expected-error{{use of undeclared identifier 'ss?s'; did you mean 'ss?ss'?}}
56 int b??????? = ss???; // expected-error{{use of undeclared identifier 'ss???'; did you mean 's???'?}}
61 int c = sssssssss; // expected-error{{use of undeclared identifier 'sssssssss'; did you mean 'sssssssss?'?}}
  /external/clang/test/Modules/
module-private.cpp 19 f1(ip); // expected-error{{use of undeclared identifier 'f1'}}
21 vector<int> vec; // expected-error{{use of undeclared identifier 'vector'}} \
23 // expected-error{{use of undeclared identifier 'vec'}}
29 return hidden_var; // expected-error{{use of undeclared identifier 'hidden_var'}}
wildcard-submodule-exports.cpp 10 (void)B1; // expected-error{{use of undeclared identifier 'B1'}}
  /external/clang/test/PCH/
remap-file-from-pch.cpp 10 // CHECK: use of undeclared identifier 'zool'
  /external/clang/test/Sema/
128bitfloat.cpp 18 template<> struct __is_floating_point_helper<__float128> {}; // expected-error {{use of undeclared identifier '__float128'}}
anonymous-struct-union.c 65 int_val2 = 0; // expected-error{{use of undeclared identifier}}
66 float_val2 = 0.0; // expected-error{{use of undeclared identifier}}
74 i = 0; // expected-error{{use of undeclared identifier}}
75 f2 = 0.0; // expected-error{{use of undeclared identifier}}

Completed in 5188 milliseconds

1 2 34 5 6 7 8 91011>>