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
2980
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/SemaObjC/
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}}
custom-atomic-property.m
4
@property (assign) Foo *myProp; // expected-note {{property
declared
here}} expected-note {{property
declared
here}}
property-and-class-extension.m
16
int Property; // expected-note {{previously
declared
'Property' here}}
34
@synthesize Property; // expected-error {{property 'Property' attempting to use instance variable 'Property'
declared
in super class 'Super'}}
property-ivar-mismatch.m
6
char ivar; // expected-note{{instance variable is
declared
here}}
18
void * _P; // expected-note {{instance variable is
declared
here}}
return.m
17
void test3(int a) { // expected-warning {{function 'test3' could be
declared
with attribute 'noreturn'}}
47
- (void)method { // expected-warning{{method 'method' could be
declared
with attribute 'noreturn'}}
unimplemented-protocol-prop.m
5
@property float MyProperty0; // expected-note 2 {{property
declared
}}
10
@property float MyProperty; // expected-note 2 {{property
declared
}}
warn-protocol-method-deprecated.m
6
- (void)deprecatedProtocolMethod __attribute__((deprecated)); // expected-note 2 {{method 'deprecatedProtocolMethod'
declared
here}}
14
- (void)deprecatedInstanceMethod __attribute__((deprecated)); // expected-note {{method 'deprecatedInstanceMethod'
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}}
ivar-construct.mm
6
~Y(); // expected-note 3{{
declared
private here}}
32
template<typename T> struct Incomplete; // expected-note{{
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
...]
/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/clang/test/ASTMerge/
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/basic/basic.lookup/basic.lookup.elab/
p2.cpp
9
typedef int A; // expected-note {{
declared
here}}
18
template <class> class A; // expected-note {{
declared
here}}
/external/clang/test/PCH/
typo.cpp
2
// In header: expected-note{{'boost::function'
declared
here}}
5
// In header: expected-note{{'boost::graph::adjacency_list'
declared
here}}
/external/clang/test/Sema/
attr-regparm.c
11
void __attribute__((regparm(2))) x5(int); // expected-error{{function
declared
with regparm(2) attribute was previously
declared
with the regparm(3) attribute}}
/external/clang/test/SemaCXX/
nested-name-spec-locations.cpp
27
* // expected-error{{
declared
as a pointer to a reference of type}}
37
* // expected-error{{
declared
as a pointer to a reference of type}}
83
* // expected-error{{
declared
as a pointer to a reference of type}}
92
* // expected-error{{
declared
as a pointer to a reference of type}}
108
* // expected-error{{
declared
as a pointer to a reference of type}}
117
* // expected-error{{
declared
as a pointer to a reference of type}}
126
* // expected-error{{
declared
as a pointer to a reference of type}}
142
* // expected-error{{
declared
as a pointer to a reference of type}}
virtual-member-functions-key-function.cpp
8
void operator delete(void *, int); // expected-note {{'operator delete'
declared
here}}
12
void operator delete(void *, int); // expected-note {{'operator delete'
declared
here}}
/external/valgrind/main/drd/tests/
tc01_simple_race.stderr.exp
5
declared
at tc01_simple_race.c:9
10
declared
at tc01_simple_race.c:9
tc16_byterace.stderr.exp
5
a global variable
declared
at tc16_byterace.c:7
10
a global variable
declared
at tc16_byterace.c:7
/dalvik/dx/tests/081-dex-throws-list/
info.txt
2
throws lists (that is, list of
declared
exceptions on methods) get
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p10.cpp
8
void f(int a); // expected-note{{'f'
declared
here}}
/external/clang/test/CXX/except/except.spec/
p4.cpp
13
S::~S() noexcept {} // expected-warning {{function previously
declared
with an implicit exception specification redeclared with an explicit exception specification}}
14
void S::operator delete(void*) noexcept {} // expected-warning {{function previously
declared
with an implicit exception specification redeclared with an explicit exception specification}}
23
T::~T() {} // expected-warning {{function previously
declared
with an explicit exception specification redeclared with an implicit exception specification}}
24
void T::operator delete(void*) {} // expected-warning {{function previously
declared
with an explicit exception specification redeclared with an implicit exception specification}}
Completed in 432 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>