OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ivar
(Results
1 - 25
of
144
) sorted by null
1
2
3
4
5
6
/external/clang/test/SemaObjC/
interface-layout-2.m
4
int
ivar
;
9
- (int)
ivar
;
13
- (int)
ivar
{
14
return
ivar
;
property-ivar-mismatch.m
2
// Test that arithmatic types on property and its
ivar
have exact match.
6
char
ivar
; // expected-note{{
ivar
is declared here}}
12
@synthesize prop =
ivar
; // expected-error {{type of property 'prop' ('int') does not match type of
ivar
'
ivar
' ('char')}}
direct-synthesized-ivar-access.m
7
@property int
IVAR
; // expected-note {{property declared here}}
12
- (int) Meth { return
IVAR
; } // expected-warning {{direct access of synthesized
ivar
by using property access '
IVAR
'}}
13
- (int) OK { return self.
IVAR
; }
conflicting-ivar-test-1.m
6
int
IVAR
; // expected-note {{previous definition is here}}
14
int XIVAR; // expected-error {{conflicting instance variable names: 'XIVAR' vs '
IVAR
'}}
23
int
IVAR
;
32
int
IVAR
;
40
int
IVAR
;
48
int
IVAR
;
57
int
IVAR
; // expected-note {{previous definition is here}}
65
short
IVAR
; // expected-error {{instance variable '
IVAR
' has conflicting type: 'short' vs 'int'}}
73
short
IVAR
;
[
all
...]
duplicate-ivar-in-class-extension.m
12
int
ivar
; // expected-error {{duplicate member '
ivar
'}}
19
int
ivar
; // expected-note {{previous declaration is here}}
30
return self->
ivar
; // would be ambiguous if the duplicate
ivar
were allowed
static-ivar-ref-1.m
7
int
ivar
;
17
return pc->ivar2 + (*pc).
ivar
+ pc->ivar1;
21
// CHECK: int
ivar
;
28
// CHECK: return pc->ivar2 + (*pc).
ivar
+ pc->ivar1;
error-property-gc-attr.m
6
id
IVAR
;
22
@synthesize pweak=
IVAR
; // expected-error {{existing
ivar
'
IVAR
' for __weak property 'pweak' must be __weak}}
23
@synthesize NOT=II; // expected-error {{existing
ivar
'II' for strong property 'NOT' may not be __weak}}
26
@synthesize AWEAK; // expected-error {{existing
ivar
'AWEAK' for strong property 'AWEAK' may not be __weak}}
ivar-lookup.m
20
@interface
Ivar
25
A *
Ivar
;
32
int *ip = [
Ivar
method]; // expected-warning{{warning: incompatible pointer types initializing 'int *' with an expression of type 'float *'}}
ivar-sem-check-2.m
19
@synthesize value1=value; // expected-error {{synthesized properties 'value1' and 'value' both claim
ivar
'value'}}
20
@synthesize prop=value2; // expected-error {{property 'prop' attempting to use
ivar
'value2' declared in super class 'Super'}}
property.m
5
int
IVAR
; // expected-note{{
ivar
is declared here}}
22
@synthesize prop_id =
IVAR
; // expected-error {{type of property 'prop_id' ('id') does not match type of
ivar
'
IVAR
' ('int')}} // expected-error {{property 'prop_id' is already implemented}}
23
@synthesize name; // OK! property with same name as an accessible
ivar
of same name
59
int
ivar
;
62
@property int
ivar
; // OK
DoubleMethod.m
5
int
ivar
;
arc-property.m
21
@synthesize myString; // expected-error {{existing
ivar
'myString' for strong property 'myString' may not be __weak}}
23
@synthesize myString2 = myString2; // expected-error {{existing
ivar
'myString2' for strong property 'myString2' may not be __weak}}
27
@synthesize myString5 = StrongIvar5; // expected-error {{existing
ivar
'StrongIvar5' for __weak property 'myString5' must be __weak}}
44
@synthesize x; // expected-error {{existing
ivar
'x' for __weak property 'x' must be __weak}}
45
@synthesize y; // expected-error {{existing
ivar
'y' for __weak property 'y' must be __weak}}
property-13.m
25
int
ivar
;
36
@synthesize required =
ivar
;
39
- (int) optional_preexisting_setter_getter { return
ivar
; }
42
ivar
= value;
44
- (void) setOptional_getter_attr:(int)value {
ivar
= value; }
/external/clang/test/SemaObjCXX/
ivar-lookup.mm
2
@interface
Ivar
7
A *
Ivar
;
14
int *ip = [
Ivar
method]; // Okay; calls A's method on the instance variable
Ivar
.
15
// Note that Objective-C calls
Ivar
's method.
/external/clang/test/Rewriter/
undef-field-reference-1.m
6
int
IVAR
;
12
return pd->
IVAR
;
rewrite-block-literal-1.mm
10
int
IVAR
;
12
@property int
IVAR
;
20
self.
IVAR
= 0;
25
self.
IVAR
= 0;
28
@dynamic
IVAR
;
ivar-encoding-1.m
5
id
ivar
;
ivar-encoding-2.m
5
id
ivar
;
/external/clang/test/FixIt/
typo-crash.m
5
- (int)method { return
ivar
; } // expected-error{{use of undeclared identifier '
ivar
'}}
/external/clang/test/CodeGenObjC/
objc2-nonfragile-abi-impl.m
12
id
ivar
;
unname-bf-metadata.m
2
// Test that meta-data for
ivar
lists with unnamed bitfield are generated.
autorelease.m
8
id
ivar
;
19
return
ivar
;
debug-info-blocks.m
27
int
ivar
;
43
ivar
= 42 + (int)[d count];
property-aggr-type.m
20
st2
ivar
;
26
@synthesize frame =
ivar
;
/external/clang/test/PCH/
objcxx-ivar-class.mm
2
// RUN: %clang_cc1 -include %S/objcxx-
ivar
-class.h -verify %s -emit-llvm -o - | FileCheck %s
5
// RUN: %clang_cc1 -x objective-c++-header -emit-pch -o %t %S/objcxx-
ivar
-class.h
Completed in 1367 milliseconds
1
2
3
4
5
6