HomeSort by relevance Sort by last modified time
    Searched full:undeclared (Results 126 - 150 of 634) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/clang/test/CXX/class/class.friend/
p1.cpp 75 friend int Unknown::thing(); // expected-error {{use of undeclared identifier}}
76 friend int friendfunc(), Unknown::thing(); // expected-error {{use of undeclared identifier}}
77 friend int friendfunc(), Unknown::thing() : 4; // expected-error {{use of undeclared identifier}}
  /external/clang/test/SemaCXX/
qual-id-test.cpp 52 a.B::base::x(); // expected-error{{use of undeclared identifier 'B'}}
73 a->B::base::x(); // expected-error{{use of undeclared identifier 'B'}}
135 a.B::base::x(); // expected-error{{use of undeclared identifier 'B'}}
cxx1z-init-statement.cpp 21 b = 2; // expected-error {{use of undeclared identifier}}
61 b = 2; // expected-error {{use of undeclared identifier}}
  /external/libmojo/third_party/jinja2/
meta.py 29 """Remember all undeclared identifiers."""
30 self.undeclared_identifiers.update(frame.identifiers.undeclared)
47 Internally the code generator is used for finding undeclared variables.
  /external/clang/test/OpenMP/
target_parallel_messages.cpp 37 goto L1; // expected-error {{use of undeclared label 'L1'}}
55 goto L2; // expected-error {{use of undeclared label 'L2'}}
teams_messages.cpp 42 goto L1; // expected-error {{use of undeclared label 'L1'}}
64 goto L2; // expected-error {{use of undeclared label 'L2'}}
parallel_sections_misc_messages.c 40 goto L1; // expected-error {{use of undeclared label 'L1'}}
51 goto L1; // expected-error {{use of undeclared label 'L1'}}
63 goto L2; // expected-error {{use of undeclared label 'L2'}}
66 goto L3; // expected-error {{use of undeclared label 'L3'}}
sections_misc_messages.c 40 goto L1; // expected-error {{use of undeclared label 'L1'}}
51 goto L1; // expected-error {{use of undeclared label 'L1'}}
63 goto L2; // expected-error {{use of undeclared label 'L2'}}
66 goto L3; // expected-error {{use of undeclared label 'L3'}}
  /prebuilts/go/darwin-x86/src/go/types/testdata/
cycles.src 77 t3 t4 /* ERROR undeclared */
78 t4 t5 /* ERROR undeclared */
  /prebuilts/go/linux-x86/src/go/types/testdata/
cycles.src 77 t3 t4 /* ERROR undeclared */
78 t4 t5 /* ERROR undeclared */
  /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'}}
  /external/clang/test/FixIt/
typo-crash.cpp 11 // expected-error {{use of undeclared identifier 't'}}
  /external/clang/test/Index/
pch-warn-as-error-code.cpp 9 // MAIN_DIAGS-NOT: error: use of undeclared identifier
  /external/clang/test/Modules/
hidden-definition.cpp 16 int g(Y &y) { f(y); } // expected-error {{undeclared identifier 'f'}}
textual-headers.cpp 12 const int use_m = m; // expected-error {{undeclared identifier}}
  /external/clang/test/Parser/
cxx-concepts-ambig-constraint-expr.cpp 21 T (*fp)(); // expected-error {{use of undeclared identifier 'fp'}}
cxx-friend.cpp 56 some_template<foo, bar>& // expected-error {{use of undeclared identifier 'foo'}}
cxx0x-member-initializers.cpp 14 int c = b; // expected-error {{undeclared identifier}}
objc-forcollection-neg.m 31 for (i in elem) // expected-error {{use of undeclared identifier 'elem'}} \
  /external/clang/test/Sema/
__try.c 67 __except( try_scope ? 1 : -1 ) // expected-error{{undeclared identifier 'try_scope'}} expected-error{{expected expression}}
126 (void)try_scope; // expected-error{{undeclared identifier}}
137 (void)try_scope; // expected-error{{undeclared identifier}}
287 } __except(undeclared_identifier) { // expected-error {{use of undeclared identifier 'undeclared_identifier'}} expected-error {{expected expression}}
attr-cleanup.c 16 int v4 __attribute((cleanup(h))); // expected-error {{use of undeclared identifier 'h'}}
  /external/clang/test/SemaObjC/
error-missing-getter.m 31 // expected-error {{use of undeclared identifier 'x'}}
format-arg-attribute.m 17 extern NSString *ff4 (const NSString *) __attribute__((format_arg(foo))); // expected-error {{use of undeclared identifier 'foo'}}

Completed in 501 milliseconds

1 2 3 4 56 7 8 91011>>