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
2980
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/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-noreturn.c
9
} // expected-warning {{function
declared
'noreturn' should not return}}
20
return; // expected-warning {{function 'f3'
declared
'noreturn' should not return}}
27
return; // expected-error {{function 'f4'
declared
'noreturn' should not return}}
/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}}
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
...]
implicit-virtual-member-functions.cpp
9
void operator delete (void *, int); // expected-note {{'operator delete'
declared
here}}
17
void operator delete(void *, int); // expected-note {{'operator delete'
declared
here}}
23
void operator delete(void *, int); // expected-note {{'operator delete'
declared
here}}
struct-class-redecl.cpp
4
typedef struct X * X_t; // expected-warning{{previously
declared
}}
8
template<class U> class Y { }; // expected-warning{{previously
declared
}}
12
struct A; // expected-warning{{struct 'A' was previously
declared
as a class}}
17
struct B; // expected-warning{{struct 'B' was previously
declared
as a class}}
18
struct B {}; // expected-warning{{'B' defined as a struct here but previously
declared
as a class}}
21
struct C; // expected-warning{{struct 'C' was previously
declared
as a class}}\
24
class C; // expected-warning{{class 'C' was previously
declared
as a struct}}\
26
struct C; // expected-warning{{struct 'C' was previously
declared
as a class}}\
28
class C {}; // expected-warning{{'C' defined as a class here but previously
declared
as a struct}}
34
class D; // expected-warning{{class 'D' was previously
declared
as a struct}}
[
all
...]
/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'}}
/external/clang/test/ASTMerge/
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]'
/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'}}
/external/clang/test/SemaObjC/
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
}}
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}}
duplicate-property-class-extension.m
6
@property (readwrite) char bar; // expected-note {{property
declared
here}}
10
@property (readwrite) char foo; // expected-note 2 {{property
declared
here}}
11
@property (readwrite) char NewProperty; // expected-note 2 {{property
declared
here}}
/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}}
/external/libsepol/tests/policies/test-linker/
module2.conf
20
#add types to role
declared
in base test
27
# attr a added to in base optional,
declared
/added to in module, added to in other module
30
# attr a added to in base optional,
declared
/added in module optional, added to in other module
/external/bison/darwin-lib/
config.h
351
/* Define if the copysignf function is
declared
in <math.h> and available in
355
/* Define if the copysignl function is
declared
in <math.h> and available in
359
/* Define if the copysign function is
declared
in <math.h> and available in
694
/* Define to 1 if acosf is
declared
even after undefining macros. */
697
/* Define to 1 if acosl is
declared
even after undefining macros. */
700
/* Define to 1 if asinf is
declared
even after undefining macros. */
703
/* Define to 1 if asinl is
declared
even after undefining macros. */
706
/* Define to 1 if atanf is
declared
even after undefining macros. */
709
/* Define to 1 if atanl is
declared
even after undefining macros. */
712
/* Define to 1 if atoll is
declared
even after undefining macros. *
[
all
...]
Completed in 1540 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>