Home
last modified time | relevance | path

Searched refs:strong (Results 1 – 25 of 245) sorted by relevance

12345678910

/external/clang/test/SemaObjC/
Darc-property-decl-attrs.m10 @property(strong) id x;
11 @property(strong) id y;
12 @property(strong) id z;
40 @property(strong) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be…
41 …operty(strong) __weak id y; // expected-error {{strong property 'y' may not also be declared __wea…
42 @property(strong) __autoreleasing id z; // expected-error {{strong property 'z' may not also be dec…
46 @property(retain) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be…
47 @property(retain) __weak id y; // expected-error {{strong property 'y' may not also be declared __w…
48 @property(retain) __autoreleasing id z; // expected-error {{strong property 'z' may not also be dec…
52 @property(copy) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be d…
[all …]
Dproperty-10.m8 @property(retain) int p1; // expected-error {{property with 'retain (or strong)' attribute must be …
9 @property(strong) int s1; // expected-error {{property with 'retain (or strong)' attribute must be …
15 @property(assign, strong) id s3_1; // expected-error {{property attributes 'assign' and 'strong' ar…
17 @property(copy, strong) id s3_2; // expected-error {{property attributes 'copy' and 'strong' are mu…
19strong) id s3_3; // expected-error {{property attributes 'assign' and 'copy' are mutually exclusiv…
23 @property(unsafe_unretained, strong) id s4_1; // expected-error {{property attributes 'unsafe_unret…
25strong) id s4_3; // expected-error {{property attributes 'unsafe_unretained' and 'copy' are mutual…
35 @property (retain) int PROP; // expected-error {{property with 'retain (or strong)' attribute must …
36 @property (strong) int SPROP; // expected-error {{property with 'retain (or strong)' attribute must…
Darc-property-lifetime.m6 …id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for strong property '…
7 …id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be…
10 @property(strong) id x; // expected-note {{property declared here}}
11 @property(strong) id y; // expected-note {{property declared here}}
12 @property(strong) id z;
23 …id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for strong property '…
24 …id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be…
40 …id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for strong property '…
41 …id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be…
56 @property(strong) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be…
[all …]
Dweak-receiver-warn.m12 … may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep t…
13 … may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep t…
14 … may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep t…
16 … may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep t…
17 … may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep t…
18 … may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep t…
39 … may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep t…
42 … may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep t…
44 … may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep t…
63 … may be unpredictably set to nil}} expected-note {{assign the value to a strong variable to keep t…
[all …]
Dattr-objc-gc.m3 static id __attribute((objc_gc(strong))) b;
22 void test2(id __attribute((objc_gc(strong))) *strong,
25 opaque = strong;
26 strong = opaque;
Darc-property.m5 …id __weak myString; // expected-error {{existing instance variable 'myString' for strong property …
7 …id __weak myString2; // expected-error {{existing instance variable 'myString2' for strong propert…
11 @property (strong) id myString; // expected-note {{property declared here}}
12 @property (strong) id myString1;
53 @property (strong) UndeclaredClass *test2; // expected-error {{unknown type name 'UndeclaredClass'…
61 @property (strong) id exception;
Dwarn-retain-cycle.m36 @property (retain) void (^strong)(void); // expected-warning {{retain'ed block property does not co…
48 …x->owner.strong = ^{ (void) x; }; // expected-warning {{retain cycle}} expected-note {{block will …
49 …x.owner.strong = ^{ (void) x; }; // expected-warning {{retain cycle}} expected-note {{block will b…
50 x.owner2.strong = ^{ (void) x; };
51 x.owner3.strong = ^{ (void) x; };
63 …self.owner.strong = ^{ (void) owner; }; // expected-warning {{retain cycle}} expected-note {{block…
64 self.owner2.strong = ^{ (void) owner; };
67 self.owner3.strong = ^{ (void) owner; };
69 …owner.strong = ^{ (void) owner; }; // expected-warning {{retain cycle}} expected-note {{block will…
71 …owner.strong = ^{ ^{ (void) owner; }(); }; // expected-warning {{retain cycle}} expected-note {{bl…
[all …]
Darc-setter-property-match.m14 @property (readwrite, strong) NSArray *names1; // <-- warning: Type of property....
16 @property (readwrite, strong) __strong NSArray *names2; // <-- warning: Type of property....
18 @property (readwrite, strong) __strong NSArray *names3; // <-- OK
20 @property (readwrite, strong) NSArray *names4; // <-- warning: Type of property....
/external/clang/test/ARCMT/
Dobjcmt-atomic-property.m.result26 @property (strong) NSString *StrongProp;
28 @property (strong) NSString *UnavailProp __attribute__((unavailable));
31 @property (strong) NSString *UnavailProp1 __attribute__((unavailable));
33 @property (strong) NSString *UnavailProp2;
51 @property (strong) NSArray *names2;
52 @property (strong) NSArray *names3;
53 @property (strong) NSArray *names4;
54 @property (strong) NSArray *names1;
67 @property (strong) id MYtarget;
69 @property (strong) id targetX;
[all …]
Dobjcmt-ns-nonatomic-iosonly.m.result33 @property (NS_NONATOMIC_IOSONLY, strong) NSString *StrongProp;
35 @property (NS_NONATOMIC_IOSONLY, strong) NSString *UnavailProp __attribute__((unavailable));
38 @property (NS_NONATOMIC_IOSONLY, strong) NSString *UnavailProp1 __attribute__((unavailable));
40 @property (NS_NONATOMIC_IOSONLY, strong) NSString *UnavailProp2;
58 @property (NS_NONATOMIC_IOSONLY, strong) NSArray *names2;
59 @property (NS_NONATOMIC_IOSONLY, strong) NSArray *names3;
60 @property (NS_NONATOMIC_IOSONLY, strong) NSArray *names4;
61 @property (NS_NONATOMIC_IOSONLY, strong) NSArray *names1;
74 @property (NS_NONATOMIC_IOSONLY, strong) id MYtarget;
76 @property (NS_NONATOMIC_IOSONLY, strong) id targetX;
[all …]
Dobjcmt-property.m.result26 @property (nonatomic, strong) NSString *StrongProp;
28 @property (nonatomic, strong) NSString *UnavailProp __attribute__((unavailable));
31 @property (nonatomic, strong) NSString *UnavailProp1 __attribute__((unavailable));
33 @property (nonatomic, strong) NSString *UnavailProp2;
51 @property (nonatomic, strong) NSArray *names2;
52 @property (nonatomic, strong) NSArray *names3;
53 @property (nonatomic, strong) NSArray *names4;
54 @property (nonatomic, strong) NSArray *names1;
70 @property (nonatomic, strong) id MYtarget;
72 @property (nonatomic, strong) id targetX;
[all …]
Dremove-dealloc-zerouts.m.result6 @property (strong) id x;
7 @property (strong) id y;
8 @property (strong) id w;
9 @property (strong) id z;
10 @property (strong) id q;
26 @property (strong) Foo *a;
DGC.m.result26 @property (strong) id prop;
47 @property (strong) I3 * ps;
58 @property (strong) I4Impl * ps;
59 @property (strong) I4Impl * pds;
60 @property (strong) I4Impl * pds2;
77 @property (strong) id assign_prop;
78 @property (strong, readonly) id strong_readonly_prop;
DGC-no-finalize-removal.m.result32 @property (strong) id prop;
60 @property (strong) I3 * ps;
71 @property (strong) I4Impl * ps;
72 @property (strong) I4Impl * pds;
73 @property (strong) I4Impl * pds2;
90 @property (strong) id assign_prop;
91 @property (strong, readonly) id strong_readonly_prop;
Dremove-dealloc-method.m.result8 @property (strong) id x;
9 @property (strong) id y;
10 @property (strong) id w;
11 @property (strong) id z;
Dassign-prop-with-arc-runtime.m.result40 @property (strong) id def1;
41 @property (atomic,strong) id def2;
42 @property (strong,atomic) id def3;
60 @property (strong,readonly) TestExt *x1;
65 @property (strong,readwrite) TestExt *x1;
67 @property (strong) TestExt *x3;
DGC-no-arc-runtime.m.result26 @property (strong) id prop;
47 @property (strong) I3 * ps;
55 @property (strong) I4Impl * ps;
56 @property (strong) I4Impl * pds;
57 @property (strong) I4Impl * pds2;
Dobjcmt-property-availability.m.result22 @property (nonatomic, strong) MKMapItem *source NS_AVAILABLE(10_9, 6_0);
25 @property (nonatomic, strong) MKMapItem *dest NS_AVAILABLE(10_9, 6_0);
27 @property (nonatomic, strong) MKMapItem *final;
29 @property (nonatomic, strong) MKMapItem *total NS_AVAILABLE(10_9, 6_0);
35 @property (nonatomic, strong) MKMapItem *tally UNAVAILABLE NS_AVAILABLE(10_9, 6_0);
/external/chromium_org/chrome/browser/resources/chromeos/
Dproxy_settings.css35 html[highlight=strong] input[type='button']:focus,
36 html[highlight=strong] input[type='checkbox']:focus,
37 html[highlight=strong] input[type='radio']:focus,
38 html[highlight=strong] input[type='text']:focus,
39 html[highlight=strong] input[type='url']:focus,
40 html[highlight=strong] button:focus,
41 html[highlight=strong] list:focus {
45 html[highlight=strong] #network-proxy-tab {
/external/chromium_org/third_party/skia/src/core/
DSkTypefaceCache.cpp33 bool strong) { in add() argument
41 rec->fStrong = strong; in add()
42 if (strong) { in add()
86 bool strong = fArray[i].fStrong; in purge() local
87 if ((strong && face->unique()) || (!strong && face->weak_expired())) { in purge()
88 if (strong) { in purge()
124 bool strong) { in Add() argument
126 Get().add(face, requestedStyle, strong); in Add()
/external/skia/src/core/
DSkTypefaceCache.cpp33 bool strong) { in add() argument
41 rec->fStrong = strong; in add()
42 if (strong) { in add()
86 bool strong = fArray[i].fStrong; in purge() local
87 if ((strong && face->unique()) || (!strong && face->weak_expired())) { in purge()
88 if (strong) { in purge()
124 bool strong) { in Add() argument
126 Get().add(face, requestedStyle, strong); in Add()
/external/markdown/tests/misc/
Dbr.txt6 <p>Use two asterisks for <strong>strong emphasis</strong>.
7 Or, if you prefer, <strong>use two underscores instead</strong>.</p>
/external/clang/test/CodeGenObjC/
Dobjc2-strong-cast-1.m5 __attribute__((objc_gc(strong))) int *i_IdocumentIDs;
6 __attribute__((objc_gc(strong))) long *l_IdocumentIDs;
7 __attribute__((objc_gc(strong))) long long *ll_IdocumentIDs;
8 __attribute__((objc_gc(strong))) float *IdocumentIDs;
9 __attribute__((objc_gc(strong))) double *d_IdocumentIDs;
Darc-captured-32bit-block-var-layout-2.m11 NSString *strong;
15 void (^block1)() = ^{ printf("%#llx", eightByte); NSLog(@"%@", strong); };
20 void (^block2)() = ^{ printf("%#llx, %d", eightByte, i); NSLog(@"%@", strong); };
25 void (^block3)() = ^{ printf("%c %#llx", ch, eightByte); NSLog(@"%@", strong); };
31 void (^block4)() = ^{ printf("%c %#lx", ch, fourByte); NSLog(@"%@", strong); };
35 void (^block5)() = ^{ NSLog(@"%@", strong); printf("%c %#llx", ch, eightByte); };
/external/chromium_org/ppapi/api/
Dppb_compositor.idl22 * <strong>Example usage from plugin code:</strong>
24 * <strong>Setup:</strong>
31 * <strong>Setup layer stack:</strong>
37 * <strong> Present one frame:</strong>
53 * <strong>release callback</strong>
61 * <strong>Shutdown:</strong>

12345678910