HomeSort by relevance Sort by last modified time
    Searched full:undeclared (Results 51 - 75 of 262) sorted by null

1 23 4 5 6 7 8 91011

  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
NotifyRespInd.java 34 * RuntimeException if an undeclared error occurs.
69 * RuntimeException if an undeclared error occurs.
80 * RuntimeException if an undeclared error occurs.
109 * RuntimeException if an undeclared error occurs.
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...]
  /external/clang/test/CXX/temp/temp.res/temp.local/
p3.cpp 27 WebVector(const WebVector<T>& other) { } // expected-error{{undeclared identifier 'T'}} \
31 WebVector<T>& operator=(const C& other) { } // expected-error{{undeclared identifier 'T'}}
  /external/clang/test/SemaCXX/
unknown-type-name.cpp 73 // FIXME: We should assume that 'undeclared' is a type, not a parameter name
75 int f1(undeclared, int); // expected-error{{requires a type specifier}}
77 int f2(undeclared, 0); // expected-error{{undeclared identifier}}
79 int f3(undeclared *p, int); // expected-error{{unknown type name 'undeclared'}}
81 int f4(undeclared *p, 0); // expected-error{{undeclared identifier}}
type-dependent-exprs.cpp 22 h(1); // expected-error{{use of undeclared identifier 'h'}}
qual-id-test.cpp 46 a.B::base::x(); // expected-error{{use of undeclared identifier 'B'}}
67 a->B::base::x(); // expected-error{{use of undeclared identifier 'B'}}
123 a.B::base::x(); // expected-error{{use of undeclared identifier 'B'}}
namespace-alias.cpp 86 KB::func(); // expected-error {{undeclared identifier 'KB'}}
87 KC::func(); // expected-error {{undeclared identifier 'KC'}}
  /external/clang/test/Index/skip-parsed-bodies/
compile_commands.json 33 // CHECK-NEXT: [diagnostic]: {{.*}} undeclared identifier 'undef_val1'
34 // CHECK-NEXT: [diagnostic]: {{.*}} undeclared identifier 'undef_val2'
35 // CHECK-NEXT: [diagnostic]: {{.*}} undeclared identifier 'undef_val3'
52 // CHECK-NEXT: [diagnostic]: {{.*}} undeclared identifier 'undef_val4'
53 // CHECK-NEXT: [diagnostic]: {{.*}} undeclared identifier 'undef_tsval'
54 // CHECK-NEXT: [diagnostic]: {{.*}} undeclared identifier 'undef_impval'
71 // CHECK-NOT: [diagnostic]: {{.*}} undeclared identifier
  /external/clang/test/Sema/
__try.c 64 __except( try_scope ? 1 : -1 ) // expected-error{{undeclared identifier 'try_scope'}} expected-error{{expected expression}}
123 (void)try_scope; // expected-error{{undeclared identifier}}
134 (void)try_scope; // expected-error{{undeclared identifier}}
  /external/clang/test/Modules/
module-private.cpp 23 f1(ip); // expected-error{{use of undeclared identifier 'f1'}}
25 vector<int> vec; // expected-error{{use of undeclared identifier 'vector'}} \
27 // expected-error{{use of undeclared identifier 'vec'}}
33 return hidden_var; // expected-error{{use of undeclared identifier 'hidden_var'}}
normal-module-map.cpp 28 return nested_umbrella_b; // expected-error{{use of undeclared identifier 'nested_umbrella_b'; did you mean 'nested_umbrella_a'?}}
subframeworks.m 8 float *sf1 = sub_framework; // expected-error{{use of undeclared identifier 'sub_framework'}}
wildcard-submodule-exports.cpp 10 (void)B1; // expected-error{{use of undeclared identifier 'B1'}}
auto-module-import.m 24 double *sfo1 = sub_framework_other; // expected-error{{use of undeclared identifier 'sub_framework_other'}}
64 int getNoUmbrellaBPrivateFail() { return no_umbrella_B_private; } // expected-error{{use of undeclared identifier 'no_umbrella_B_private'; did you mean 'no_umbrella_A_private'?}}
  /external/clang/test/PCH/
remap-file-from-pch.cpp 10 // CHECK: use of undeclared identifier 'zool'
  /external/clang/test/Parser/
cxx-friend.cpp 39 some_template<foo, bar>& // expected-error {{use of undeclared identifier 'foo'}}
cxx0x-member-initializers.cpp 14 int c = b; // expected-error {{undeclared identifier}}
objc-quirks.m 28 [(super) a]; // expected-error {{use of undeclared identifier 'super'}}
  /external/clang/test/SemaObjC/
undeclared-selector.m 40 SEL c = @selector(methodC); // expected-warning {{undeclared selector 'methodC'}}
  /external/clang/test/SemaTemplate/
temp_arg.cpp 18 bar(::test0::foo<tee> *ptr) {} // FIXME(redundant): expected-error 2 {{use of undeclared identifier 'tee'}}
  /external/clang/test/Misc/
diag-presumed.c 8 // PRESUMED: diag-presumed.c:101:11: error: use of undeclared identifier 'error'
10 // SPELLING: diag-presumed.c:6:11: error: use of undeclared identifier 'error'
  /external/clang/test/FixIt/
typo.cpp 25 other_std::strng str1; // expected-error{{use of undeclared identifier 'other_std'; did you mean 'otherstd'?}} \
60 return ember; // expected-error{{use of undeclared identifier 'ember'; did you mean 'member'?}}
67 return ember; // expected-error{{use of undeclared identifier 'ember'; did you mean 'member'?}}
75 unsinged *ptr = 0; // expected-error{{use of undeclared identifier 'unsinged'; did you mean 'unsigned'?}}
76 return *i + *ptr + global_val; // expected-error{{use of undeclared identifier 'global_val'; did you mean 'global_value'?}}
94 Bool b; // expected-error{{use of undeclared identifier 'Bool'; did you mean 'bool'?}}
  /external/clang/test/CXX/basic/basic.scope/basic.scope.local/
p2.cpp 24 int j = i; // expected-error{{use of undeclared identifier 'i'}}
  /external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p12-0x.cpp 4 int *j = &nonexistent; // expected-error {{use of undeclared identifier 'nonexistent'}}
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p10.cpp 23 (void)[&Variable] () {}; // expected-error {{use of undeclared identifier 'Variable'; did you mean 'variable'}}

Completed in 910 milliseconds

1 23 4 5 6 7 8 91011