OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:declared
(Results
326 - 350
of
3775
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/clang/test/Parser/
cxx11-templates.cpp
12
template<typename ...T> void f(T t..., int n); // expected-error {{must immediately precede
declared
identifier}}
13
template<typename ...T> void f(int n, T t...); // expected-error {{must immediately precede
declared
identifier}}
18
t // expected-note {{place '...' immediately before
declared
identifier to declare a function parameter pack}}
31
void f(T t...); // expected-error {{must immediately precede
declared
identifier}}
43
// expected-note@-2 {{place '...' immediately before
declared
identifier}}
recovery.cpp
59
// expected-note {{'Uuuu'
declared
here}}
141
const int V1 = 1; // expected-note {{
declared
here}}
144
enum E1 { V2 = 2 }; // expected-note {{
declared
here}}
145
static const int V3 = 3; // expected-note {{
declared
here}}
148
V4 = 4, // expected-note {{
declared
here}}
149
V6 // expected-note {{
declared
here}}
151
enum class EC3 { V0 = 0, V5 = 5 }; // expected-note {{
declared
here}}
184
static int n; // expected-note{{
declared
here}}
185
int nn; // expected-note 2 {{
declared
here}}
/external/clang/test/SemaTemplate/
nested-name-spec-template.cpp
105
void nt() // expected-note{{function template 'nt'
declared
here}}
110
void f(T*); // expected-note{{function template 'f'
declared
here}}
113
void f(T*, T*); // expected-note{{function template 'f'
declared
here}}
120
template<typename T> void f(); // expected-note{{function template 'f'
declared
here}}
133
struct s; // expected-note{{template is
declared
here}}
/external/valgrind/memcheck/tests/
varinfo1.stderr.exp
12
declared
at varinfo1.c:35
18
declared
at varinfo1.c:37
24
a global variable
declared
at varinfo1.c:39
30
a global variable
declared
at varinfo1.c:41
36
declared
at varinfo1.c:46, in frame #1 of thread 1
varinfo1.stderr.exp-ppc64
12
declared
at varinfo1.c:35
18
declared
at varinfo1.c:37
24
a global variable
declared
at varinfo1.c:39
30
a global variable
declared
at varinfo1.c:41
36
declared
at varinfo1.c:46, in frame #1 of thread 1
/external/clang/test/SemaObjC/
property-deprecated-warning.m
9
@property(nonatomic,assign) id ptarget __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{property 'ptarget' is
declared
deprecated here}} expected-note {{'ptarget' has been explicitly marked deprecated here}}
12
// expected-note@+2 {{property 'partialPtarget' is
declared
partial here}} expected-note@+2 {{'partialPtarget' has been explicitly marked partial here}}
24
@property(nonatomic,assign) id target __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{property 'target' is
declared
deprecated here}} expected-note {{'setTarget:' has been explicitly marked deprecated here}}
27
// expected-note@+2 {{property 'partialTarget' is
declared
partial here}} expected-note@+2 {{'setPartialTarget:' has been explicitly marked partial here}}
39
// expected-note 4 {{property 'dep_target' is
declared
deprecated here}} \
43
// expected-note@+2 4 {{property 'partial_dep_target' is
declared
partial here}} expected-note@+2 2 {{'partial_dep_target' has been explicitly marked partial here}} expected-note@+2 2 {{'setPartial_dep_target:' has been explicitly marked partial here}}
98
@property(getter=isEnabled,assign) BOOL enabled __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{'isEnabled' has been explicitly marked deprecated here}} expected-note {{property 'enabled' is
declared
deprecated here}}
100
@property(setter=setNewDelegate:,assign) id delegate __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{'setNewDelegate:' has been explicitly marked deprecated here}} expected-note {{property 'delegate' is
declared
deprecated here}}
103
// expected-note@+2 {{property 'partialEnabled' is
declared
partial here}} expected-note@+2 {{'partialIsEnabled' has been explicitly marked partial here}}
108
// expected-note@+2 {{property 'partialDelegate' is
declared
partial here}} expected-note@+2 {{'partialSetNewDelegate:' has been explicitly marked partial here (…)
[
all
...]
property-typecheck-1.m
4
-(float) x; // expected-note {{
declared
here}}
41
- (SSyncSet_iDisk*) syncSet; // expected-note {{
declared
here}}
79
- (NSMutableArray*) pieces; // expected-note 2 {{
declared
here}}
/external/clang/test/SemaObjCXX/
instancetype.mm
10
- (instancetype)self; // expected-note {{explicitly
declared
'instancetype'}}
28
@interface Subclass1 : Root // expected-note 4 {{receiver is instance of class
declared
here}}
127
- (Subclass4 *)methodInProto2; // expected-warning{{method is expected to return an instance of its class type 'Subclass3', but is
declared
to return 'Subclass4 *'}}
132
- (Subclass3 *)init; // expected-warning{{method is expected to return an instance of its class type 'Subclass4', but is
declared
to return 'Subclass3 *'}}
141
- (int)otherMethodInProto2; // expected-warning{{protocol method is expected to return an instance of the implementing class, but is
declared
to return 'int'}}
151
- (Subclass3 *)self { return 0; } // expected-warning{{method is expected to return an instance of its class type 'Subclass4', but is
declared
to return 'Subclass3 *'}}
167
- (instancetype)initSubclass2 { // expected-note {{explicitly
declared
'instancetype'}}
193
- (instancetype) foo; // expected-note {{current method is explicitly
declared
'instancetype' and is expected to return an instance of its class type}}
196
- (instancetype) bar; // expected-note {{current method is explicitly
declared
'instancetype' and is expected to return an instance of its class type}}
213
- (float) baz { // expected-warning {{method is expected to return an instance of its class type 'A4', but is
declared
to return 'float'}} expected-warning {{conflicting return type in implementation}
[
all
...]
/external/deqp/data/gles2/shaders/
linkage.test
1
# not
declared
in vertex shader,
declared
in fragment shader
3
desc "varying
declared
in fragment shader, no reference in vertex shader"
24
#
declared
in vertex shader, no reference in frag shader
26
desc "varying
declared
in vertex shader, no reference in fragment shader"
43
#
declared
in vertex shader,
declared
in frag shader
45
desc "varying
declared
in both vertex and fragment shader, but not used"
63
#
declared
in vertex shader, static use in frag shader
65
desc "varying
declared
in both shaders, statically used in fragment shader
[
all
...]
/external/clang/test/CXX/class.access/class.protected/
p1.cpp
5
protected: int x; // expected-note 3 {{
declared
}} \
6
// expected-note {{member is
declared
here}}
7
static int sx; // expected-note 3 {{
declared
}} \
8
// expected-note {{member is
declared
here}}
12
class C : protected A { // expected-note {{
declared
}}
106
protected: int x; //expected-note {{
declared
protected}} // expected-note {{can only access this member on an object of type}}
141
protected: int x; // expected-note 2{{
declared
protected here}} expected-note{{member is
declared
here}}
142
static int sx; // expected-note 3{{member is
declared
here}}
148
class C : protected A { // expected-note 4 {{constrained}} expected-note 3 {{
declared
}}
[
all
...]
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.memdef/
p3.cpp
4
// Every name first
declared
in a namespace is a member of that namespace. If
42
// determine whether the entity has been previously
declared
shall not
70
// Friends
declared
as template-ids aren't subject to the restriction
78
static void foo(); // expected-note 2 {{
declared
private here}}
100
static void foo(); // expected-note {{implicitly
declared
private here}}
160
// ns1::A appears as if
declared
in test7c according to [namespace.udir]p2.
164
static void foo(); // expected-note {{implicitly
declared
private here}}
/external/clang/test/CodeGen/
pragma-weak.c
32
#pragma weak param // expected-warning {{weak identifier 'param' never
declared
}}
53
#pragma weak unused // expected-warning {{weak identifier 'unused' never
declared
}}
54
#pragma weak unused_alias = __unused_alias // expected-warning {{weak identifier '__unused_alias' never
declared
}}
56
#pragma weak td // expected-warning {{weak identifier 'td' never
declared
}}
59
#pragma weak td2 = __td2 // expected-warning {{weak identifier '__td2' never
declared
}}
109
// if the SAME ALIAS is already
declared
then it overrides #pragma weak
116
// if the TARGET is previously
declared
then whichever aliasing method
/bionic/tests/
fortify_compilation_test.cpp
170
// GCC: error: call to '__fgets_too_small_error'
declared
with attribute error: fgets called with size less than zero
175
// GCC: error: call to '__fgets_too_big_error'
declared
with attribute error: fgets called with size bigger than buffer
185
// GCC: error: call to '__recvfrom_error'
declared
with attribute error: recvfrom called with size bigger than buffer
192
// GCC: error: call to '__umask_invalid_mode'
declared
with attribute error: umask called with invalid mode
200
// GCC: error: call to '__read_dest_size_error'
declared
with attribute error: read called with size bigger than destination
207
// GCC: error: call to '__creat_missing_mode'
declared
with attribute error: called with O_CREAT, but missing mode
212
// GCC: error: call to '__creat_too_many_args'
declared
with attribute error: too many arguments
220
// GCC: error: call to '__poll_too_small_error'
declared
with attribute error: poll: pollfd array smaller than fd count
229
// GCC: error: call to '__ppoll_too_small_error'
declared
with attribute error: ppoll: pollfd array smaller than fd count
/external/clang/test/FixIt/
fixit-cxx0x.cpp
80
int a(Ts ...(x)); // expected-error {{'...' must immediately precede
declared
identifier}}
81
int b(Ts ...&x); // expected-error {{'...' must immediately precede
declared
identifier}}
106
template<int *ip> struct IP { }; // expected-note{{
declared
here}}
143
template <typename Args...> // expected-error {{'...' must immediately precede
declared
identifier}}
146
template <typename... Args...> // expected-error {{'...' must immediately precede
declared
identifier}}
149
template <template <typename> class Args...> // expected-error {{'...' must immediately precede
declared
identifier}}
152
template <template <typename> class... Args...> // expected-error {{'...' must immediately precede
declared
identifier}}
155
template <int N...> // expected-error {{'...' must immediately precede
declared
identifier}}
158
template <int... N...> // expected-error {{'...' must immediately precede
declared
identifier}}
typo.c
12
struct Point top_left, // expected-note{{'top_left'
declared
here}}
19
struct Rectangle bounds; // expected-note{{'bounds'
declared
here}}
37
typedef struct Rectangle Rectangle; // expected-note{{'Rectangle'
declared
here}}
/external/selinux/secilc/docs/
cil_network_labeling_statements.xml
13
<listitem><para>IP Addresses may be
declared
without a previous declaration by enclosing within parentheses e.g. <literal>(127.0.0.1)</literal> or <literal>(::1)</literal>.</para></listitem>
51
<para>This example declares a named IP address and also passes an 'explicit anonymously
declared
' IP address to a macro:</para>
96
<para>A previously
declared
<literal><link linkend="context">context</link></literal> identifier or an anonymous security context (<literal><link linkend="user">user</link> <link linkend="role">role</link> <link linkend="type">type</link> <link linkend="levelrange">levelrange</link></literal>), the range MUST be defined whether the policy is MLS/MCS enabled or not.</para>
105
<para>A previously
declared
<literal><link linkend="context">context</link></literal> identifier or an anonymous security context (<literal><link linkend="user">user</link> <link linkend="role">role</link> <link linkend="type">type</link> <link linkend="levelrange">levelrange</link></literal>), the range MUST be defined whether the policy is MLS/MCS enabled or not.</para>
126
<para>IP Addresses may be
declared
without a previous declaration by enclosing within parentheses e.g. <literal>(127.0.0.1)</literal> or <literal>(::1)</literal>.</para>
148
<para>A previously
declared
<literal><link linkend="ipaddr">ipaddr</link></literal> identifier, or an anonymous IPv4 or IPv6 formatted address.</para>
156
<para>A previously
declared
<literal><link linkend="ipaddr">ipaddr</link></literal> identifier, or an anonymous IPv4 or IPv6 formatted address.</para>
164
<para>A previously
declared
<literal><link linkend="context">context</link></literal> identifier or an anonymous security context (<literal><link linkend="user">user</link> <link linkend="role">role</link> <link linkend="type">type</link> <link linkend="levelrange">levelrange</link></literal>), the range MUST be defined whether the policy is MLS/MCS enabled or not.</para>
227
<para>A previously
declared
<literal><link linkend="context">context</link></literal> identifier or an anonymous security context (<literal><link linkend="user">user</link> <link linkend="role">role</link> <link linkend="type">type</link> <link linkend="levelrange">levelrange</link></literal>), the range MUST be defined whether the policy is MLS/MCS enabled or not.</para>
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
JDWPMethodTestCase.java
95
int
declared
= reply.getNextValueAsInt();
local
97
MethodInfo[] methodsInfo = new MethodInfo[
declared
];
98
for (int i = 0; i <
declared
; i++) {
/external/bison/m4/
warn-on-use.m4
21
# It is generally safe to assume declarations for functions
declared
28
[Define to 1 if ]m4_defn([gl_decl])[ is
declared
even after
34
AC_CACHE_CHECK([whether $gl_func is
declared
without a macro],
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p3-1y.cpp
6
decltype(auto) a = a; // expected-error{{variable 'a'
declared
with 'auto' type cannot appear in its own initializer}}
7
if (decltype(auto) b = b) {} // expected-error {{variable 'b'
declared
with 'auto' type cannot appear in its own initializer}}
8
decltype(auto) c = ({ decltype(auto) d = c; 0; }); // expected-error {{variable 'c'
declared
with 'auto' type cannot appear in its own initializer}}
/external/clang/test/CXX/temp/temp.res/temp.local/
p6.cpp
3
template<typename T, // expected-note {{
declared
here}}
6
template<typename T> struct Y { // expected-note 15{{
declared
here}}
57
template<typename T> // expected-note {{
declared
here}}
/external/clang/test/CXX/temp/temp.spec/
cxx1y-variable-template-no-body.cpp
7
T pi = T(3.1415926535897932385); // expected-note {{template is
declared
here}}
33
template<> double pi1<double> = 1.5; // expected-error {{variable template specialization of 'pi1' must originally be
declared
in the global scope}}
35
expected-error {{variable template specialization of 'pi1' must originally be
declared
in the global scope}}
/external/clang/test/OpenMP/
parallel_copyin_messages.cpp
10
struct S1; // expected-note {{
declared
here}}
26
S4 &operator =(const S4 &s4); // expected-note {{implicitly
declared
private here}}
33
S5 &operator =(const S5 &s5) { return *this; } // expected-note {{implicitly
declared
private here}}
parallel_sections_copyin_messages.cpp
10
struct S1; // expected-note {{
declared
here}}
28
S4 &operator=(const S4 &s4); // expected-note {{implicitly
declared
private here}}
36
S5 &operator=(const S5 &s5) { return *this; } // expected-note {{implicitly
declared
private here}}
/external/clang/test/SemaCXX/
default1.cpp
24
void j(X x = 17); // expected-note{{'::j'
declared
here}}
54
void jj (int f); // expected-note{{'jj'
declared
here}}
60
void j(int f = 4); // expected-note{{'j'
declared
here}}
/libcore/luni/src/main/java/java/lang/reflect/
AnnotatedElement.java
52
* Returns, for this element, all annotations that are explicitly
declared
53
* (not inherited). If there are no
declared
annotations present, this
56
* @return an array of annotations
declared
for this element
Completed in 1417 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>