Home
last modified time | relevance | path

Searched refs:synthesized (Results 1 – 25 of 66) sorted by relevance

123

/external/clang/test/SemaObjC/
Datomoic-property-synnthesis-rules.m11 warning: Atomic property 'x' has a synthesized setter and a
13 warning: Atomic property 'x' has a synthesized getter and a
111 // expected-note {{setter and getter must both be synthesized}}
113 // expected-note {{setter and getter must both be synthesized}}
133 … // expected-note {{setter and getter must both be synthesized}}
135 … // expected-note {{setter and getter must both be synthesized}}
146 … // expected-note {{setter and getter must both be synthesized}}
148 … // expected-note {{setter and getter must both be synthesized}}
166 … // expected-note {{setter and getter must both be synthesized}}
168 … // expected-note {{setter and getter must both be synthesized}}
[all …]
Ddefault-synthesize-1.m11 …// expected-warning {{auto property synthesis is synthesizing property not explicitly synthesized}}
12 …// expected-warning {{auto property synthesis is synthesizing property not explicitly synthesized}}
21 …// expected-warning {{auto property synthesis is synthesizing property not explicitly synthesized}}
22 …// expected-warning {{auto property synthesis is synthesizing property not explicitly synthesized}}
41 …/ expected-warning {{auto property synthesis is synthesizing property not explicitly synthesized}}
42 …// expected-warning {{auto property synthesis is synthesizing property not explicitly synthesized}}
121 …// expected-warning {{auto property synthesis is synthesizing property not explicitly synthesized}}
Darc-property.m21 @synthesize myString; // expected-note {{property synthesized here}}
23 @synthesize myString2 = myString2; // expected-note {{property synthesized here}}
27 @synthesize myString5 = StrongIvar5; // expected-note {{property synthesized here}}
44 @synthesize x; // expected-note {{property synthesized here}}
45 @synthesize y; // expected-note {{property synthesized here}}
Ddefault-synthesize-2.m34 // default synthesized; thus causing user error.
50 @implementation Test3 // expected-warning {{autosynthesized property 'uid' will use synthesized ins…
51 // Oops, forgot to write @synthesize! will be default synthesized
69 return self->_var; // compiles because 'var' is synthesized by default
110 // With default synthesis, '_object' is be the synthesized ivar not the global
Diboutlet.m12 …w; // expected-warning {{readonly IBOutlet property 'myView' when auto-synthesized may not work co…
14 …; // expected-warning {{readonly IBOutlet property 'myView1' when auto-synthesized may not work co…
16 …; // expected-warning {{readonly IBOutlet property 'myView2' when auto-synthesized may not work co…
30 …-warning {{readonly IBOutlet property 'autoReadOnlyReadOnly' when auto-synthesized may not work co…
Darc-property-lifetime.m16 @synthesize x; // expected-note {{property synthesized here}}
17 @synthesize y; // expected-note {{property synthesized here}}
33 @synthesize x; // expected-note {{property synthesized here}}
34 @synthesize y; // expected-note {{property synthesized here}}
50 @synthesize x; // expected-note {{property synthesized here}}
51 @synthesize y; // expected-note {{property synthesized here}}
82 @synthesize y; // expected-note {{property synthesized here}}
97 @synthesize y; // expected-note {{property synthesized here}}
Dproperty-ambiguous-synthesis.m27 @synthesize foo=_MyFooIvar; // expected-note {{property synthesized here}}
35 @synthesize foo=_MyFooIvar; // expected-note {{property synthesized here}}
43 @synthesize foo=_MyFooIvar; // expected-note {{property synthesized here}}
Dproperty-user-setter.m130 self.t = 0; // expected-error {{synthesized properties 't' and 'T' both claim setter 'setT:'}}
131 self.T = 0; // expected-error {{synthesized properties 'T' and 't' both claim setter 'setT:'}}
132 …self.Pxyz = 0; // expected-error {{synthesized properties 'Pxyz' and 'pxyz' both claim setter 'set…
133 …self.pxyz = 0; // expected-error {{synthesized properties 'pxyz' and 'Pxyz' both claim setter 'set…
Dobjc-buffered-methods.m22 - (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.
Ddefault-synthesize-3.m66 …t synthesize property 'isFoo' because it is 'readwrite' but it will be synthesized 'readonly' via …
67 …synthesize property 'Property1' because it cannot share an ivar with another synthesized property}}
76 @synthesize Property2 = Property1; // expected-note {{property synthesized here}}
Dproperty.m18 @synthesize d1; // expected-error {{synthesized property 'd1' must either be named the same as}}
20 @synthesize prop_id; // expected-error {{synthesized property 'prop_id' must either be named the sa…
Divar-sem-check-2.m19 @synthesize value1=value; // expected-error {{synthesized properties 'value1' and 'value' both clai…
Dweak-property.m22 @synthesize x; // expected-note {{property synthesized here}}
Dproperty-impl-misuse.m15 @synthesize Z=Y; // expected-error {{synthesized properties 'Z' and 'Y' both claim instance variabl…
/external/chromium_org/third_party/WebKit/Source/platform/
DPlatformMouseEvent.h66 …nt::Type type, int clickCount, Modifiers modifiers, SyntheticEventType synthesized, double timesta… in PlatformMouseEvent() argument
72 , m_synthesized(synthesized) in PlatformMouseEvent()
77 … shiftKey, bool ctrlKey, bool altKey, bool metaKey, SyntheticEventType synthesized, double timesta… in PlatformMouseEvent() argument
83 , m_synthesized(synthesized) in PlatformMouseEvent()
/external/clang/test/Analysis/
Dobjc-properties.m20 …@property (assign, nonatomic) MyClass* A; // explicitely synthesized, not implemented, non-default…
22 @property (assign) MyClass* X; // automatically synthesized, not implemented
24 @property (assign, nonatomic) MyClass* Y; // automatically synthesized, implemented
26 @property (assign, nonatomic) MyClass* Z; // non-synthesized ivar, implemented setter
27 …@property (readonly) id nonSynth; // non-synthesized, explicitly implemented to return ivar with …
DPR2978.m36 @synthesize Y = _Y; // expected-warning{{The '_Y' instance variable was retained by a synthesized p…
37 … // expected-warning{{The '_Z' instance variable was not retained by a synthesized property but wa…
42 @synthesize W = _W; // expected-warning{{The '_W' instance variable was retained by a synthesized p…
Dobjc_invalidation.m104 @property (assign) SomeInvalidationImplementingObject* Prop6; // automatically synthesized prop
105 @property (assign) SomeInvalidationImplementingObject* Prop7; // automatically synthesized prop
199 // synthesized in the parent, let the parent invalidate it.
/external/clang/test/Analysis/objc/
Ddirect-ivar-assignment-in-annotated-functions.m29 …@property (assign, nonatomic) MyClass* A; // explicitely synthesized, not implemented, non-default…
31 @property (assign) MyClass* X; // automatically synthesized, not implemented
33 @property (assign, nonatomic) MyClass* Y; // automatically synthesized, implemented
35 @property (assign, nonatomic) MyClass* Z; // non-synthesized ivar, implemented setter
36 …@property (readonly) id nonSynth; // non-synthesized, explicitly implemented to return ivar with …
/external/clang/test/CodeGenObjC/
Ddebug-property-synth.m5 // synthesized getters/setters.
10 // Test that the linetable entries for the synthesized getter and
D2009-01-21-invalid-debug-info.m5 // trouble was the synthesized self decl in im1 was causing the debug
Dsynthesize_ivar.m30 // <rdar://problem/7336352> [irgen] crash in synthesized property construction
/external/clang/test/ASTMerge/
Dproperty.m9 // CHECK: property1.m:28:21: error: property 'Prop2' is synthesized to different ivars in different…
10 // CHECK: property2.m:29:21: note: property is synthesized to ivar 'ivar2' here
/external/clang/test/SemaObjCXX/
Dabstract-class-type-ivar.mm27 @synthesize Prop; // expected-error {{synthesized instance variable type 'const CppConcreteSub' is …
/external/clang/test/Rewriter/
Drewrite-modern-class.mm47 //============================class needs to be synthesized here=====================

123