/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
D | networkconfig.ui | 4 <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 …]
|
D | wpagui.ui | 4 <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 …]
|
D | userdatarequest.ui | 7 <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 …]
|
D | scanresults.ui | 4 <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 …]
|
D | eventhistory.ui | 4 <property name="geometry" > 11 </property> 12 <property name="windowTitle" > 14 </property> 18 <property name="sizePolicy" > 23 </property> 24 <property name="verticalScrollBarPolicy" > 26 </property> 27 <property name="selectionMode" > 29 </property> [all …]
|
/external/chromium_org/content/browser/accessibility/ |
D | browser_accessibility_cocoa.h | 49 @property(nonatomic, readonly) NSPoint origin; 53 @property(nonatomic, readonly) NSString* accessKey; 54 @property(nonatomic, readonly) NSNumber* ariaAtomic; 55 @property(nonatomic, readonly) NSNumber* ariaBusy; 56 @property(nonatomic, readonly) NSString* ariaLive; 57 @property(nonatomic, readonly) NSString* ariaRelevant; 58 @property(nonatomic, readonly) NSArray* children; 59 @property(nonatomic, readonly) NSArray* columns; 60 @property(nonatomic, readonly) NSArray* columnHeaders; 61 @property(nonatomic, readonly) NSValue* columnIndexRange; [all …]
|
/external/clang/test/SemaObjC/ |
D | atomoic-property-synnthesis-rules.m | 5 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 …]
|
D | property-10.m | 3 // 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 …]
|
D | arc-property-decl-attrs.m | 10 @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 …]
|
D | arc-property-lifetime.m | 6 …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 …]
|
D | property-in-class-extension-1.m | 9 @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 …]
|
D | default-synthesize-3.m | 8 @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 …]
|
D | duplicate-property-class-extension.m | 5 @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}} 12 …property (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}}
|
D | continuation-class-property.m | 5 @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 …]
|
D | arc-property.m | 5 …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/chromium_org/v8/test/webkit/ |
D | delete-getters-setters-expected.txt | 29 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 …]
|
D | dfg-inline-arguments-use-from-all-the-places-broken-expected.txt | 29 …a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undef… 30 …a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undef… 31 …a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undef… 32 …a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undef… 33 …a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undef… 34 …a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undef… 35 …a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undef… 36 …a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undef… 37 …a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undef… 38 …a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undef… [all …]
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/ |
D | StyleBuilder.cpp.tmpl | 14 {%- macro set_value(property) %} 15 {%- if property.svg -%} 16 state.style()->accessSVGStyle()->{{property.setter}} 18 state.style()->{{property.setter}} 24 {%- for property_id, property in properties.items() if not property.use_handlers_for %} 25 {%- call wrap_with_condition(property.condition) %} 26 {%- set apply_type = property.apply_type %} 28 {%- if not property.custom_initial %} 31 {%- if property.svg %} 32 {{ set_value(property) }}(SVGRenderStyle::{{property.initial}}()); [all …]
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/ |
D | make_css_property_names.py | 195 … self._aliases = filter(lambda property: property['alias_for'], self.in_file.name_dictionaries) 196 for offset, property in enumerate(self._aliases): 198 property['enum_name'] = self._enum_name_from_property_name(property['alias_for']) 201 …self._properties = filter(lambda property: not property['alias_for'], self.in_file.name_dictionari… 207 for offset, property in enumerate(self._properties): 208 property['enum_name'] = self._enum_name_from_property_name(property['name']) 209 property['enum_value'] = self._first_property_id + offset 210 if property['name'].startswith('-internal-'): 211 property['is_internal'] = True 216 def _enum_declaration(self, property): argument [all …]
|
D | make_css_value_keywords.py | 121 for offset, property in enumerate(self._value_keywords): 122 property['name'] = property['name'].lower() 123 property['enum_name'] = self._enum_name_from_value_keyword(property['name']) 124 property['enum_value'] = first_property_id + offset 125 if property['name'].startswith('-internal-'): 126 …assert property['mode'] is None, 'Can\'t specify mode for value keywords with the prefix "-interna… 127 property['mode'] = 'UASheet' 129 …assert property['mode'] != 'UASheet', 'UASheet mode only value keywords should have the prefix "-i… 134 def _enum_declaration(self, property): argument 135 return " %(enum_name)s = %(enum_value)s," % property [all …]
|
D | make_style_builder.py | 75 def set_if_none(property, key, value): argument 76 if property[key] is None: 77 property[key] = value 79 for property in self._properties: 80 cc = self._camelcase_property_name(property["name"]) 81 property["property_id"] = "CSSProperty" + cc 82 cc = property["name_for_methods"] or cc.replace("Webkit", "") 83 property["camel_case_name"] = cc 84 set_if_none(property, "type_name", "E" + cc) 85 set_if_none(property, "getter", self._lower_first(cc)) [all …]
|
/external/clang/test/ARCMT/ |
D | assign-prop-with-arc-runtime.m | 26 @property (readonly) Foo *x; 27 @property (assign) Foo *w; 28 @property Foo *q1, *q2; 29 @property (assign) WeakOptOut *oo; 30 @property (assign) BadClassForWeak bcw; 31 @property (assign) id not_safe1; 32 @property () NSObject *not_safe2; 33 @property Forw *not_safe3; 34 @property (readonly) Foo *assign_plus1; 35 @property (readonly) Foo *assign_plus2; [all …]
|
D | assign-prop-with-arc-runtime.m.result | 26 @property (weak, readonly) Foo *x; 27 @property (weak) Foo *w; 28 @property (weak) Foo *q1, *q2; 29 @property (unsafe_unretained) WeakOptOut *oo; 30 @property (unsafe_unretained) BadClassForWeak bcw; 31 @property (unsafe_unretained) id not_safe1; 32 @property (unsafe_unretained) NSObject *not_safe2; 33 @property (unsafe_unretained) Forw *not_safe3; 34 @property (readonly) Foo *assign_plus1; 35 @property (readonly) Foo *assign_plus2; [all …]
|
/external/clang/test/CodeGenObjC/ |
D | default-property-synthesis.m | 4 // Superclass declares property. Subclass redeclares the same property. 6 // Superclass declares a property. Subclass declares a different property with the same name 8 // Superclass conforms to a protocol that declares a property. Subclass redeclares the 9 // same property. Do not @synthesize-by-default in the subclass. P3 10 // Superclass conforms to a protocol that declares a property. Subclass conforms to the 15 @property int P3; 16 @property int P4; 20 @property int IMP1; 24 @property int P1; 25 @property (copy) id P2; [all …]
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/ |
D | StringPropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor.string; 13 import org.eclipse.wb.internal.core.model.property.Property; 14 import org.eclipse.wb.internal.core.model.property.editor.AbstractTextPropertyEditor; 15 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor; 16 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresenta… 17 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation; 18 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 46 protected void onClick(PropertyTable propertyTable, Property property) throws Exception { 47 openDialog(propertyTable, property); 62 public String getText(Property property) throws Exception { in getText() argument [all …]
|