Searched refs:synthesized (Results 1 – 25 of 64) sorted by relevance
123
/external/clang/test/SemaObjC/ |
D | atomoic-property-synnthesis-rules.m | 11 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 …]
|
D | default-synthesize-1.m | 11 …// 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}}
|
D | arc-property.m | 21 @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}}
|
D | iboutlet.m | 12 …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…
|
D | arc-property-lifetime.m | 16 @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}}
|
D | default-synthesize-2.m | 34 // 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
|
D | 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.
|
D | property-user-setter.m | 130 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…
|
D | default-synthesize-3.m | 66 …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}}
|
D | arc-decls.m | 63 @synthesize newFoo; // expected-error {{property's synthesized getter follows Cocoa naming conventi… 64 @synthesize copyBar; // expected-error {{property's synthesized getter follows Cocoa naming convent… 65 @synthesize allocBaz; // expected-error {{property's synthesized getter follows Cocoa naming conven…
|
D | property.m | 18 @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…
|
D | ivar-sem-check-2.m | 19 @synthesize value1=value; // expected-error {{synthesized properties 'value1' and 'value' both clai…
|
D | weak-property.m | 22 @synthesize x; // expected-note {{property synthesized here}}
|
D | property-impl-misuse.m | 15 @synthesize Z=Y; // expected-error {{synthesized properties 'Z' and 'Y' both claim instance variabl…
|
/external/clang/test/Analysis/ |
D | objc-properties.m | 20 …@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 …
|
D | PR2978.m | 36 @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…
|
D | objc_invalidation.m | 104 @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/ |
D | direct-ivar-assignment-in-annotated-functions.m | 29 …@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/ASTMerge/ |
D | property.m | 9 // 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/CodeGenObjC/ |
D | synthesize_ivar.m | 30 // <rdar://problem/7336352> [irgen] crash in synthesized property construction
|
D | 2009-01-21-invalid-debug-info.m | 5 // trouble was the synthesized self decl in im1 was causing the debug
|
/external/clang/test/Rewriter/ |
D | rewrite-modern-class.mm | 47 //============================class needs to be synthesized here=====================
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/en-US/ |
D | en-US_lh0_kpdf_mgc.utf | 58 amplif = 1 , uint8 ; !specification for correction factor in percent for synthesized speech or smoo…
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/en-GB/ |
D | en-GB_kh0_kpdf_mgc.utf | 58 amplif = 1 , uint8 ; !specification for correction factor in percent for synthesized speech or smoo…
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/fr-FR/ |
D | fr-FR_nk0_kpdf_lfz.utf | 58 amplif = 1 , uint8 ; !specification for correction factor in percent for synthesized speech or smoo…
|
123