OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:declared
(Results
126 - 150
of
3775
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/ASTMerge/
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
10
// expected-note@Inputs/typo.hpp:5{{'boost::graph::adjacency_list'
declared
here}}
14
// expected-note@Inputs/typo.hpp:2{{'boost::function'
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}}
ms_abi-sysv_abi.c
11
void __attribute__((sysv_abi)) foo4(void); // expected-error{{function
declared
'cdecl' here was previously
declared
'ms_abi'}}
/external/clang/test/SemaCXX/
access.cpp
4
struct S; // expected-note {{previously
declared
'private' here}}
11
class C; // expected-note {{previously
declared
'public' here}}
19
template<typename T> struct A; // expected-note {{previously
declared
'protected' here}}
29
class X; // expected-note {{previously
declared
'private' here}} \
46
static constexpr I x = 0; // expected-note {{implicitly
declared
private here}}
47
static constexpr I y = 42; // expected-note {{implicitly
declared
private here}}
76
typedef int I; // expected-note {{implicitly
declared
private here}}
77
static constexpr I x = 0; // expected-note {{implicitly
declared
private here}}
attr-cleanup.cpp
8
static void c2(int *a) {} // expected-note {{implicitly
declared
private here}} expected-note {{implicitly
declared
private here}}
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/clang/test/SemaObjC/
custom-atomic-property.m
4
@property (assign) Foo *myProp; // expected-note {{property
declared
here}} expected-note {{property
declared
here}}
error-outof-scope-property-use.m
5
@class NSMutableDictionary; // expected-note {{receiver is instance of class
declared
here}}
9
@property (nonatomic,retain) NSMutableDictionary *uuids_jobs; // expected-note {{'_uuids_jobs'
declared
here}}
gcc-cast-ext.m
8
+ alloc; // expected-note {{method 'alloc'
declared
here}}
9
- autorelease; // expected-note {{method 'autorelease'
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'}}
/external/clang/test/SemaObjCXX/
ivar-construct.mm
6
~Y(); // expected-note 3{{
declared
private here}}
32
template<typename T> struct Incomplete; // expected-note{{
declared
here}}
/external/clang/test/SemaTemplate/
overloaded-functions.cpp
10
// expected-error@-1 {{'arr'
declared
as an array with a negative size}}
25
// expected-error@-1 {{'arr'
declared
as an array with a negative size}}
/external/mesa3d/src/gallium/state_trackers/wgl/
SConscript
14
'_GDI32_', # prevent wgl* being
declared
__declspec(dllimport)
19
# prevent _glapi_* from being
declared
__declspec(dllimport)
/external/valgrind/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/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}}
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p12.cpp
36
void immediately_enclosing(int i) { // expected-note{{'i'
declared
here}}
50
void f1(int i) { // expected-note{{
declared
here}}
64
void work(int n) { // expected-note{{
declared
here}}
66
int j = 40; // expected-note{{
declared
here}}
/external/clang/test/CXX/expr/expr.unary/expr.new/
p20-0x.cpp
8
static void operator delete(void*, size_t); // expected-note{{
declared
here}}
/external/clang/test/CXX/special/class.ctor/
p4-0x.cpp
3
// A constructor shall not be
declared
with a ref-qualifier.
Completed in 257 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>