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

1 23 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
attr-noreturn.c 9 } // expected-warning {{function declared 'noreturn' should not return}}
20 return; // expected-warning {{function 'f3' declared 'noreturn' should not return}}
27 return; // expected-error {{function 'f4' declared 'noreturn' should not return}}
  /external/clang/test/SemaCXX/
implicit-virtual-member-functions.cpp 9 void operator delete (void *, int); // expected-note {{'operator delete' declared here}}
17 void operator delete(void *, int); // expected-note {{'operator delete' declared here}}
23 void operator delete(void *, int); // expected-note {{'operator delete' declared here}}
struct-class-redecl.cpp 4 typedef struct X * X_t; // expected-warning{{previously declared}}
8 template<class U> class Y { }; // expected-warning{{previously declared}}
12 struct A; // expected-warning{{struct 'A' was previously declared as a class}}
17 struct B; // expected-warning{{struct 'B' was previously declared as a class}}
18 struct B {}; // expected-warning{{'B' defined as a struct here but previously declared as a class}}
21 struct C; // expected-warning{{struct 'C' was previously declared as a class}}\
24 class C; // expected-warning{{class 'C' was previously declared as a struct}}\
26 struct C; // expected-warning{{struct 'C' was previously declared as a class}}\
28 class C {}; // expected-warning{{'C' defined as a class here but previously declared as a struct}}
34 class D; // expected-warning{{class 'D' was previously declared as a struct}}
    [all...]
anonymous-union.cpp 12 union { // expected-warning{{anonymous types declared in an anonymous union are an extension}}
77 union { // expected-error{{anonymous unions at namespace or global scope must be declared 'static'}}
103 struct X { }; // expected-error {{types cannot be declared in an anonymous union}}
104 struct { int x; int y; } y; // expected-warning{{anonymous types declared in an anonymous union are an extension}}
106 void f(); // expected-error{{functions cannot be declared in an anonymous union}}
129 int s0; // expected-note {{declared private here}}
130 double s1; // expected-note {{declared private here}}
131 union { // expected-warning{{anonymous types declared in an anonymous struct are an extension}}
132 int su0; // expected-note {{declared private here}}
133 double su1; // expected-note {{declared private here}
    [all...]
missing-namespace-qualifier-typo-corrections.cpp 3 namespace fizbin { class Foobar {}; } // expected-note 2 {{'fizbin::Foobar' declared here}} \
4 // expected-note {{'Foobar' declared here}}
9 namespace barstool { int toFoobar() { return 1; } } // expected-note 3 {{'barstool::toFoobar' declared here}}
16 namespace baztool { bool toFoobar() { return true; } } // expected-note{{'fizbin::baztool' declared here}}
17 namespace nested { bool moreFoobar() { return true; } } // expected-note{{'fizbin::nested::moreFoobar' declared here}}
18 namespace nested { bool lessFoobar() { return true; } } // expected-note{{'fizbin::nested' declared here}} \
19 // expected-note{{'fizbin::nested::lessFoobar' declared here}}
20 class dummy { // expected-note 2 {{'fizbin::dummy' declared here}}
22 static bool moreFoobar() { return false; } // expected-note{{'moreFoobar' declared here}}
25 void Check() { // expected-note{{'Check' declared here}
    [all...]
  /external/clang/test/SemaObjC/
duplicate-property-class-extension.m 6 @property (readwrite) char bar; // expected-note {{property declared here}}
10 @property (readwrite) char foo; // expected-note 2 {{property declared here}}
11 @property (readwrite) char NewProperty; // expected-note 2 {{property declared here}}
method-undefined-warn-1.m 6 - (int) int_meth; // expected-note {{method 'int_meth' declared here}}
7 + (int) cls_meth; // expected-note {{method 'cls_meth' declared here}}
8 + (void) cls_meth1 : (int) arg1; // expected-note {{method 'cls_meth1:' declared here}}
22 - (int) int_meth; // expected-note {{method 'int_meth' declared here}}
23 + (int) cls_meth; // expected-note {{method 'cls_meth' declared here}}
24 + (void) cls_meth1 : (int) arg1; // expected-note {{method 'cls_meth1:' declared here}}
ivar-sem-check-2.m 4 id value2; // expected-note {{previously declared 'value2' here}}
20 @synthesize prop=value2; // expected-error {{property 'prop' attempting to use instance variable 'value2' declared in super class 'Super'}}
method-warn-unused-attribute.m 12 [a fee]; // expected-warning {{ignoring return value of function declared with warn_unused_result attribute}}
13 [INTF c]; // expected-warning {{ignoring return value of function declared with warn_unused_result attribute}}
property-ns-returns-not-retained-attr.m 10 @property (nonatomic, retain) id newName2 __attribute__((ns_returns_not_retained)); // expected-note {{roperty declared here}}
11 - (id) newName2; // expected-warning {{property declared as returning non-retained objects; getter returning retained objects}}
warn-implicit-atomic-property.m 7 @property (readwrite) int P2; // expected-note {{property declared here}}
8 @property int P3; // expected-note {{property declared here}}
arc-property-decl-attrs.m 40 @property(strong) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretained}}
41 @property(strong) __weak id y; // expected-error {{strong property 'y' may not also be declared __weak}} expected-error {{property attributes 'strong' and 'weak' are mutually exclusive}}
42 @property(strong) __autoreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}}
46 @property(retain) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretained}}
47 @property(retain) __weak id y; // expected-error {{strong property 'y' may not also be declared __weak}} expected-error {{property attributes 'retain' and 'weak' are mutually exclusive}}
48 @property(retain) __autoreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}}
52 @property(copy) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be declared __unsafe_unretained}}
53 @property(copy) __weak id y; // expected-error {{strong property 'y' may not also be declared __weak}} expected-error {{property attributes 'copy' and 'weak' are mutually exclusive}}
54 @property(copy) __autoreleasing id z; // expected-error {{strong property 'z' may not also be declared __autoreleasing}}
60 @property(assign) __autoreleasing id z; // expected-error {{unsafe_unretained property 'z' may not also be declared __autoreleasing}
    [all...]
property-deprecated-warning.m 8 @property(nonatomic,assign) id ptarget __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{property 'ptarget' is declared deprecated here}} expected-note {{method 'ptarget' declared here}}
17 @property(nonatomic,assign) id target __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{property 'target' is declared deprecated here}} expected-note {{method 'setTarget:' declared here}}
25 @property(nonatomic,assign) id dep_target __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note 2 {{method 'dep_target' declared here}} \
26 // expected-note 4 {{property 'dep_target' is declared deprecated here}} \
27 // expected-note 2 {{method 'setDep_target:' declared here}}
58 @property(getter=isEnabled,assign) BOOL enabled __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{method 'isEnabled' declared here}} expected-note {{property 'enabled' is declared deprecated here}}
60 @property(setter=setNewDelegate:,assign) id delegate __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{method 'setNewDelegate:' declared here}} expected-note {{property 'delegate' is declared deprecated here}
    [all...]
  /external/libsepol/tests/policies/test-linker/
module2.conf 21 #add types to role declared in base test
30 # attr a added to in base optional, declared/added to in module, added to in other module
33 # attr a added to in base optional, declared/added in module optional, added to in other module
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/osmesa/
SConscript 22 '_GDI32_', # prevent wgl* being declared __declspec(dllimport)
26 # prevent _glapi_* from being declared __declspec(dllimport)
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/
SConscript 11 '_GDI32_', # prevent wgl* being declared __declspec(dllimport)
15 # prevent _glapi_* from being declared __declspec(dllimport)
  /external/clang/test/ASTMerge/
class-template.cpp 5 // CHECK: class-template1.cpp:7:14: error: non-type template parameter declared with incompatible types in different translation units ('int' vs. 'long')
6 // CHECK: class-template2.cpp:7:15: note: declared here with type 'long'
9 // CHECK: class-template2.cpp:10:10: note: template parameter declared here
11 // CHECK: class-template1.cpp:16:23: error: non-type template parameter declared with incompatible types in different translation units ('long' vs. 'int')
12 // CHECK: class-template2.cpp:16:23: note: declared here with type 'int'
15 // CHECK: class-template2.cpp:19:10: note: template parameter declared here
17 // CHECK: class-template2.cpp:25:20: error: external variable 'x0r' declared with incompatible types in different translation units ('X0<double> *' vs. 'X0<float> *')
18 // CHECK: class-template1.cpp:24:19: note: declared here with type 'X0<float> *'
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p17.cpp 4 ctor(); // expected-note{{implicitly declared private here}}
8 ~dtor(); // expected-note 3 {{implicitly declared private here}}
  /external/clang/test/CXX/special/class.dtor/
p3.cpp 7 A::~A() noexcept {} // expected-warning {{previously declared with an implicit exception specification}}
10 B::~B() {} // expected-warning {{previously declared with an explicit exception specification}}
  /external/clang/test/CXX/temp/temp.param/
p5.cpp 5 int &&r = I; // expected-warning 2{{binding reference member 'r' to a temporary value}} expected-note 2{{declared here}}
11 int &&r = v; // expected-warning {{binding reference member 'r' to a temporary value}} expected-note {{declared here}}
  /external/clang/test/SemaOpenCL/
storageclass.cl 9 static int X = 5; // expected-error{{variables in function scope cannot be declared static}}
13 static void kernel bar() { // expected-error{{kernel functions cannot be declared static}}
  /external/mesa3d/src/mesa/drivers/osmesa/
SConscript 22 '_GDI32_', # prevent wgl* being declared __declspec(dllimport)
26 # prevent _glapi_* from being declared __declspec(dllimport)
  /external/mesa3d/src/mesa/drivers/windows/gdi/
SConscript 11 '_GDI32_', # prevent wgl* being declared __declspec(dllimport)
15 # prevent _glapi_* from being declared __declspec(dllimport)
  /external/bison/darwin-lib/
config.h 351 /* Define if the copysignf function is declared in <math.h> and available in
355 /* Define if the copysignl function is declared in <math.h> and available in
359 /* Define if the copysign function is declared in <math.h> and available in
694 /* Define to 1 if acosf is declared even after undefining macros. */
697 /* Define to 1 if acosl is declared even after undefining macros. */
700 /* Define to 1 if asinf is declared even after undefining macros. */
703 /* Define to 1 if asinl is declared even after undefining macros. */
706 /* Define to 1 if atanf is declared even after undefining macros. */
709 /* Define to 1 if atanl is declared even after undefining macros. */
712 /* Define to 1 if atoll is declared even after undefining macros. *
    [all...]
  /external/bison/linux-lib/
config.h 351 /* Define if the copysignf function is declared in <math.h> and available in
355 /* Define if the copysignl function is declared in <math.h> and available in
359 /* Define if the copysign function is declared in <math.h> and available in
694 /* Define to 1 if acosf is declared even after undefining macros. */
697 /* Define to 1 if acosl is declared even after undefining macros. */
700 /* Define to 1 if asinf is declared even after undefining macros. */
703 /* Define to 1 if asinl is declared even after undefining macros. */
706 /* Define to 1 if atanf is declared even after undefining macros. */
709 /* Define to 1 if atanl is declared even after undefining macros. */
712 /* Define to 1 if atoll is declared even after undefining macros. *
    [all...]

Completed in 163 milliseconds

1 23 4 5 6 7 8 91011>>