OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:declared
(Results
26 - 50
of
3935
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.ref/
p5.cpp
21
& // expected-error {{
declared
as a reference to a reference}}
43
* // expected-error {{
declared
as a pointer to a reference}}
51
* // expected-error {{
declared
as a pointer to a reference}}
56
* // expected-error {{
declared
as a pointer to a reference}}
61
* // expected-error {{
declared
as a pointer to a reference}}
65
* // expected-error {{
declared
as a pointer to a reference}}
79
[ // expected-error {{
declared
as array of references}}
86
[ // expected-error {{
declared
as array of references}}
96
[ // expected-error {{
declared
as array of references}}
103
[ // expected-error {{
declared
as array of references}
[
all
...]
/external/clang/test/SemaObjC/
forward-protocol-incomplete-impl-warn.m
7
- (void)invalidate; // expected-note {{method 'invalidate'
declared
here}}
8
@property int Prop; // expected-note {{property
declared
here}}
18
@implementation IBImageCatalogDocument // expected-warning {{auto property synthesis will not synthesize property
declared
in a protocol}} \
property-category-4.m
10
@property (readwrite, retain) id selectedObjects; // expected-note {{property
declared
here}}
11
@property (readwrite, retain) id d_selectedObjects; // expected-note {{property
declared
here}}
15
@synthesize selectedObjects = _selectedObjects; // expected-error {{property
declared
in category 'CAT' cannot be implemented in class implementation}}
16
@dynamic d_selectedObjects; // expected-error {{property
declared
in category 'CAT' cannot be implemented in class implementation}}
98
@property (readonly) int p; // no warning for this property - a getter is
declared
in another category
99
@property (readonly) int p1; // expected-note {{property
declared
here}}
100
@property (readonly) int p2; // no warning for this property - a getter is
declared
in this category
109
@property (readonly) float anotherFloat; // expected-note {{property
declared
here}}
110
@property (readonly) float Float; // no warning for this property - a getter is
declared
in this protocol
property-noninherited-availability-attr.m
8
@property int myProtocolProperty __attribute__((availability(macosx,introduced=10.7,deprecated=10.8))); // expected-note {{method 'myProtocolProperty'
declared
here}} \
9
// expected-note {{property 'myProtocolProperty' is
declared
deprecated here}}
13
@property int myProperty __attribute__((availability(macosx,introduced=10.7,deprecated=10.8))); // expected-note {{'myProperty'
declared
here}} \
14
// expected-note {{method 'myProperty'
declared
here}} \
15
// expected-note {{property 'myProperty' is
declared
deprecated here}}
warn-deprecated-implementations.m
6
- (void) D __attribute__((deprecated)); // expected-note {{method 'D'
declared
here}}
14
- (void) E __attribute__((deprecated)); // expected-note {{method 'E'
declared
here}}
32
@interface CL // expected-note 2 {{class
declared
here}} // expected-note 2 {{
declared
here}}
46
- (void) B __attribute__((deprecated)); // expected-note {{method 'B'
declared
here}}
/external/clang/test/CXX/temp/temp.decls/temp.friend/
p8.cpp
5
template<class T> friend class A<T*>; // expected-error{{partial specialization cannot be
declared
as a friend}}
/external/clang/test/Modules/Inputs/
redecl-merge-bottom-prefix.h
1
// A class that is
declared
in the 'bottom' module, then loaded from
/external/clang/test/Sema/
block-return-2.c
4
^ (void) __attribute__((noreturn)) { }(); // expected-error {{block
declared
'noreturn' should not return}}
warn-sizeof-arrayarg.c
8
// expected-note {{
declared
here}} \
9
// expected-note {{
declared
here}} \
10
// expected-note {{
declared
here}} \
11
// expected-note {{
declared
here}}
typeof-use-deprecated.c
3
struct s { int a; } __attribute__((deprecated)) x; // expected-warning {{'s' is deprecated}} expected-note 2 {{'s'
declared
here}}
7
union un{ int a; } __attribute__((deprecated)) u; // expected-warning {{'un' is deprecated}} expected-note 2 {{'un'
declared
here}}
11
enum E{ one} __attribute__((deprecated)) e; // expected-warning {{'E' is deprecated}} expected-note 2 {{'E'
declared
here}}
15
struct foo { int x; } __attribute__((deprecated)); // expected-note {{'foo'
declared
here}}
16
typedef struct foo bar __attribute__((deprecated)); // expected-note {{'bar'
declared
here}}
22
typedef struct gorf T __attribute__((deprecated)); // expected-note {{'T'
declared
here}}
return-noreturn.c
4
void test1() { // expected-warning {{function 'test1' could be
declared
with attribute 'noreturn'}}
5
^ (void) { while (1) { } }(); // expected-warning {{block could be
declared
with attribute 'noreturn'}}
17
} // expected-warning{{function
declared
'noreturn' should not return}}
29
} // expected-warning{{function
declared
'noreturn' should not return}}
33
//
declared
noreturn.
attr-deprecated.c
3
int f() __attribute__((deprecated)); // expected-note 2 {{
declared
here}}
5
void g(); // expected-note {{
declared
here}}
7
extern int var __attribute__((deprecated)); // expected-note {{
declared
here}}
20
extern int var; // expected-note {{
declared
here}}
26
int old_fn(); // expected-note {{
declared
here}}
35
int x __attribute__((deprecated)); // expected-note 3 {{
declared
here}}
44
typedef struct foo foo_dep __attribute__((deprecated)); // expected-note 12 {{
declared
here}}
48
invalid_attribute)) bar_dep ; // expected-warning {{unknown attribute 'invalid_attribute' ignored}} expected-note 2 {{
declared
here}}
105
enum __attribute__((deprecated)) Test20 { // expected-note {{
declared
here}}
106
test20_a __attribute__((deprecated)), // expected-note {{
declared
here}
[
all
...]
/external/clang/test/SemaCXX/
attr-regparm.cpp
14
void __attribute__((regparm(2))) X0::f2() { } // expected-error{{function
declared
with regparm(2) attribute was previously
declared
with the regparm(3) attribute}}
15
void __attribute__((regparm(2))) X0::f3() { } // expected-error{{function
declared
with regparm(2) attribute was previously
declared
without the regparm attribute}}
constructor-recovery.cpp
4
virtual C() = 0; // expected-error{{constructor cannot be
declared
'virtual'}}
illegal-member-initialization.cpp
17
int &value; // expected-note{{
declared
here}}
18
const int cvalue; // expected-note{{
declared
here}}
19
B& b; // expected-note{{
declared
here}}
20
const B cb; // expected-note{{
declared
here}}
function-overload-typo-crash.cpp
4
void min(); //expected-note {{'min'
declared
here}}
7
template <typename T> void max(T); //expected-note {{'max'
declared
here}}
14
template <typename T> void somefunc(T*, T*); //expected-note {{'somefunc'
declared
here}}
15
template <typename T> void somefunc(const T[]); //expected-note {{'somefunc'
declared
here}}
16
template <typename T1, typename T2> void somefunc(T1*, T2*); //expected-note {{'somefunc'
declared
here}}
17
template <typename T1, typename T2> void somefunc(T1*, const T2[]); //expected-note 2 {{'somefunc'
declared
here}}
attr-deprecated.cpp
3
void f() __attribute__((deprecated)); // expected-note 2 {{
declared
here}}
7
int b __attribute__((deprecated)); // expected-note 2 {{
declared
here}}
29
virtual void f() __attribute__((deprecated)); // expected-note 4 {{
declared
here}}
71
void foo(int) __attribute__((deprecated)); // expected-note {{
declared
here}}
73
void foo(short) __attribute__((deprecated)); // expected-note {{
declared
here}}
78
friend void foo(A*) __attribute__((deprecated)); // expected-note {{
declared
here}}
84
void foo(const Foo &f) __attribute__((deprecated)); // expected-note {{
declared
here}}
94
void foo(int) __attribute__((deprecated)); // expected-note 2 {{
declared
here}}
96
static void bar(int) __attribute__((deprecated)); // expected-note 3 {{
declared
here}}
123
void operator*(int) __attribute__((deprecated)); // expected-note {{
declared
here}
[
all
...]
/external/clang/test/ASTMerge/
function.c
6
// CHECK: function2.c:3:6: error: external function 'f1'
declared
with incompatible types in different translation units ('void (Int, double)' vs. 'void (int, float)')
7
// CHECK: function1.c:2:6: note:
declared
here with type 'void (int, float)'
8
// CHECK: function2.c:5:6: error: external function 'f3'
declared
with incompatible types in different translation units ('void (int)' vs. 'void (void)')
9
// CHECK: function1.c:4:6: note:
declared
here with type 'void (void)'
12
// expected-error@Inputs/function2.c:3 {{external function 'f1'
declared
with incompatible types}}
13
// expected-note@Inputs/function1.c:2 {{
declared
here}}
14
// expected-error@Inputs/function2.c:5 {{external function 'f3'
declared
with incompatible types}}
15
// expected-note@Inputs/function1.c:4 {{
declared
here}}
var.c
5
// CHECK: var2.c:2:9: error: external variable 'x1'
declared
with incompatible types in different translation units ('double *' vs. 'float **')
6
// CHECK: var1.c:2:9: note:
declared
here with type 'float **'
7
// CHECK: var2.c:3:5: error: external variable 'x2'
declared
with incompatible types in different translation units ('int' vs. 'double')
9
// CHECK: var1.h:1:8: note:
declared
here with type 'double'
10
// CHECK: error: external variable 'xarray3'
declared
with incompatible types in different translation units ('int [17]' vs. 'int [18]')
11
// CHECK: var1.c:7:5: note:
declared
here with type 'int [18]'
/external/clang/test/CXX/class/class.local/
p1.cpp
7
int x; // expected-note{{'x'
declared
here}}
11
int g() { return x; } // expected-error{{reference to local variable 'x'
declared
in enclosing function 'f'}}
p3.cpp
24
void f3(int a) { // expected-note{{'a'
declared
here}}
27
int f() { return a; } // expected-error{{reference to local variable 'a'
declared
in enclosing function 'f3'}}
/cts/tools/signature-tools/src/signature/model/
IClassDefinition.java
81
* Returns the
declared
interfaces this class definition implements . If no
82
* interfaces are
declared
, an empty set is returned.
84
* @return the
declared
interfaces for this class definition
96
* Returns all
declared
methods of this class definition.
98
* @return all
declared
methods of this class definition
103
* Returns all
declared
constructors of this class definition.
105
* @return all
declared
constructors of this class definition
110
* Returns all
declared
fields of this class definition.
112
* @return all
declared
fields of this class definition
117
* Returns all
declared
enumeration constant definitions of this clas
[
all
...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p10.cpp
3
int GlobalVar; // expected-note {{
declared
here}}
19
int variable; // expected-note {{
declared
here}}
28
int local; // expected-note{{
declared
here}}
29
static int local_static; // expected-note{{'local_static'
declared
here}}
33
(void)[local, // expected-error{{reference to local variable 'local'
declared
in enclosing function 'test_reaching_scope'}}
/libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2Impl.java
26
* Similarly, the <em>
declared
</em> flag for each attribute will
31
* its <em>
declared
</em> flag to match.
40
private boolean[]
declared
;
field in class:Attributes2Impl
48
declared
= EmptyArray.BOOLEAN;
56
* <em>specified</em> and <em>
declared
</em> flags for each
60
* type other than CDATA, which must have been <em>
declared
</em>).
79
* Returns the current value of the attribute's "
declared
" flag.
87
return
declared
[index];
92
* Returns the current value of the attribute's "
declared
" flag.
103
return
declared
[index]
[
all
...]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.elab/
p2-0x.cpp
4
template<typename T> using X = A; // expected-note {{
declared
here}}
8
template<typename T> using Id = T; // expected-note {{
declared
here}}
15
template<typename T> using U = F<char>; // expected-note 2{{
declared
here}}
Completed in 767 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>