/external/apache-harmony/support/src/test/resources/tests/resources/subfolder/tests/norootresources/ |
hyts_resource_en.properties | 0 property=en_resource
|
hyts_resource_en_US.properties | 0 property=en_US_resource
|
hyts_resource_fr_FR_VAR.properties | 0 property=fr_FR_VAR_resource
|
hyts_resource_fr.properties | 0 property=fr_resource
|
hyts_resource_fr_FR.properties | 0 property=fr_FR_resource
|
/external/apache-harmony/support/src/test/resources/tests/resources/subfolder/tests/resources/ |
hyts_resource_en.properties | 0 property=en_resource
|
hyts_resource_en_US.properties | 0 property=en_US_resource
|
hyts_resource_fr_FR_VAR.properties | 0 property=fr_FR_VAR_resource
|
hyts_resource.properties | 0 property=resource
|
hyts_resource_fr.properties | 0 property=fr_resource
|
hyts_resource_fr_FR.properties | 0 property=fr_FR_resource
|
/libcore/support/src/test/java/tests/resources/ |
hyts_resource.properties | 0 property=parent
|
/libcore/support/src/test/java/tests/resources/subfolder/tests/resources/ |
hyts_resource.properties | 0 property=resource
|
/external/selinux/policycoreutils/gui/ |
system-config-selinux.glade | 9 <property name="border_width">5</property> 10 <property name="destroy_with_parent">False</property> 11 <property name="name" translatable="yes">system-config-selinux</property> 12 <property name="copyright" translatable="yes">Copyright (c)2006 Red Hat, Inc. 13 Copyright (c) 2006 Dan Walsh <dwalsh@redhat.com></property> 14 <property name="wrap_license">False</property> [all...] |
polgen.glade | 6 <property name="can_focus">False</property> 7 <property name="border_width">5</property> 8 <property name="type_hint">normal</property> 9 <property name="copyright" translatable="yes">Red Hat 2007</property> 10 <property name="website">www.redhat.com</property> [all...] |
/external/selinux/policycoreutils/sepolicy/sepolicy/ |
sepolicy.glade | 14 <property name="can_focus">False</property> 15 <property name="default_width">265</property> 16 <property name="default_height">100</property> 17 <property name="decorated">False</property> 20 <property name="visible">True</property> [all...] |
/external/apache-harmony/support/src/test/resources/tests/resources/ |
hyts_resource.properties | 0 property=parent
|
/libcore/harmony-tests/src/test/resources/tests/resources/ |
hyts_resource_fr_FR.properties | 0 property=fr_FR_resource
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
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...] |
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...] |
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...] |
/external/clang/test/SemaObjC/ |
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 class extension 'Foo' (perhaps you intended this to be a 'readwrite' redeclaration of a 'readonly' public property?)} [all...] |
property-3.m | 7 @property (readwrite, copy) id d1; 8 @property (readwrite, copy) id d2; 12 @property (readonly) id d1; // expected-warning {{attribute 'readonly' of property 'd1' restricts attribute 'readwrite' of property inherited from 'I'}} expected-warning {{'copy' attribute on property 'd1' does not match the property inherited from 'I'}} 13 @property (readwrite, copy) I* d2; 20 @property (nonatomic, readonly) BOOL allowReminders; 21 @property (atomic, readonly) BOOL allowNonatomicProperty; // expected-note {{property declared here} [all...] |
conflict-atomic-property.m | 5 @property (nonatomic, assign, atomic) float dummy; // expected-error {{property attributes 'atomic' and 'nonatomic' are mutually exclusive}} 6 @property (nonatomic, assign) float d1; 7 @property (atomic, assign) float d2; 8 @property (assign) float d3; 9 @property (atomic, nonatomic, assign) float d4; // expected-error {{property attributes 'atomic' and 'nonatomic' are mutually exclusive}}
|
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 [all...] |