Home
last modified time | relevance | path

Searched refs:property (Results 1 – 25 of 2724) 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/chromium_org/content/browser/accessibility/
Dbrowser_accessibility_cocoa.h55 @property(nonatomic, readonly) NSPoint origin;
59 @property(nonatomic, readonly) NSString* accessKey;
60 @property(nonatomic, readonly) NSNumber* ariaAtomic;
61 @property(nonatomic, readonly) NSNumber* ariaBusy;
62 @property(nonatomic, readonly) NSString* ariaLive;
63 @property(nonatomic, readonly) NSString* ariaRelevant;
64 @property(nonatomic, readonly) NSArray* children;
65 @property(nonatomic, readonly) NSArray* columns;
66 @property(nonatomic, readonly) NSArray* columnHeaders;
67 @property(nonatomic, readonly) NSValue* columnIndexRange;
[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-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 …]
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 …]
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 …]
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-in-class-extension-1.m9 @property (nonatomic, readonly) NSString* addingMemoryModel;
11 @property (nonatomic, copy, readonly) NSString* matchingMemoryModel;
13 @property (nonatomic, 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 …]
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 …]
/external/clang/test/ARCMT/
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-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-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/chromium_org/v8/test/webkit/
Ddelete-getters-setters-expected.txt29 PASS b1.property threw exception TypeError: Cannot read property 'property' of undefined.
30 PASS a2.property threw exception TypeError: Cannot read property 'property' of undefined.
31 PASS b3.property threw exception TypeError: Cannot read property 'property' of undefined.
32 PASS a4.property threw exception TypeError: Cannot read property 'property' of undefined.
33 PASS b5.property threw exception TypeError: Cannot read property 'property' of undefined.
34 PASS a6.property threw exception TypeError: Cannot read property 'property' of undefined.
35 PASS b7.property threw exception TypeError: Cannot read property 'property' of undefined.
36 PASS a8.property threw exception TypeError: Cannot read property 'property' of undefined.
37 PASS o1.b.property threw exception TypeError: Cannot read property 'property' of undefined.
38 PASS o1.a.property threw exception TypeError: Cannot read property 'property' of undefined.
[all …]
/external/lldb/source/Interpreter/
DOptionValueProperties.cpp73 Property property(defs[i]); in Initialize() local
74 assert(property.IsValid()); in Initialize()
75 m_name_to_index.Append(property.GetName().GetCString(),m_properties.size()); in Initialize()
76 property.GetValue()->SetParent(shared_from_this()); in Initialize()
77 m_properties.push_back(property); in Initialize()
88 Property property(name, desc, is_global, value_sp); in AppendProperty() local
90 m_properties.push_back(property); in AppendProperty()
231 const Property *property = GetPropertyAtIndex(NULL, false, idx); in GetPropertyNameAtIndex() local
232 if (property) in GetPropertyNameAtIndex()
233 return property->GetName(); in GetPropertyNameAtIndex()
[all …]
/external/chromium_org/third_party/WebKit/Source/build/scripts/
Dmake_style_builder.py50 def set_if_none(property, key, value): argument
51 if property[key] is None:
52 property[key] = value
54 for property in self._properties.values():
55 upper_camel = property['upper_camel_name']
56 set_if_none(property, 'name_for_methods', upper_camel.replace('Webkit', ''))
57 name = property['name_for_methods']
58 set_if_none(property, 'type_name', 'E' + name)
59 set_if_none(property, 'getter', lower_first(name))
60 set_if_none(property, 'setter', 'set' + name)
[all …]
Dcss_properties.py52 …self._aliases = {property['name']: property['alias_for'] for property in properties if property['a…
53 properties = [property for property in properties if not property['alias_for']]
58 for offset, property in enumerate(properties):
59 property['property_id'] = css_name_to_enum(property['name'])
60 property['upper_camel_name'] = camelcase_css_name(property['name'])
61 property['lower_camel_name'] = lower_first(property['upper_camel_name'])
62 property['enum_value'] = self._first_enum_value + offset
63 property['is_internal'] = property['name'].startswith('-internal-')
66 self._properties = {property['property_id']: property for property in properties}
Dmake_css_value_keywords.py117 for offset, property in enumerate(self._value_keywords):
118 property['name'] = property['name'].lower()
119 property['enum_name'] = self._enum_name_from_value_keyword(property['name'])
120 property['enum_value'] = first_property_id + offset
121 if property['name'].startswith('-internal-'):
122 …assert property['mode'] is None, 'Can\'t specify mode for value keywords with the prefix "-interna…
123 property['mode'] = 'UASheet'
125 …assert property['mode'] != 'UASheet', 'UASheet mode only value keywords should have the prefix "-i…
130 def _enum_declaration(self, property): argument
131 return " %(enum_name)s = %(enum_value)s," % property
[all …]
/external/chromium_org/third_party/libjingle/source/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;
91 @property(nonatomic, readonly) NSString* label;
92 @property(nonatomic, readonly) BOOL isReliable;
[all …]

12345678910>>...109