HomeSort by relevance Sort by last modified time
    Searched full:declared (Results 151 - 175 of 2980) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/clang/test/ASTMerge/
category.m 6 // CHECK: category1.m:16:1: note: instance method 'method2' also declared here
8 // CHECK: category1.m:24:1: note: instance method 'method3' also declared here
10 // CHECK: category1.m:46:1: note: instance method 'blah' also declared here
property.m 5 // CHECK: property2.m:12:26: error: property 'Prop1' declared with incompatible types in different translation units ('int' vs. 'float')
6 // CHECK: property1.m:10:28: note: declared here with type 'float'
8 // CHECK: property1.m:10:28: note: instance method 'Prop1' also declared here
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/
p2.cpp 21 X0::X0 X0::f1() { return X0(); } // expected-error{{qualified reference to 'X0' is a constructor name rather than a type wherever a constructor can be declared}}
25 template<typename T> X1<T>::X1<T> X1<T>::f2() { } // expected-error{{qualified reference to 'X1' is a constructor name rather than a template name wherever a constructor can be declared}}
26 template<typename T> X1<T>::X1<T> (X1<T>::f2)(int) { } // expected-error{{qualified reference to 'X1' is a constructor name rather than a template name wherever a constructor can be declared}}
  /external/clang/test/CXX/class/
p2-0x.cpp 4 class A final { }; // expected-note {{'A' declared here}}
11 template<typename T> struct A final { }; // expected-note 2 {{'A' declared here}}
22 template<> struct A<int> final { }; // expected-note {{'A' declared here}}
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.noreturn/
p1.cpp 4 return; // expected-warning {{function 'a' declared 'noreturn' should not return}}
7 return; // expected-warning {{function 'a2' declared 'noreturn' should not return}}
21 [[noreturn]] int f(); // expected-error {{function declared '[[noreturn]]' after its first declaration}}
  /external/clang/test/Sema/
array-constraint.c 27 int foo[](void); // expected-error {{'foo' declared as array of functions}}
28 int foo2[1](void); // expected-error {{'foo2' declared as array of functions}}
32 pfunc xx(int f[](void)) { // expected-error {{'f' declared as array of functions}}
  /external/clang/test/SemaObjC/
property-impl-misuse.m 41 - (void)P; // expected-note {{declared here}}
44 - (double) P1; // expected-note {{declared here}}
47 - (double*)P2; // expected-note {{declared here}}
property-inherited.m 4 // rdar://6497242 Inherited overridden protocol declared objects don't work
24 @property(nonatomic, assign) id<BarDelegate> delegate2; // expected-note {{property declared here}}
39 @property(assign) NSMutableData *p_data; // expected-note {{property declared here}}
protocol-implementing-class-methods.m 8 - (void) : (double) arg; // expected-note {{method ':' declared here}}
12 - (void) initialize; // expected-note {{method 'initialize' declared here}}
20 - (void) CEMeth; // expected-note {{method 'CEMeth' declared here}}
arc-property.m 11 @property (strong) id myString; // expected-note {{property declared here}}
13 @property (retain) id myString2; // expected-note {{property declared here}}
17 @property __weak id myString5; // expected-note {{property declared here}}
38 @property(weak) id x; // expected-note {{property declared here}}
39 @property(weak) id y; // expected-note {{property declared here}}
arc-decls.m 56 @property (retain) id newFoo; // expected-note {{property declared here}}
57 @property (strong) id copyBar; // expected-note {{property declared here}}
58 @property (copy) id allocBaz; // expected-note {{property declared here}}
73 - (void)bar:(id)b; // expected-note {{parameter declared here}}
76 - (id)ns_non; // expected-note {{method declared here}}
77 - (id)not_ret:(id) b __attribute((ns_returns_not_retained)); // expected-note {{method declared here}}
default-synthesize-2.m 33 // object has user declared setter/getter so it won't be
44 id uid; // expected-note {{instance variable is declared here}}
46 @property (readwrite, assign) id uid; // expected-note {{property declared here}}
90 id _var; // expected-note {{'_var' declared here}}
122 id y; // expected-note {{instance variable is declared here}}
124 @property(copy) id y; // expected-note {{property declared here}}
attr-availability.m 4 - (void)proto_method __attribute__((availability(macosx,introduced=10.1,deprecated=10.2))); // expected-note 2 {{method 'proto_method' declared here}}
8 - (void)method __attribute__((availability(macosx,introduced=10.1,deprecated=10.2))); // expected-note {{method 'method' declared here}}
20 - (void)method; // expected-note {{method 'method' declared here}}
  /external/valgrind/main/drd/tests/
annotate_ignore_rw2.stderr.exp 5 declared at annotate_ignore_rw.c:11, in frame #? of thread 1
10 declared at annotate_ignore_rw.c:10, in frame #? of thread 1
15 declared at annotate_ignore_rw.c:12, in frame #? of thread 1
annotate_ignore_write.stderr.exp 5 declared at annotate_ignore_write.c:11, in frame #? of thread 1
10 declared at annotate_ignore_write.c:12, in frame #? of thread 1
15 declared at annotate_ignore_write.c:10, in frame #? of thread 1
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
OutputGLSL.h 42 // Structs are declared as the tree is traversed. This set contains all
43 // the structs already declared. It is maintained so that a struct is
44 // declared only once.
  /external/clang/test/CXX/class.access/class.friend/
p9-cxx0x.cpp 12 void f(); // expected-note {{implicitly declared private here}}
23 void f(); // expected-note {{implicitly declared private here}}
52 void f(); // expected-note {{implicitly declared private here}}
77 void f(); // expected-note {{implicitly declared private here}}
92 void f(); // expected-note {{implicitly declared private here}}
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1-11.cpp 7 template<int *ip> struct IP { // expected-note 4 {{template parameter is declared here}}
15 std::nullptr_t nonconst_np; // expected-note{{declared here}}
28 template<int X::*pm> struct PM { // expected-note 2 {{template parameter is declared here}}
39 template<int (X::*pmf)(int)> struct PMF { // expected-note 2 {{template parameter is declared here}}
51 template<std::nullptr_t np> struct NP { // expected-note 2{{template parameter is declared here}}
  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2.java 29 * it will of necessity also have been declared (<em>isDeclared()</em>)
32 * must have been declared.
42 * Returns false unless the attribute was declared in the DTD.
44 * as CDATA: ones that were declared (and hence are usually valid),
48 * @return true if the attribute was declared in the DTD,
56 * Returns false unless the attribute was declared in the DTD.
58 * as CDATA: ones that were declared (and hence are usually valid),
62 * @return true if the attribute was declared in the DTD,
70 * Returns false unless the attribute was declared in the DTD.
72 * as CDATA: ones that were declared (and hence are usually valid)
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
p6.cpp 19 alignas(8) extern int n6; // expected-note {{declared with 'alignas' attribute here}}
24 alignas(8) extern int n8; // expected-note {{declared with 'alignas' attribute here}}
28 alignas(4) extern int n9; // expected-note {{declared with 'alignas' attribute here}}
31 enum alignas(2) E : char; // expected-note {{declared with 'alignas' attribute here}}
42 enum alignas(1) H : char; // expected-note {{declared with 'alignas' attribute here}}
46 struct alignas(16) S; // expected-note {{declared with 'alignas' attribute here}}
59 struct alignas(1) V; // expected-note {{declared with 'alignas' attribute here}}
  /external/clang/test/SemaCXX/
implicit-member-functions.cpp 4 A::A() { } // expected-error {{definition of implicitly declared default constructor}}
7 B::B(const B&) { } // expected-error {{definition of implicitly declared copy constructor}}
10 C& C::operator=(const C&) { return *this; } // expected-error {{definition of implicitly declared copy assignment operator}}
13 D::~D() { } // expected-error {{definition of implicitly declared destructor}}
16 // name-lookup purposes and overload with user-declared
77 // definition of 'struct B', so there is no declared copy constructor yet.
115 // declared it yet), but by the time we get all the way back here, we should
typo-correction.cpp 40 static int base_type; // expected-note {{'base_type' declared here}}
52 class some_name {}; // expected-note {{'some_name' declared here}}
65 double FieldA; // expected-note{{'FieldA' declared here}}
72 typedef char* another_str; // expected-note{{'another_str' declared here}}
73 namespace AnotherStd { // expected-note{{'AnotherStd' declared here}}
82 template<typename ...TypeNames> struct count { // expected-note{{parameter pack 'TypeNames' declared here}}
88 class StreamOut {}; // expected-note 2 {{'StreamOut' declared here}}
89 long stream_count; // expected-note 2 {{'stream_count' declared here}}
113 void add_it(int i); // expected-note{{'add_it' declared here}}
124 Message somenetmsg; // expected-note{{'somenetmsg' declared here}
    [all...]
array-bounds-ptr-arith.cpp 5 const char hello[] = "Hello world!"; // expected-note 2 {{declared here}}
23 double numbers[2]; // expected-note {{declared here}}
27 char buffer[5]; // expected-note 2 {{declared here}}
  /external/libsepol/tests/
test-linker-types.c 51 * - attr a declared in base, added to in module
52 * - attr a declared in base, added to in module optional
53 * - attr a declared in base, added to in 2 modules
54 * - attr a declared in base, added to in 2 modules (optional and global)
55 * - attr a declared in base optional, added to in module
56 * - attr a declared in base optional, added to in module optional
57 * - attr a added to in base optional, declared in module
58 * - attr a added to in base optional, declared in module optional
59 * - attr a added to in base optional, declared in module, added to in other module
60 * - attr a added to in base optional, declared in module optional, added to in other modul
    [all...]
  /external/clang/test/FixIt/
typo.m 7 @interface NSString // expected-note 2{{'NSString' declared here}}
17 @property int *sprop; // expected-note{{'sprop' declared here}}
22 int his_ivar; // expected-note 2{{'his_ivar' declared here}}
27 @property int his_prop; // expected-note{{'his_prop' declared here}}
32 int her_ivar; // expected-note 2{{'her_ivar' declared here}}
35 @property int her_prop; // expected-note{{'her_prop' declared here}}
67 @interface Collide // expected-note{{'Collide' declared here}}
70 int value; // expected-note{{'value' declared here}}
73 @property int value; // expected-note{{'value' declared here}}
91 @protocol NetworkSocket // expected-note{{'NetworkSocket' declared here}
    [all...]

Completed in 452 milliseconds

1 2 3 4 5 67 8 91011>>