OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:declared
(Results
51 - 75
of
3775
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/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/SemaCXX/
anonymous-union.cpp
12
union { // expected-warning{{anonymous types
declared
in an anonymous union are an extension}}
42
void X::test_unqual_references_const() const { // expected-note 2{{member function 'X::test_unqual_references_const' is
declared
const here}}
49
// expected-note@-1 2{{variable 'xc'
declared
const here}}
78
union { // expected-error{{anonymous unions at namespace or global scope must be
declared
'static'}}
108
struct X { }; // expected-error {{types cannot be
declared
in an anonymous union}}
109
struct { int x; int y; } y; // expected-warning{{anonymous types
declared
in an anonymous union are an extension}}
111
void f(); // expected-error{{functions cannot be
declared
in an anonymous union}}
134
int s0; // expected-note {{
declared
private here}}
135
double s1; // expected-note {{
declared
private here}}
136
union { // expected-warning{{anonymous types
declared
in an anonymous struct are an extension}
[
all
...]
pr13394-crash-on-invalid.cpp
11
struct closure_t { // expected-note {{'closure_t'
declared
here}} expected-note {{'gatekeeper_factory_v1::closure_t'
declared
here}}
21
void Bar() {} // expected-note{{'Bar'
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
}}
18
struct A; // expected-warning{{struct 'A' was previously
declared
as a class}}
23
struct B; // expected-warning{{struct 'B' was previously
declared
as a class}}
24
struct B {}; // expected-warning{{'B' defined as a struct here but previously
declared
as a class}}
27
struct C; // expected-warning{{struct 'C' was previously
declared
as a class}}\
30
class C; // expected-warning{{class 'C' was previously
declared
as a struct}}\
32
struct C; // expected-warning{{struct 'C' was previously
declared
as a class}}\
34
class C {}; // expected-warning{{'C' defined as a class here but previously
declared
as a struct}}
40
class D; // expected-warning{{class 'D' was previously
declared
as a struct}}
[
all
...]
cxx1y-sized-deallocation.cpp
4
void operator delete(void *, size_t) noexcept; // expected-note {{'operator delete'
declared
here}}
8
// OK, implicitly
declared
.
err_typecheck_assign_const.cpp
3
const int global = 5; // expected-note{{variable 'global'
declared
const here}}
9
const int local = 5; // expected-note{{variable 'local'
declared
const here}}
13
void test2 (const int parameter) { // expected-note{{variable 'parameter'
declared
const here}}
19
const int const_field = 1; // expected-note 2{{non-static data member 'const_field'
declared
const here}}
20
static const int static_const_field = 1; // expected-note 2{{variable 'static_const_field'
declared
const here}}
25
void test_const() const { // expected-note 2{{member function 'test3::test_const' is
declared
const here}}
32
const int &return_const_ref(); // expected-note{{function 'return_const_ref' which returns const-qualified type 'const int &'
declared
here}}
40
const int const_field = 4; // expected-note {{non-static data member 'const_field'
declared
const here}}
58
const U2 u2 = U2(); // expected-note{{non-static data member 'u2'
declared
const here}}
80
const C &getc(); // expected-note{{function 'getc' which returns const-qualified type 'const C &'
declared
here}
[
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/clang/test/Sema/
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/SemaObjC/
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}}
warn-explicit-call-initialize.m
5
+ (void)initialize; // expected-note 2 {{method 'initialize'
declared
here}}
9
+ (void)initialize; // expected-note {{method 'initialize'
declared
here}}
21
+ (void)SomeRandomMethod { // expected-note {{method 'SomeRandomMethod'
declared
here}}
method-undefined-warn-1.m
6
- (int) int_meth; // expected-note {{method 'int_meth'
declared
here}}
7
+ (int) cls_meth; // expected-note {{method 'cls_meth'
declared
here}}
8
+ (void) cls_meth1 : (int) arg1; // expected-note {{method 'cls_meth1:'
declared
here}}
22
- (int) int_meth; // expected-note {{method 'int_meth'
declared
here}}
23
+ (int) cls_meth; // expected-note {{method 'cls_meth'
declared
here}}
24
+ (void) cls_meth1 : (int) arg1; // expected-note {{method 'cls_meth1:'
declared
here}}
ivar-sem-check-2.m
4
id value2; // expected-note {{previously
declared
'value2' here}}
20
@synthesize prop=value2; // expected-error {{property 'prop' attempting to use instance variable 'value2'
declared
in super class 'Super'}}
method-undef-extension-warn-1.m
8
- (void)Pmeth1; // expected-note {{method 'Pmeth1'
declared
here}}
13
- (void)meth2; // expected-note {{method 'meth2'
declared
here}}
method-warn-unused-attribute.m
12
[a fee]; // expected-warning {{ignoring return value of function
declared
with warn_unused_result attribute}}
13
[INTF c]; // expected-warning {{ignoring return value of function
declared
with warn_unused_result attribute}}
property-ns-returns-not-retained-attr.m
10
@property (nonatomic, retain) id newName2 __attribute__((ns_returns_not_retained)); // expected-note {{roperty
declared
here}}
11
- (id) newName2; // expected-warning {{property
declared
as returning non-retained objects; getter returning retained objects}}
undef-arg-super-method-call.m
15
+ (void)addViewLayerInfo:(id)aView; // expected-note {{'aView'
declared
here}}
19
- (void)addInstViewLayerInfo:(id)aView; // expected-note {{'aView'
declared
here}}
warn-implicit-atomic-property.m
7
@property (readwrite) int P2; // expected-note {{property
declared
here}}
8
@property int P3; // expected-note {{property
declared
here}}
/external/selinux/libsepol/tests/policies/test-linker/
module2.conf
21
#add types to role
declared
in base test
30
# attr a added to in base optional,
declared
/added to in module, added to in other module
33
# 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
...]
/external/bison/linux-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
...]
/external/clang/test/ASTMerge/
class-template.cpp
5
// CHECK: class-template1.cpp:7:14: error: non-type template parameter
declared
with incompatible types in different translation units ('int' vs. 'long')
6
// CHECK: class-template2.cpp:7:15: note:
declared
here with type 'long'
9
// CHECK: class-template2.cpp:10:10: note: template parameter
declared
here
11
// CHECK: class-template1.cpp:16:23: error: non-type template parameter
declared
with incompatible types in different translation units ('long' vs. 'int')
12
// CHECK: class-template2.cpp:16:23: note:
declared
here with type 'int'
15
// CHECK: class-template2.cpp:19:10: note: template parameter
declared
here
17
// CHECK: class-template2.cpp:25:20: error: external variable 'x0r'
declared
with incompatible types in different translation units ('X0<double> *' vs. 'X0<float> *')
18
// CHECK: class-template1.cpp:24:19: note:
declared
here with type 'X0<float> *'
/external/clang/test/CXX/class/class.nested.type/
p1.cpp
5
typedef int I; // expected-note{{'X::I'
declared
here}}
6
class Y { }; // expected-note{{'X::Y'
declared
here}}
/external/clang/test/CXX/expr/expr.unary/expr.new/
p17.cpp
4
ctor(); // expected-note{{implicitly
declared
private here}}
8
~dtor(); // expected-note 3 {{implicitly
declared
private here}}
/external/clang/test/CXX/special/class.dtor/
p3.cpp
7
A::~A() noexcept {} // expected-warning {{previously
declared
with an implicit exception specification}}
10
B::~B() {} // expected-warning {{previously
declared
with an explicit exception specification}}
/external/clang/test/CXX/temp/temp.param/
p5.cpp
5
int &&r = I; // expected-warning 2{{binding reference member 'r' to a temporary value}} expected-note 2{{
declared
here}}
11
int &&r = v; // expected-warning {{binding reference member 'r' to a temporary value}} expected-note {{
declared
here}}
Completed in 1088 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>