Home
last modified time | relevance | path

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

12345678910>>...167

/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/
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-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 …]
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 …]
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 …]
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 …]
/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/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/core/visitor/
DModifierVisitorGenerator.java27 for (PropertyMetaModel property : node.getAllPropertyMetaModels()) { in generateVisitMethodBody()
28 if (property.isNode()) { in generateVisitMethodBody()
29 if (property.isNodeList()) { in generateVisitMethodBody()
31 property.getTypeNameGenerified(), in generateVisitMethodBody()
32 property.getName(), in generateVisitMethodBody()
33 property.getGetterMethodName())); in generateVisitMethodBody()
34 } else if (property.isOptional()) { in generateVisitMethodBody()
36 property.getTypeNameGenerified(), in generateVisitMethodBody()
37 property.getName(), in generateVisitMethodBody()
38 property.getGetterMethodName(), in generateVisitMethodBody()
[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/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.estimator.-run-config.pbtxt7 mtype: "<type \'property\'>"
11 mtype: "<type \'property\'>"
15 mtype: "<type \'property\'>"
19 mtype: "<type \'property\'>"
23 mtype: "<type \'property\'>"
27 mtype: "<type \'property\'>"
31 mtype: "<type \'property\'>"
35 mtype: "<type \'property\'>"
39 mtype: "<type \'property\'>"
43 mtype: "<type \'property\'>"
[all …]
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.estimator.-run-config.pbtxt7 mtype: "<type \'property\'>"
11 mtype: "<type \'property\'>"
15 mtype: "<type \'property\'>"
19 mtype: "<type \'property\'>"
23 mtype: "<type \'property\'>"
27 mtype: "<type \'property\'>"
31 mtype: "<type \'property\'>"
35 mtype: "<type \'property\'>"
39 mtype: "<type \'property\'>"
43 mtype: "<type \'property\'>"
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
DCharacterProperties.java31 private static UnicodeSet makeSet(int property) { in makeSet() argument
33 UnicodeSet inclusions = CharacterPropertiesImpl.getInclusionsForProperty(property); in makeSet()
41 if (UCharacter.hasBinaryProperty(c, property)) { in makeSet()
60 private static CodePointMap makeMap(int property) { in makeMap() argument
61 int nullValue = property == UProperty.SCRIPT ? UScript.UNKNOWN : 0; in makeMap()
63 UnicodeSet inclusions = CharacterPropertiesImpl.getInclusionsForProperty(property); in makeMap()
72 int nextValue = UCharacter.getIntPropertyValue(c, property); in makeMap()
87 if (property == UProperty.BIDI_CLASS || property == UProperty.GENERAL_CATEGORY) { in makeMap()
94 int max = UCharacter.getIntPropertyMaxValue(property); in makeMap()
118 public static final UnicodeSet getBinaryPropertySet(int property) { in getBinaryPropertySet() argument
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/lang/
DCharacterProperties.java32 private static UnicodeSet makeSet(int property) { in makeSet() argument
34 UnicodeSet inclusions = CharacterPropertiesImpl.getInclusionsForProperty(property); in makeSet()
42 if (UCharacter.hasBinaryProperty(c, property)) { in makeSet()
61 private static CodePointMap makeMap(int property) { in makeMap() argument
62 int nullValue = property == UProperty.SCRIPT ? UScript.UNKNOWN : 0; in makeMap()
64 UnicodeSet inclusions = CharacterPropertiesImpl.getInclusionsForProperty(property); in makeMap()
73 int nextValue = UCharacter.getIntPropertyValue(c, property); in makeMap()
88 if (property == UProperty.BIDI_CLASS || property == UProperty.GENERAL_CATEGORY) { in makeMap()
95 int max = UCharacter.getIntPropertyMaxValue(property); in makeMap()
118 public static final UnicodeSet getBinaryPropertySet(int property) { in getBinaryPropertySet() argument
[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 …]

12345678910>>...167