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
3935
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/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}
/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/Parser/
cxx0x-rvalue-reference.cpp
7
int & &&ar = a; // expected-error{{'ar'
declared
as a reference to a reference}}
/external/clang/test/Sema/
attr-availability-ios.c
3
void f0(int) __attribute__((availability(ios,introduced=2.0,deprecated=2.1))); // expected-note {{'f0'
declared
here}}
5
void f2(int) __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{'f2'
declared
here}}
9
void f5(int) __attribute__((availability(ios,introduced=2.0))) __attribute__((availability(ios,deprecated=3.0))); // expected-note {{'f5'
declared
here}}
11
void f6(int) __attribute__((availability(ios,introduced=2.0))); // expected-note {{'f6'
declared
here}}
attr-deprecated-message.c
4
typedef int INT1 __attribute__((deprecated("Please avoid INT1"))); // expected-note 3 {{'INT1'
declared
here}}
15
INT1 f1(void) __attribute__ ((deprecated("Please avoid f1"))); // expected-note {{'f1'
declared
here}}
18
typedef enum {red, green, blue} Color __attribute__((deprecated("Please avoid Color"))); // expected-note {{'Color'
declared
here}}
24
int g2 __attribute__ ((deprecated("Please avoid g2"))); // expected-note {{'g2'
declared
here}}
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}}
/external/clang/test/SemaCXX/
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/SemaObjC/
class-extension-after-implementation.m
6
@implementation A @end // expected-note {{class implementation is
declared
here}}
duplicate-property.m
6
@property (nonatomic, retain) id x; // expected-note{{property
declared
here}}
objc-container-subscripting-3.m
5
- (int)objectAtIndexedSubscript:(int)index; // expected-note {{method 'objectAtIndexedSubscript:'
declared
here}}
6
- (void)setObject:(int)object atIndexedSubscript:(int)index; // expected-note {{parameter of type 'int' is
declared
here}}
10
- (int)objectForKeyedSubscript:(id)key; // expected-note {{method 'objectForKeyedSubscript:'
declared
here}}
11
- (void)setObject:(int)object forKeyedSubscript:(id)key; // expected-note {{parameter of type 'int' is
declared
here}}
/external/clang/test/SemaOpenCL/
invalid-kernel.cl
3
kernel void no_ptrptr(global int **i) { } // expected-error{{kernel parameter cannot be
declared
as a pointer to a pointer}}
/external/clang/test/SemaTemplate/
missing-class-keyword-crash.cpp
4
// expected-note{{template parameter is
declared
here}}
rdar9173693.cpp
5
template< bool > struct assert_arg_pred_impl { }; // expected-note 3 {{
declared
here}}
temp_arg_type.cpp
2
template<typename T> class A; // expected-note 2 {{template parameter is
declared
here}} expected-note{{template is
declared
here}}
20
template<typename T> class B {}; // expected-note{{template is
declared
here}}
30
struct { int x; } Unnamed; // expected-note{{unnamed type used in template argument was
declared
here}}
/external/llvm/test/Verifier/
2002-04-13-RetTypes.ll
4
;
declared
return type of the function they live in.
Completed in 1083 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>