OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:declared
(Results
76 - 100
of
3775
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/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/clang/test/SemaTemplate/
function-template-specialization-noreturn.cpp
8
template <> void f3<1>() { } // expected-warning {{function
declared
'noreturn' should not return}}
18
void A<0>::foo() {} // expected-warning{{function
declared
'noreturn' should not return}}
/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/clang/test/SemaObjC/
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
...]
class-extension-after-implementation.m
6
@implementation A @end // expected-note {{class implementation is
declared
here}}
default-synthesize-3.m
7
@interface NoAuto // expected-note 2 {{class with specified objc_requires_property_definitions attribute is
declared
here}}
8
@property int NoAutoProp; // expected-note 2 {{property
declared
here}}
16
@interface Sub : NoAuto // expected-note 3 {{class with specified objc_requires_property_definitions attribute is
declared
here}}
17
@property (copy) id SubProperty; // expected-note 2 {{property
declared
here}}
27
@property (copy) id DeepMustSynthProperty; // expected-note {{property
declared
here}}
46
@property (readonly) char isFoo; // expected-note {{property
declared
here}}
47
@property (readonly) char isNotFree; // expected-note {{property
declared
here}}
93
@property (readonly) id prop; // expected-note {{property
declared
here}}
94
@property (readonly) id prop1; // expected-note {{property
declared
here}}
95
@property (readonly) id prop2; // expected-note {{property
declared
here}
[
all
...]
duplicate-property.m
6
@property (nonatomic, retain) id x; // expected-note{{property
declared
here}}
/external/clang/test/SemaCXX/
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 morebar() { return false; } // expected-note{{'morebar'
declared
here}}
25
void Check() { // expected-note{{'Check'
declared
here}
[
all
...]
PR8755.cpp
5
typedef int iterator; // expected-note{{
declared
here}}
array-bounds-system-header.cpp
5
char a[3]; // expected-note 2 {{
declared
here}}
unknown-anytype-blocks.cpp
8
auto ret2 = bar(); // expected-error {{'bar' has unknown return type; cast the call to its
declared
return type}}
warn-unused-variables-error.cpp
4
template<typename T> class X; // expected-note{{template is
declared
here}}
/external/clang/test/CXX/class.access/class.access.base/
p1.cpp
4
// If a class is
declared
to be a base class for another class using
12
protected: int prot; static int sprot; // expected-note 4 {{
declared
protected here}}
13
private: int priv; static int spriv; // expected-note 8 {{
declared
private here}}
52
// If a class is
declared
to be a base class for another class using
57
class Base { // expected-note 6{{member is
declared
here}}
59
int pub; // expected-note{{member is
declared
here}}
60
static int spub; // expected-note{{member is
declared
here}}
61
protected: int prot; static int sprot; // expected-note 4 {{
declared
protected here}}
62
private: int priv; static int spriv; // expected-note 8 {{
declared
private here}}
65
class Test : protected Base { // expected-note 6 {{
declared
protected here}} expected-note 8 {{constrained by protected inheritance here}
[
all
...]
/cts/tools/dex-tools/src/dex/structure/
DexClass.java
41
* Returns a list containing all fields
declared
by this {@code DexClass}.
43
* @return a list containing all fields
declared
by this {@code DexClass}
48
* Returns a list containing all methods
declared
by this {@code DexClass}.
50
* @return a list containing all methods
declared
by this {@code DexClass}
/development/samples/browseable/RuntimePermissions/
_index.jd
11
that is
declared
with optional, M and above only permissions.
/external/clang/test/CXX/class/class.local/
p2.cpp
6
struct B : private A {}; // expected-note{{
declared
private here}}
/external/clang/test/CXX/class/class.mem/
p1b.cpp
15
void a2(B b = B()); // expected-error{{use of default argument to function 'B' that is
declared
later in class 'B'}}
24
B(int b = 42) { // expected-note{{default argument
declared
here}}
30
void b1(A a = A()); // expected-error{{use of default argument to function 'A' that is
declared
later in class 'A'}}
42
A(int a = 42); // expected-note{{default argument
declared
here}}
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
p3.cpp
13
// been
declared
inline.
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p9.cpp
5
extern S f(); // expected-note {{'f'
declared
here}}
/external/clang/test/PCH/
typo2.cpp
12
// expected-note@7{{'Test'
declared
here}}
/external/clang/test/Sema/
return-noreturn.c
4
void test1() { // expected-warning {{function 'test1' 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.
uninit-variables-vectors.c
9
__m128 x, y, z, w, X; // expected-note {{variable 'x' is
declared
here}} expected-note {{variable 'y' is
declared
here}} expected-note {{variable 'w' is
declared
here}} expected-note {{variable 'z' is
declared
here}}
varargs.cpp
4
void f(const string& s, ...) { // expected-note {{parameter of type 'const string &' is
declared
here}}
warn-main.c
11
// expected-warning@+1 {{'main' should not be
declared
static}}
18
// expected-error@+1 {{'main' is not allowed to be
declared
inline}}
24
// expected-warning@+5 {{function 'main'
declared
'noreturn' should not return}}
25
// expected-warning@+2 {{'main' is not allowed to be
declared
_Noreturn}}
Completed in 1692 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>