OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:declared
(Results
101 - 125
of
3874
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/libsepol/tests/policies/test-linker/
module1.conf
25
# test for attr
declared
in base, added to in module
29
# test for attr
declared
in base, added to in 2 modules
33
# test for attr
declared
in base optional, added to in module
37
# test for attr
declared
in module, added to in base optional
53
# attr a added to in base optional,
declared
/added to in module, added to in other module
57
# attr a added to in base optional,
declared
/added in module , added to in other module optional
128
# attr a added to in base optional,
declared
/added in module optional, added to in other module
/external/clang/test/SemaObjC/
attr-deprecated.m
5
int X __attribute__((deprecated)); // expected-note 2 {{
declared
here}}
7
+ (void)F __attribute__((deprecated)); // expected-note 2 {{
declared
here}}
8
- (void)f __attribute__((deprecated)); // expected-note 4 {{
declared
here}}
46
- (void)p __attribute__((deprecated)); // expected-note {{
declared
here}}
75
@property (assign, setter = MySetter:) int FooBar __attribute__ ((deprecated)); // expected-note 2 {{
declared
here}}
87
@interface DEPRECATED { // expected-note 2 {{
declared
here}}
111
@property int test2 __attribute__((deprecated)); // expected-note 4 {{
declared
here}} \
112
// expected-note 2 {{property 'test2' is
declared
deprecated here}}
130
} footype __attribute((deprecated)); // expected-note 2 {{
declared
here}}
145
typedef NewI DeprI __attribute__((deprecated("blah"))); // expected-note 4 {{'DeprI'
declared
here}
[
all
...]
ivar-lookup.m
60
int IVAR; // expected-error {{instance variable is already
declared
}}
67
int IVAR; // expected-error {{instance variable is already
declared
}}
73
int IVAR; // expected-error {{instance variable is already
declared
}}
74
int PIVAR; // expected-error {{instance variable is already
declared
}}
80
int IVAR; // expected-error {{instance variable is already
declared
}}
146
// expected-error {{instance variable is already
declared
}}
151
int d; // expected-error {{instance variable is already
declared
}}
152
NSString *e_strong; // expected-error {{instance variable is already
declared
}}
153
NSData *f_weak; // expected-error {{instance variable is already
declared
}}
154
NSData *g; // expected-error 2 {{instance variable is already
declared
}}
[
all
...]
arc-property-lifetime.m
10
@property(strong) id x; // expected-note {{property
declared
here}}
11
@property(strong) id y; // expected-note {{property
declared
here}}
27
@property(retain) id x; // expected-note {{property
declared
here}}
28
@property(retain) id y; // expected-note {{property
declared
here}}
44
@property(copy) id x; // expected-note {{property
declared
here}}
45
@property(copy) id y; // expected-note {{property
declared
here}}
56
@property(strong) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be
declared
__unsafe_unretained}}
57
@property(strong) __autoreleasing id z; // expected-error {{strong property 'z' may not also be
declared
__autoreleasing}}
61
@property(retain) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be
declared
__unsafe_unretained}}
62
@property(retain) __autoreleasing id z; // expected-error {{strong property 'z' may not also be
declared
__autoreleasing}
[
all
...]
objc-container-subscripting.m
7
- (id)objectAtIndexedSubscript:(double)index; // expected-note {{parameter of type 'double' is
declared
here}}
8
- (void)setObject:(id *)object atIndexedSubscript:(void *)index; // expected-note {{parameter of type 'void *' is
declared
here}} \
9
// expected-note {{parameter of type 'id *' is
declared
here}}
29
- (id)objectForKeyedSubscript:(id*)key; // expected-note {{parameter of type 'id *' is
declared
here}}
30
- (void)setObject:(void*)object forKeyedSubscript:(id*)key; // expected-note {{parameter of type 'void *' is
declared
here}} \
31
// expected-note {{parameter of type 'id *' is
declared
here}}
/external/clang/test/SemaCXX/
default-constructor-initializers.cpp
7
struct X2 : X1 { // expected-note 2 {{'X2'
declared
here}}
18
X2 x2; // expected-note {{member is
declared
here}}
19
X2 & rx2; // expected-note {{
declared
here}}
48
int& z; // expected-note {{
declared
here}}
49
const int c1; // expected-note {{
declared
here}}
array-bounds.cpp
4
int x[2]; // expected-note 4 {{array 'x'
declared
here}}
5
int y[2]; // expected-note 2 {{array 'y'
declared
here}}
6
int z[1]; // expected-note {{array 'z'
declared
here}}
7
int w[1][1]; // expected-note {{array 'w'
declared
here}}
8
int v[1][1][1]; // expected-note {{array 'v'
declared
here}}
33
void f2(const int (&a)[2]) { // expected-note {{
declared
here}}
44
short a[2]; // expected-note 4 {{
declared
here}}
56
int array[2]; // expected-note {{
declared
here}}
61
int array2[] = { 0, 1, 2 }; // expected-note 2 {{
declared
here}}
69
const char str2[] = "foo"; // expected-note {{
declared
here}
[
all
...]
/external/clang/test/FixIt/
typo.cpp
8
template<typename T> class basic_string { // expected-note 3{{'basic_string'
declared
here}}
10
int find(const char *substr); // expected-note{{'find'
declared
here}}
11
static const int npos = -1; // expected-note{{'npos'
declared
here}}
14
typedef basic_string<char> string; // expected-note 2{{'string'
declared
here}}
17
namespace otherstd { // expected-note 2{{'otherstd'
declared
here}} \
30
float area(float radius, // expected-note{{'radius'
declared
here}}
53
int member; // expected-note 3{{'member'
declared
here}}
69
typedef int Integer; // expected-note{{'Integer'
declared
here}}
70
int global_value; // expected-note{{'global_value'
declared
here}}
79
typedef std::basic_string<char> yarn; // expected-note 2 {{'nonstd::yarn'
declared
here}
[
all
...]
typo-using.cpp
11
namespace N { class AAA {}; } // expected-note {{'AAA'
declared
here}}
16
namespace N { class AAA {}; } // expected-note {{'AAA'
declared
here}}
21
namespace N { void FFF() {} } // expected-note {{'FFF'
declared
here}}
26
class AAA {}; // expected-note {{'::using_suggestion_ty_dropped_specifier::AAA'
declared
here}}
32
class AAA {}; // expected-note {{'::using_suggestion_tyname_ty_dropped_specifier::AAA'
declared
here}}
38
void FFF() {} // expected-note {{'::using_suggestion_val_dropped_specifier::FFF'
declared
here}}
44
class CCC { public: typedef int AAA; }; // expected-note {{'AAA'
declared
here}}
49
class CCC { public: void AAA() { } }; // expected-note {{'AAA'
declared
here}}
54
class CCC { public: typedef int AAA; }; // expected-note {{'AAA'
declared
here}}
/dalvik/vm/compiler/codegen/arm/
CalloutHelper.h
66
/* Originally
declared
in Sync.h */
69
/* Originally
declared
in oo/TypeCheck.h */
75
/* Originally
declared
in oo/Array.h */
79
/* Originally
declared
in interp/InterpDefs.h */
83
/* Originally
declared
in compiler/codegen/arm/Assemble.c */
92
* Originally
declared
in mterp/common/FindInterface.h and only comment it here
99
/* Originally
declared
in alloc/Alloc.h */
103
* Functions
declared
in gDvmInlineOpsTable[] are used for
109
* The following functions are invoked through the compiler templates (
declared
/dalvik/vm/compiler/codegen/mips/
CalloutHelper.h
63
/* Originally
declared
in Sync.h */
66
/* Originally
declared
in oo/TypeCheck.h */
72
/* Originally
declared
in oo/Array.h */
76
/* Originally
declared
in interp/InterpDefs.h */
80
/* Originally
declared
in compiler/codegen/mips/Assemble.c */
89
* Originally
declared
in mterp/common/FindInterface.h and only comment it here
96
/* Originally
declared
in alloc/Alloc.h */
100
* Functions
declared
in gDvmInlineOpsTable[] are used for
106
* The following functions are invoked through the compiler templates (
declared
/external/clang/test/ARCMT/
atautorelease-check.m
104
// 'x' is
declared
inside the "pool scope" but used outside it, if we create
106
int x = 0; // expected-note {{
declared
here}}
110
++x; // expected-error {{a name is referenced outside the NSAutoreleasePool scope that it was
declared
in}}
117
struct S { int x; }; // expected-note {{
declared
here}}
121
struct S *var; // expected-error {{a name is referenced outside the NSAutoreleasePool scope that it was
declared
in}}
129
enum { Bar }; // expected-note {{
declared
here}}
133
int x = Bar; // expected-error {{a name is referenced outside the NSAutoreleasePool scope that it was
declared
in}}
140
typedef int Bar; // expected-note {{
declared
here}}
144
Bar x; // expected-error {{a name is referenced outside the NSAutoreleasePool scope that it was
declared
in}}
/external/clang/test/Modules/
module-private.cpp
62
template<> __module_private__ void public_func_template<int>(); // expected-error{{template specialization cannot be
declared
__module_private__}}
73
template<> __module_private__ struct public_class<int>::inner_struct { }; // expected-error{{member specialization cannot be
declared
__module_private__}}
74
template<> __module_private__ int public_class<int>::static_var = 17; // expected-error{{member specialization cannot be
declared
__module_private__}}
77
__module_private__ struct public_class<float> { }; // expected-error{{template specialization cannot be
declared
__module_private__}}
80
__module_private__ struct public_class<T *> { }; // expected-error{{partial specialization cannot be
declared
__module_private__}}
85
void local_var_private(__module_private__ int param) { // expected-error{{parameter 'param' cannot be
declared
__module_private__}}
86
__module_private__ struct Local { int x, y; } local; //expected-error{{local variable 'local' cannot be
declared
__module_private__}}
88
__module_private__ struct OtherLocal { int x; }; // expected-error{{local struct cannot be
declared
__module_private__}}
90
typedef __module_private__ int local_typedef; // expected-error{{typedef 'local_typedef' cannot be
declared
__module_private__}}
/external/clang/test/ASTMerge/
struct.c
8
// CHECK: struct2.c:15:11: error: external variable 'x1'
declared
with incompatible types in different translation units ('struct S1' vs. 'struct S1')
9
// CHECK: struct1.c:18:11: note:
declared
here with type 'struct S1'
12
// CHECK: struct2.c:18:30: error: external variable 'x2'
declared
with incompatible types in different translation units ('union S2' vs. 'struct S2')
13
// CHECK: struct1.c:21:31: note:
declared
here with type 'struct S2'
17
// CHECK: struct2.c:21:31: error: external variable 'x3'
declared
with incompatible types in different translation units ('struct S3' vs. 'struct S3')
18
// CHECK: struct1.c:24:41: note:
declared
here with type 'struct S3'
22
// CHECK: struct2.c:24:31: error: external variable 'x4'
declared
with incompatible types in different translation units ('struct S4' vs. 'struct S4')
23
// CHECK: struct1.c:27:22: note:
declared
here with type 'struct S4'
27
// CHECK: struct2.c:30:38: error: external variable 'x6'
declared
with incompatible types in different translation units ('struct S6' vs. 'struct S6')
28
// CHECK: struct1.c:33:42: note:
declared
here with type 'struct S6
[
all
...]
interface.m
5
// CHECK: interface2.m:16:9: error: instance variable 'ivar2'
declared
with incompatible types in different translation units ('float' vs. 'int')
6
// CHECK: interface1.m:16:7: note:
declared
here with type 'int'
11
// CHECK: interface1.m:34:1: note: class method 'foo' also
declared
here
13
// CHECK: interface1.m:40:17: note:
declared
here with type 'int'
15
// CHECK: interface1.m:46:1: note: class method 'bar:' also
declared
here
17
// CHECK: interface1.m:58:19: note:
declared
here with type 'float'
enum.c
8
// CHECK: enum2.c:13:3: error: external variable 'x2'
declared
with incompatible types in different translation units ('enum E2' vs. 'enum E2')
9
// CHECK: enum1.c:13:3: note:
declared
here with type 'enum E2'
13
// CHECK: enum2.c:20:3: error: external variable 'x3'
declared
with incompatible types in different translation units ('enum E3' vs. 'enum E3')
14
// CHECK: enum1.c:20:3: note:
declared
here with type 'enum E3'
18
// CHECK: enum2.c:26:3: error: external variable 'x4'
declared
with incompatible types in different translation units ('enum E4' vs. 'enum E4')
19
// CHECK: enum1.c:27:3: note:
declared
here with type 'enum E4'
23
// CHECK: enum2.c:34:3: error: external variable 'x5'
declared
with incompatible types in different translation units ('enum E5' vs. 'enum E5')
24
// CHECK: enum1.c:34:3: note:
declared
here with type 'enum E5'
namespace.cpp
5
// CHECK: namespace2.cpp:16:17: error: external variable 'z'
declared
with incompatible types in different translation units ('double' vs. 'float')
6
// CHECK: namespace1.cpp:16:16: note:
declared
here with type 'float'
typedef.c
5
// CHECK: typedef2.c:4:10: error: external variable 'x2'
declared
with incompatible types in different translation units ('Typedef2' (aka 'double') vs. 'Typedef2' (aka 'int'))
6
// CHECK: typedef1.c:4:10: note:
declared
here with type 'Typedef2' (aka 'int')
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
parameter-matching.cpp
8
template<typename ...T> struct X1t; // expected-note{{previous template type parameter pack
declared
here}}
11
template<typename T> struct X2t; // expected-note{{previous template type parameter
declared
here}}
17
template<template<typename ...T> class> struct X1t_intt; // expected-note{{previous template type parameter pack
declared
here}}
20
template<template<typename T> class> struct X2t_intt; // expected-note{{previous template type parameter
declared
here}}
23
template<int ...Values> struct X1nt; // expected-note{{previous non-type template parameter pack
declared
here}}
26
template<template<class T> class> class X1tt; // expected-note{{previous template template parameter
declared
here}}
/external/clang/test/SemaObjCXX/
property-synthesis-error.mm
41
TCPPObject& operator=(const TCPPObject& inObj); // expected-note {{'operator='
declared
here}}
79
@property (readonly, nonatomic) IncompleteStruct& x; // expected-note {{property
declared
here}}
80
@property (readonly, nonatomic) IncompleteStruct& y; // expected-note {{property
declared
here}}
90
T *x; // expected-error {{'x'
declared
as a pointer to a reference of type 'int &'}}
95
// expected-note 2 {{implicitly
declared
private here}} \
96
// expected-note {{'operator='
declared
here}}
/external/clang/test/CXX/class.access/
p4.cpp
19
void foo(Protected&); // expected-note 2 {{
declared
protected here}}
21
void foo(Private&); // expected-note 2 {{
declared
private here}}
45
void operator+(Protected&); // expected-note {{
declared
protected here}}
46
void operator[](Protected&); // expected-note {{
declared
protected here}}
47
void operator()(Protected&); // expected-note {{
declared
protected here}}
49
operator ProtectedSurrogate() const; // expected-note {{
declared
protected here}}
51
void operator+(Private&); // expected-note {{
declared
private here}}
52
void operator[](Private&); // expected-note {{
declared
private here}}
53
void operator()(Private&); // expected-note {{
declared
private here}}
54
void operator-(); // expected-note {{
declared
private here}
[
all
...]
/art/test/068-classloader/src-ex/
GetDoubled.java
18
* The interface we implement was
declared
in a different class loader,
19
* which means the DoubledExtend we return is not the one it was
declared
/dalvik/tests/068-classloader/src-ex/
GetDoubled.java
18
* The interface we implement was
declared
in a different class loader,
19
* which means the DoubledExtend we return is not the one it was
declared
/external/chromium/crypto/
nss_util_internal.h
12
//
declared
in nss_util.h. Hence, they are
declared
here.
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
SConscript
14
'_GDI32_', # prevent wgl* being
declared
__declspec(dllimport)
19
# prevent _glapi_* from being
declared
__declspec(dllimport)
Completed in 262 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>