Home
last modified time | relevance | path

Searched refs:property (Results 1 – 25 of 2702) sorted by relevance

12345678910>>...109

/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
Dnetworkconfig.ui4 <property name="geometry" >
11 </property>
12 <property name="windowTitle" >
14 </property>
18 <property name="text" >
20 </property>
25 <property name="frameShape" >
27 </property>
28 <property name="frameShadow" >
30 </property>
[all …]
Dwpagui.ui4 <property name="geometry" >
11 </property>
12 <property name="windowTitle" >
14 </property>
15 <property name="windowIcon" >
18 </property>
23 <property name="text" >
25 </property>
33 <property name="text" >
35 </property>
[all …]
Duserdatarequest.ui7 <property name="geometry" >
14 </property>
15 <property name="windowTitle" >
17 </property>
18 <property name="sizeGripEnabled" >
20 </property>
24 <property name="text" >
26 </property>
31 <property name="margin" >
33 </property>
[all …]
Dscanresults.ui4 <property name="geometry" >
11 </property>
12 <property name="windowTitle" >
14 </property>
18 <property name="editTriggers" >
20 </property>
21 <property name="uniformRowHeights" >
23 </property>
24 <property name="sortingEnabled" >
26 </property>
[all …]
/external/clang/test/SemaObjC/
Dproperty-atomic-redecl.m6 // Readonly, atomic public redeclaration of property in subclass.
8 @property (readonly) A *property; property
12 @property (nonatomic,readwrite,retain) A *property;
16 @property (readonly) A *property; property
19 // Readonly, atomic public redeclaration of property in subclass.
21 @property (readonly) A *property; property
25 @property (nonatomic, readwrite, retain) A *property; property
29 @property (readonly, nonatomic) A *property; property
33 @property (readwrite) A *property;
36 // Readonly, atomic public redeclaration of property in subclass.
[all …]
Datomoic-property-synnthesis-rules.m5 1. the property is atomic
6 2. the current @implementation contains an @synthesize for the property
8 4. the property is read-write
11 warning: Atomic property 'x' has a synthesized setter and a
13 warning: Atomic property 'x' has a synthesized getter and a
109 @property int GetSet;
110 @property int Get; // expected-note {{property declared here}} \
112 @property int Set; // expected-note {{property declared here}} \
114 @property int None;
115 @property(nonatomic) int GetSet_Nonatomic;
[all …]
Dproperty-10.m3 // Check property attribute consistency.
6 @property(readonly, readwrite) int p0; // expected-error {{property attributes 'readonly' and 'read…
8 @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 …
11 @property(copy) int p2; // expected-error {{property with 'copy' attribute must be of object type}}
13 @property(assign, copy) id p3_0; // expected-error {{property attributes 'assign' and 'copy' are mu…
14 @property(assign, retain) id p3_1; // expected-error {{property attributes 'assign' and 'retain' ar…
15 @property(assign, strong) id s3_1; // expected-error {{property attributes 'assign' and 'strong' ar…
16 @property(copy, retain) id p3_2; // expected-error {{property attributes 'copy' and 'retain' are mu…
17 @property(copy, strong) id s3_2; // expected-error {{property attributes 'copy' and 'strong' are mu…
[all …]
Darc-property-decl-attrs.m10 @property(strong) id x;
11 @property(strong) id y;
12 @property(strong) id z;
21 @property(retain) id x;
22 @property(retain) id y;
23 @property(retain) id z;
32 @property(copy) id x;
33 @property(copy) id y;
34 @property(copy) id z;
40 @property(strong) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be…
[all …]
Ddefault-synthesize-3.m8 @property int NoAutoProp; // expected-note 2 {{property declared here}}
11 @implementation NoAuto // expected-warning {{property 'NoAutoProp' requires method 'NoAutoProp' to…
12 … // expected-warning {{property 'NoAutoProp' requires method 'setNoAutoProp:'}}
17 @property (copy) id SubProperty; // expected-note 2 {{property declared here}}
20 @implementation Sub // expected-warning {{property 'SubProperty' requires method 'SubProperty' to b…
21 … // expected-warning {{property 'SubProperty' requires method 'setSubProperty:' to be defined}}
25 @property (copy) id DeepProperty;
26 @property (copy) id DeepSynthProperty;
27 @property (copy) id DeepMustSynthProperty; // expected-note {{property declared here}}
30 @implementation Deep // expected-warning {{property 'DeepMustSynthProperty' requires method 'setDee…
[all …]
Darc-property-lifetime.m6 …tained x; // expected-error {{existing instance variable 'x' for strong property 'x' may not be __…
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;
16 @synthesize x; // expected-note {{property synthesized here}}
17 @synthesize y; // expected-note {{property synthesized here}}
23 …tained x; // expected-error {{existing instance variable 'x' for strong property 'x' may not be __…
24 …id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be…
27 @property(retain) id x; // expected-note {{property declared here}}
[all …]
Dproperty-in-class-extension-1.m9 @property (nonatomic, readonly) NSString* addingMemoryModel;
11 @property (nonatomic, copy, readonly) NSString* matchingMemoryModel;
13 @property (atomic, retain, readonly) NSString* addingNoNewMemoryModel;
15 @property (readonly) NSString* none;
16 @property (readonly) NSString* none1;
18 @property (assign, readonly) NSString* changeMemoryModel; // expected-note {{property declared here…
20 @property (readonly) __weak id weak_prop;
21 @property (readonly) __weak id weak_prop1;
23 @property (assign, readonly) NSString* assignProperty;
25 @property (readonly) NSString* readonlyProp;
[all …]
Dunused-backing-ivar-warning.m1 // RUN: %clang_cc1 -fsyntax-only -Wunused-property-ivar -verify -Wno-objc-root-class %s
7 @property (nonatomic, copy) id t; // expected-note {{property declared here}}
8 @property (nonatomic, copy) id u; // expected-note {{property declared here}}
9 @property (nonatomic, copy) id v; // expected-note {{property declared here}}
10 @property (nonatomic, copy) id w;
11 @property (nonatomic, copy) id x; // expected-note {{property declared here}}
12 @property (nonatomic, copy) id y; // expected-note {{property declared here}}
13 @property (nonatomic, copy) id z;
14 @property (nonatomic, copy) id ok;
18 …ewX { // expected-warning {{ivar '_x' which backs the property is not referenced in this property
[all …]
Dproperty-inherited.m23 @property(nonatomic, assign) id<FooDelegate> delegate;
24 @property(nonatomic, assign) id<BarDelegate> delegate2; // expected-note {{property declared here}}
28 @property(nonatomic, assign) id<BarDelegate> delegate;
29 @property(nonatomic, assign) id<FooDelegate> delegate2; // expected-warning{{property type 'id<FooD…
37 @property(assign) id ref;
38 @property(assign) Base *p_base;
39 @property(assign) NSMutableData *p_data; // expected-note {{property declared here}}
43 @property(assign) NSData *ref;
44 @property(assign) Data *p_base;
45 @property(assign) NSData *p_data; // expected-warning{{property type 'NSData *' is incompatible wit…
[all …]
Dcontinuation-class-property.m5 @property (readonly, copy) id foos;
18 @property (readwrite, copy) id foos;
22 @property (readwrite, copy) id foos;
36 @property (readonly) NSRect foo; // expected-note {{property declared here}}
37 @property (readonly, strong) NSString *bar; // expected-note {{property declared here}}
41 @property (readwrite) NSString *foo; // expected-error {{type of property 'NSString *' in class ext…
42 @property (readwrite, strong) NSRect bar; // expected-error {{type of property 'NSRect' in class ex…
49 @property (nonatomic, readonly, assign) struct evhttp_request *httpRequest;
50 @property (nonatomic, readonly, assign) struct S *httpRequest2;
51 @property (nonatomic, readonly, assign) struct S1 *httpRequest3;
[all …]
Dduplicate-property-class-extension.m5 @property (readonly) char foo;
6 @property (readwrite) char bar; // expected-note {{property declared here}}
10 @property (readwrite) char foo; // expected-note 2 {{property declared here}}
11 @property (readwrite) char NewProperty; // expected-note 2 {{property declared here}}
12property (readwrite) char bar; // expected-error{{illegal redeclaration of 'readwrite' property in…
16 @property (readwrite) char foo; // expected-error {{property has a previous declaration}}
17 @property (readwrite) char NewProperty; // expected-error {{property has a previous declaration}}
21 @property (readonly) char foo; // expected-error {{property has a previous declaration}}
22 @property (readwrite) char NewProperty; // expected-error {{property has a previous declaration}}
Darc-property.m5 …g; // expected-error {{existing instance variable 'myString' for strong property 'myString' may no…
7 …; // expected-error {{existing instance variable 'myString2' for strong property 'myString2' may n…
9 …// expected-error {{existing instance variable 'StrongIvar5' for __weak property 'myString5' must …
11 @property (strong) id myString; // expected-note {{property declared here}}
12 @property (strong) id myString1;
13 @property (retain) id myString2; // expected-note {{property declared here}}
15 @property (weak) id myString3;
16 @property (weak) id myString4;
17 @property __weak id myString5; // expected-note {{property declared here}}
21 @synthesize myString; // expected-note {{property synthesized here}}
[all …]
Dproperty-3.m7 @property (readwrite, copy) id d1;
8 @property (readwrite, copy) id d2;
12property (readonly) id d1; // expected-warning {{attribute 'readonly' of property 'd1' restricts a…
13 @property (readwrite, copy) I* d2;
20 @property (nonatomic, readonly) BOOL allowReminders;
21 @property (atomic, readonly) BOOL allowNonatomicProperty; // expected-note {{property declared here…
31 @property (nonatomic, assign) BOOL allowReminders;
32property (nonatomic, assign) BOOL allowNonatomicProperty; // expected-warning {{'atomic' attribute…
37 @property (nonatomic, readonly, getter=isAvailable) int available; // expected-note{{property decla…
41 @property (nonatomic, assign, getter=wasAvailable) int available; // expected-warning{{getter name …
Ddefault-synthesize-1.m1 // RUN: %clang_cc1 -fsyntax-only -Wobjc-missing-property-synthesis -verify -Wno-objc-root-class %s
11 @property int howMany; // expected-warning {{auto property synthesis is synthesizing property not e…
12 @property (retain) NSString* what; // expected-warning {{auto property synthesis is synthesizing pr…
21 @property (nonatomic) int howMany; // expected-warning {{auto property synthesis is synthesizing
22 @property (nonatomic, retain) NSString* what; // expected-warning {{auto property synthesis is syn…
41 @property (nonatomic) int howMany; // expected-warning {{auto property synthesis is synthesizing pr…
42 @property (nonatomic, retain) NSString* what; // expected-warning {{auto property synthesis is synt…
64 @property int howMany;
65 @property (retain) NSString* what;
92 @property(assign,readonly) float relevance;
[all …]
/external/clang/test/ARCMT/
Dobjcmt-property.m.result2 // RUN: %clang_cc1 -fblocks -objcmt-migrate-readwrite-property -objcmt-migrate-readonly-property -m…
24 @property (nonatomic, weak) NSString *WeakProp;
26 @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;
36 @property (nonatomic, copy) NSDictionary *undoAction;
51 @property (nonatomic, strong) NSArray *names2;
52 @property (nonatomic, strong) NSArray *names3;
53 @property (nonatomic, strong) NSArray *names4;
[all …]
Dobjcmt-atomic-property.m.result2 …ang_cc1 -fblocks -objcmt-migrate-readwrite-property -objcmt-migrate-readonly-property -objcmt-atom…
24 @property (weak) NSString *WeakProp;
26 @property (strong) NSString *StrongProp;
28 @property (strong) NSString *UnavailProp __attribute__((unavailable));
31 @property (strong) NSString *UnavailProp1 __attribute__((unavailable));
33 @property (strong) NSString *UnavailProp2;
36 @property (copy) NSDictionary *undoAction;
51 @property (strong) NSArray *names2;
52 @property (strong) NSArray *names3;
53 @property (strong) NSArray *names4;
[all …]
Dobjcmt-ns-nonatomic-iosonly.m.result2 …ks -objcmt-migrate-readwrite-property -objcmt-ns-nonatomic-iosonly -objcmt-migrate-readonly-proper…
31 @property (NS_NONATOMIC_IOSONLY, weak) NSString *WeakProp;
33 @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;
43 @property (NS_NONATOMIC_IOSONLY, copy) NSDictionary *undoAction;
58 @property (NS_NONATOMIC_IOSONLY, strong) NSArray *names2;
59 @property (NS_NONATOMIC_IOSONLY, strong) NSArray *names3;
60 @property (NS_NONATOMIC_IOSONLY, strong) NSArray *names4;
[all …]
/external/protobuf/objectivec/
DGPBDescriptor.h56 @property(nonatomic, readonly, copy) NSString *name;
57 @property(nonatomic, readonly, strong, nullable) NSArray<GPBFieldDescriptor*> *fields;
58 @property(nonatomic, readonly, strong, nullable) NSArray<GPBOneofDescriptor*> *oneofs;
59 @property(nonatomic, readonly, nullable) const GPBExtensionRange *extensionRanges;
60 @property(nonatomic, readonly) uint32_t extensionRangesCount;
61 @property(nonatomic, readonly, assign) GPBFileDescriptor *file;
63 @property(nonatomic, readonly, getter=isWireFormat) BOOL wireFormat;
64 @property(nonatomic, readonly) Class messageClass;
74 @property(nonatomic, readonly, copy) NSString *package;
75 @property(nonatomic, readonly) GPBFileSyntax syntax;
[all …]
/external/protobuf/objectivec/google/protobuf/
DType.pbobjc.h173 @property(nonatomic, readwrite, copy, null_resettable) NSString *name;
176 @property(nonatomic, readwrite, strong, null_resettable) NSMutableArray<GPBField*> *fieldsArray;
178 @property(nonatomic, readonly) NSUInteger fieldsArray_Count;
181 @property(nonatomic, readwrite, strong, null_resettable) NSMutableArray<NSString*> *oneofsArray;
183 @property(nonatomic, readonly) NSUInteger oneofsArray_Count;
186 @property(nonatomic, readwrite, strong, null_resettable) NSMutableArray<GPBOption*> *optionsArray;
188 @property(nonatomic, readonly) NSUInteger optionsArray_Count;
191 @property(nonatomic, readwrite, strong, null_resettable) GPBSourceContext *sourceContext;
193 @property(nonatomic, readwrite) BOOL hasSourceContext;
196 @property(nonatomic, readwrite) GPBSyntax syntax;
[all …]
/external/webrtc/webrtc/examples/objc/AppRTCDemo/
DARDAppClient+Internal.h26 @property(nonatomic, strong) id<ARDRoomServerClient> roomServerClient;
27 @property(nonatomic, strong) id<ARDSignalingChannel> channel;
28 @property(nonatomic, strong) id<ARDSignalingChannel> loopbackChannel;
29 @property(nonatomic, strong) id<ARDTURNClient> turnClient;
31 @property(nonatomic, strong) RTCPeerConnection *peerConnection;
32 @property(nonatomic, strong) RTCPeerConnectionFactory *factory;
33 @property(nonatomic, strong) NSMutableArray *messageQueue;
35 @property(nonatomic, assign) BOOL isTurnComplete;
36 @property(nonatomic, assign) BOOL hasReceivedSdp;
37 @property(nonatomic, readonly) BOOL hasJoinedRoomServerRoom;
[all …]
/external/webrtc/talk/app/webrtc/objc/public/
DRTCDataChannel.h34 @property(nonatomic) BOOL isOrdered;
37 @property(nonatomic) NSInteger maxRetransmitTimeMs;
39 @property(nonatomic) NSInteger maxRetransmits;
42 @property(nonatomic) BOOL isNegotiated;
44 @property(nonatomic) NSInteger streamId;
46 @property(nonatomic) NSString* protocol;
53 @property(nonatomic, readonly) NSData* data;
54 @property(nonatomic, readonly) BOOL isBinary;
97 @property(nonatomic, readonly) NSString* label;
98 @property(nonatomic, readonly) BOOL isReliable;
[all …]

12345678910>>...109