HomeSort by relevance Sort by last modified time
    Searched full:undeclared (Results 26 - 50 of 323) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaObjC/
synth-provisional-ivars.m 24 - (int) Meth1 { return PROP1; } // expected-error {{use of undeclared identifier 'PROP1'}}
26 - (int) Meth2 { return PROP2; } // expected-error {{use of undeclared identifier 'PROP2'}}
29 - (int) Meth3 { return PROP3; } // expected-error {{use of undeclared identifier 'PROP3'}}
43 - (int) Meth { return PROP1; } // expected-error {{use of undeclared identifier 'PROP1'}}
bad-property-synthesis-crash.m 13 __what; // expected-error {{use of undeclared identifier}} \
21 return __what; // expected-error {{use of undeclared identifier}}
error-outof-scope-property-use.m 18 [uuids_jobs objectForKey]; // expected-error {{use of undeclared identifier 'uuids_jobs'}} \
28 [uuids_jobs enumerateKeysAndObjectsUsingBlock]; // expected-error {{use of undeclared identifier 'uuids_jobs'}}
provisional-ivar-lookup.m 19 _foo = foo; // expected-error {{use of undeclared identifier 'foo'}}
27 _foo = foo2; // expected-error {{use of undeclared identifier 'foo2'}}
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'}}
  /external/clang/test/SemaTemplate/
crash-8204126.cpp 5 void bar() { foo(0); } // expected-error{{use of undeclared identifier 'foo'}}
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}}
recovery-crash.cpp 11 Work(x); // expected-error{{use of undeclared identifier}}
  /external/clang/test/Sema/
pragma-unused.c 19 #pragma unused(x) // expected-warning{{undeclared variable 'x' used as an argument for '#pragma unused'}}
36 #pragma unused(undeclared, undefined, y) // expected-warning{{undeclared variable 'undeclared' used as an argument for '#pragma unused'}} expected-warning{{undeclared variable 'undefined' used as an argument for '#pragma unused'}}
anonymous-struct-union.c 64 int_val2 = 0; // expected-error{{use of undeclared identifier}}
65 float_val2 = 0.0; // expected-error{{use of undeclared identifier}}
73 i = 0; // expected-error{{use of undeclared identifier}}
74 f2 = 0.0; // expected-error{{use of undeclared identifier}}
block-labels.c 22 goto A; // expected-error {{use of undeclared label 'A'}}
  /external/clang/test/SemaCXX/
missing-namespace-qualifier-typo-corrections.cpp 12 Double(toFoobar()); // expected-error{{use of undeclared identifier 'toFoobar'; did you mean 'barstool::toFoobar'?}}
26 if (toFoobar()) Double(7); // expected-error{{use of undeclared identifier 'toFoobar'; did you mean 'barstool::toFoobar'?}}
27 if (noFoobar()) Double(7); // expected-error{{use of undeclared identifier 'noFoobar'; did you mean 'barstool::toFoobar'?}}
28 if (moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'moreFoobar'; did you mean 'fizbin::nested::moreFoobar'}}
29 if (lessFoobar()) Double(7); // expected-error{{use of undeclared identifier 'lessFoobar'; did you mean 'fizbin::nested::lessFoobar'?}}
30 if (baztool::toFoobar()) Double(7); // expected-error{{use of undeclared identifier 'baztool'; did you mean 'fizbin::baztool'?}}
31 if (nested::moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'nested'; did you mean 'fizbin::nested'?}}
32 if (dummy::moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'dummy'; did you mean 'fizbin::dummy'?}}
33 if (dummy::mreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'dummy'; did you mean 'fizbin::dummy'?}} \
35 if (moFoobin()) Double(7); // expected-error{{use of undeclared identifier 'moFoobin'}
    [all...]
  /external/clang/test/CodeGenCXX/
constructors.cpp 16 A(struct Undeclared &);
21 A::A(struct Undeclared &ref) : mem(0) {}
24 // CHECK: define void @_ZN1AC1ER10Undeclared(%struct.A* %this, %struct.Undeclared* %ref) unnamed_addr
27 // CHECK: define void @_ZN1AC2ER10Undeclared(%struct.A* %this, %struct.Undeclared* %ref) unnamed_addr
41 B(struct Undeclared &);
45 B::B(struct Undeclared &ref) : A(ref), mem(1) {}
47 // CHECK: define void @_ZN1BC1ER10Undeclared(%struct.B* %this, %struct.Undeclared* %ref) unnamed_addr
50 // CHECK: define void @_ZN1BC2ER10Undeclared(%struct.B* %this, %struct.Undeclared* %ref) unnamed_addr
  /external/clang/test/Index/
code-completion-skip-bodies.cpp 19 // STDERR-NOT: error: use of undeclared identifier 'undeclared1'
20 // STDERR: error: use of undeclared identifier 'undeclared2'
cindex-on-invalid.m 18 // CHECK: cindex-on-invalid.m:5:8: error: use of undeclared label 'exit'
recover-bad-code-rdar_7487294.c 12 // CHECK: 9:3: error: use of undeclared identifier 'help'
  /external/clang/test/Parser/
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-undeclared-identifier.cpp 16 int f(a::b::c); // expected-error {{use of undeclared identifier 'a'}}
18 class Foo::Bar { // expected-error {{use of undeclared identifier 'Foo'}} \
cxx-default-args.cpp 7 void m(int x = undecl + 0); // expected-error {{use of undeclared identifier 'undecl'}}
goto.c 19 __label__ h; /* expected-error {{use of undeclared label 'h'}} */
objc-foreach-syntax.m 24 for (id key; in keys) ; // expected-error {{use of undeclared identifier 'in'}}
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
p15.cpp 16 ++c; // expected-error {{use of undeclared identifier 'c'}}
  /external/clang/test/FixIt/
fixit-unrecoverable.cpp 9 return static_cst<float>(y); // expected-error{{use of undeclared identifier 'static_cst'; did you mean 'static_cast'?}} \
  /external/clang/test/CXX/stmt.stmt/stmt.label/
p1.cpp 10 goto label2; // expected-error{{use of undeclared label 'label2'}}
  /external/clang/test/CXX/temp/
p3.cpp 10 expected-error {{use of undeclared identifier 'T'}} \

Completed in 1199 milliseconds

12 3 4 5 6 7 8 91011>>