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
230
) sorted by null
1
2
3
4
5
6
7
8
9
10
/external/clang/test/SemaObjC/
interface-layout-2.m
5
int
ivar
;
10
- (int)
ivar
;
14
- (int)
ivar
{
15
return
ivar
;
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
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
...]
direct-synthesized-ivar-access.m
9
@property int
IVAR
;
15
- (int) OK { return self.
IVAR
; }
property-ivar-mismatch.m
2
// Test that arithmatic types on property and its
ivar
have exact match.
6
char
ivar
; // expected-note{{instance variable is declared here}}
12
@synthesize prop =
ivar
; // expected-error {{type of property 'prop' ('int') does not match type of instance variable '
ivar
' ('char')}}
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;
no-ivar-access-control.m
9
int
ivar
;
15
return self->
ivar
;
18
return p->
ivar
;
23
return p->
ivar
;
31
return arg->
ivar
;
objc-buffered-methods.m
22
- (int) func { return prop; } // compiles - synthesized
ivar
will be accessible here.
23
- (int)get_g { return global; } // No warning here - synthesized
ivar
will be accessible here.
property-13.m
26
int
ivar
;
37
@synthesize required =
ivar
;
40
- (int) optional_preexisting_setter_getter { return
ivar
; }
43
ivar
= value;
45
- (void) setOptional_getter_attr:(int)value {
ivar
= value; }
property.m
5
int
IVAR
; // expected-note{{instance variable is declared here}}
21
@synthesize prop_id =
IVAR
; // expected-error {{type of property 'prop_id' ('id') does not match type of instance variable '
IVAR
' ('int')}} // expected-error {{property 'prop_id' is already implemented}}
22
@synthesize name; // OK! property with same name as an accessible
ivar
of same name
58
int
ivar
;
61
@property int
ivar
; // OK
/external/clang/test/SemaObjCXX/
ivar-lookup.mm
3
@interface
Ivar
8
A *
Ivar
;
15
int *ip = [
Ivar
method]; // Okay; calls A's method on the instance variable
Ivar
.
16
// Note that Objective-C calls
Ivar
's method.
/external/clang/test/Rewriter/
undef-field-reference-1.m
6
int
IVAR
;
12
return pd->
IVAR
;
ivar-encoding-2.m
5
id
ivar
;
rewrite-block-literal-1.mm
16
int
IVAR
;
18
@property int
IVAR
;
26
self.
IVAR
= 0;
31
self.
IVAR
= 0;
34
@dynamic
IVAR
;
ivar-encoding-1.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/Modules/Inputs/
def.h
7
int
ivar
;
variable
/external/lldb/test/lang/objc/objc-ivar-offsets/
Makefile
3
OBJC_SOURCES := objc-
ivar
-offsets.m main.m
main.m
1
#include "objc-
ivar
-offsets.h"
objc-ivar-offsets.m
1
#import "objc-
ivar
-offsets.h"
/external/clang/test/CodeGenObjC/
arm64-int32-ivar.m
14
// CHECK: [[
IVAR
:%.*]] = load i32* @"OBJC_IVAR_$_I.IVAR2"
15
// CHECK: [[CONV:%.*]] = sext i32 [[
IVAR
]] to i64
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.
/external/lldb/test/lang/objc/objc-ivar-stripped/
TestObjCIvarStripped.py
1
"""Test printing ObjC objects that use unbacked properties - so that the static
ivar
offsets are incorrect."""
11
mydir = os.path.join("lang", "objc", "objc-
ivar
-stripped")
53
ivar
= frame.EvaluateExpression ("(mc->_foo)")
54
self.assertTrue(
ivar
, "Got result for mc->_foo")
55
ivar_value =
ivar
.GetValueAsSigned (error)
/external/clang/test/PCH/
objcxx-ivar-class.mm
2
// RUN: %clang_cc1 -include %S/objcxx-
ivar
-class.h -triple %itanium_abi_triple %s -emit-llvm -o - | FileCheck %s
5
// RUN: %clang_cc1 -x objective-c++-header -triple %itanium_abi_triple -emit-pch -o %t %S/objcxx-
ivar
-class.h
Completed in 1142 milliseconds
1
2
3
4
5
6
7
8
9
10