OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:declared
(Results
251 - 275
of
2980
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/valgrind/main/drd/tests/
sem_open.stderr.exp
5
declared
at sem_open.c:25, in frame #? of thread 1
14
declared
at sem_open.c:25, in frame #? of thread 1
/external/valgrind/main/memcheck/tests/
dw4.stderr.exp
12
a global variable
declared
at dw4.c:42
18
declared
at dw4.c:46, in frame #1 of thread 1
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
varinfo5.stderr.exp
18
declared
at varinfo5so.c:38
26
declared
at varinfo5so.c:40
34
a global variable
declared
at varinfo5so.c:42
42
a global variable
declared
at varinfo5so.c:44
50
declared
at varinfo5so.c:49, in frame #1 of thread 1
59
declared
at varinfo5so.c:69, in frame #1 of thread 1
68
declared
at varinfo5so.c:72, in frame #1 of thread 1
77
declared
at varinfo5so.c:67, in frame #1 of thread 1
86
declared
at varinfo5so.c:87, in frame #0 of thread 1
95
a global variable
declared
at varinfo5so.c:8
[
all
...]
varinfo5.stderr.exp-ppc64
18
declared
at varinfo5so.c:38
26
declared
at varinfo5so.c:40
34
a global variable
declared
at varinfo5so.c:42
42
a global variable
declared
at varinfo5so.c:44
50
declared
at varinfo5so.c:49, in frame #1 of thread 1
59
declared
at varinfo5so.c:69, in frame #1 of thread 1
68
declared
at varinfo5so.c:72, in frame #1 of thread 1
77
declared
at varinfo5so.c:67, in frame #1 of thread 1
86
declared
at varinfo5so.c:87, in frame #0 of thread 1
95
a global variable
declared
at varinfo5so.c:8
[
all
...]
/libcore/luni/src/main/java/java/lang/reflect/
GenericDeclaration.java
27
* Returns the
declared
type parameters in declaration order. If there are
30
* @return the
declared
type parameters in declaration order
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
/ndk/sources/host-tools/sed-4.2.1/m4/
unlocked-io.m4
12
dnl Use only those *_unlocked macros or functions that are
declared
13
dnl (because some of them were
declared
in Solaris 2.5.1 but were removed
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p3.cpp
4
auto a = a; // expected-error{{variable 'a'
declared
with 'auto' type cannot appear in its own initializer}}
5
auto *b = b; // expected-error{{variable 'b'
declared
with 'auto' type cannot appear in its own initializer}}
6
const auto c = c; // expected-error{{variable 'c'
declared
with 'auto' type cannot appear in its own initializer}}
7
if (auto d = d) {} // expected-error {{variable 'd'
declared
with 'auto' type cannot appear in its own initializer}}
8
auto e = ({ auto f = e; 0; }); // expected-error {{variable 'e'
declared
with 'auto' type cannot appear in its own initializer}}
/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}}
temp_arg_nontype.cpp
2
template<int N> struct A; // expected-note 5{{template parameter is
declared
here}}
17
template<E Value> struct A1; // expected-note{{template parameter is
declared
here}}
45
template<int fp(int)> struct A3; // expected-note 1{{template parameter is
declared
here}}
57
template<X const &AnX> struct A4; // expected-note 2{{template parameter is
declared
here}}
64
template<int (&fr)(int)> struct A5; // expected-note{{template parameter is
declared
here}}
79
template<int (Z::*pmf)(int)> struct A6; // expected-note{{template parameter is
declared
here}}
85
template<int Z::*pm> struct A7; // expected-note{{template parameter is
declared
here}}
92
template<unsigned char C> struct Overflow; // expected-note{{template parameter is
declared
here}}
99
template<unsigned> struct Signedness; // expected-note{{template parameter is
declared
here}}
103
template<signed char C> struct SignedOverflow; // expected-note 3 {{template parameter is
declared
here}
[
all
...]
/external/clang/test/CXX/class.access/class.friend/
p1.cpp
28
// Test that we recurse through namespaces to find already
declared
names, but
29
// new names are
declared
within the enclosing namespace.
74
static void member(); // expected-note 2 {{
declared
private here}}
125
X *getPrev() { return Prev; } // expected-note{{member is
declared
here}}
128
class ilist_node : private ilist_half_node { // expected-note {{
declared
private here}} expected-note {{constrained by private inheritance here}}
131
X *getNext() { return Next; } // expected-note {{
declared
private here}}
152
class A { protected: int x; }; // expected-note {{
declared
protected here}}
238
A(); // expected-note 2 {{
declared
private here}}
261
typedef int I; // expected-note 4 {{
declared
private here}}
262
static const I x = 0; // expected-note {{implicitly
declared
private here}
[
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/CodeGen/
pragma-weak.c
34
#pragma weak param // expected-warning {{weak identifier 'param' never
declared
}}
55
#pragma weak unused // expected-warning {{weak identifier 'unused' never
declared
}}
56
#pragma weak unused_alias = __unused_alias // expected-warning {{weak identifier '__unused_alias' never
declared
}}
58
#pragma weak td // expected-warning {{weak identifier 'td' never
declared
}}
61
#pragma weak td2 = __td2 // expected-warning {{weak identifier '__td2' never
declared
}}
111
// if the SAME ALIAS is already
declared
then it overrides #pragma weak
118
// if the TARGET is previously
declared
then whichever aliasing method
/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/basic/basic.start/basic.start.main/
p2.cpp
47
static int main() { // expected-error {{'main' is not allowed to be
declared
static}}
52
inline int main() { // expected-error {{'main' is not allowed to be
declared
inline}}
76
constexpr int main() { } // expected-error{{'main' is not allowed to be
declared
constexpr}}
/external/clang/test/FixIt/
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/clang/test/Sema/
MicrosoftExtensions.c
90
__declspec(deprecated("This is deprecated")) enum DE1 { one, two } e1; // expected-note {{'e1'
declared
here}}
91
struct __declspec(deprecated) DS1 { int i; float f; }; // expected-note {{
declared
here}}
94
__declspec(deprecated(MY_TEXT)) void Dfunc1( void ) {} // expected-note {{'Dfunc1'
declared
here}}
inline.c
9
static int staticVar; // expected-note + {{'staticVar'
declared
here}}
10
static int staticFunction(); // expected-note + {{'staticFunction'
declared
here}}
11
static struct { int x; } staticStruct; // expected-note + {{'staticStruct'
declared
here}}
/external/clang/test/SemaObjC/
arc-unavailable-for-weakref.m
5
@interface NSOptOut1072 // expected-note {{class is
declared
here}}
8
@interface sub : NSOptOut1072 @end // expected-note 2 {{class is
declared
here}}
59
@property (weak) NSFont *font; // expected-note {{property
declared
here}}
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/gtest/test/
gtest_nc_test.py
70
[r'BarTest.*was not
declared
']),
73
[r'BarTest.*was not
declared
']),
76
[r'BarTest.*not
declared
']),
/packages/providers/CalendarProvider/tests/
AndroidManifest.xml
29
The test
declared
in this instrumentation will be run along with tests
declared
by
31
The "itr" command will find all tests
declared
by all applications. If you want to run just these
/cts/tools/signature-tools/src/signature/model/
IMethod.java
29
* If the
declared
return type is {@code void}
Completed in 837 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>