/external/clang/test/SemaObjC/ |
default-synthesize-1.m | 1 // 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 explicitly synthesized}} 12 @property (retain) NSString* what; // expected-warning {{auto property synthesis is synthesizing property not explicitly synthesized}} 21 @property (nonatomic) int howMany; // expected-warning {{auto property synthesis is synthesizing property not explicitly synthesized} [all...] |
error-missing-getter.m | 12 if (x.setterOnly) { // expected-error {{no getter method for read from property}} 15 func(x.setterOnly + 1, x); // expected-error {{no getter method for read from property}} 16 int i = x.setterOnly + 1; // expected-error {{no getter method for read from property}} 17 return x.setterOnly + 1; // expected-error {{no getter method for read from property}} 27 if (TestClass.setterOnly) { // expected-error {{no getter method for read from property}} 30 func(TestClass.setterOnly + 1, x); // expected-error {{no getter method for read from property}} \ 32 int i = TestClass.setterOnly + 1; // expected-error {{no getter method for read from property}} 33 return TestClass.setterOnly + 1; // expected-error {{no getter method for read from property}} 41 return super.setterOnly; // expected-error {{no getter method for read from property}}
|
error-property-gc-attr.m | 13 @property (assign) __weak id pweak; 14 @property (assign) __weak id WID; 15 @property (assign) __strong id NOT; 16 @property (assign) id ID; 17 @property (assign) INTF* AWEAK; 18 @property (assign) __weak INTF* WI; 22 @synthesize pweak=IVAR; // expected-error {{existing instance variable 'IVAR' for __weak property 'pweak' must be __weak}} 23 @synthesize NOT=II; // expected-error {{existing instance variable 'II' for strong property 'NOT' may not be __weak}} 26 @synthesize AWEAK; // expected-error {{existing instance variable 'AWEAK' for strong property 'AWEAK' may not be __weak}}
|
forward-protocol-incomplete-impl-warn.m | 8 @property int Prop; // expected-note {{property declared here}} 18 @implementation IBImageCatalogDocument // expected-warning {{auto property synthesis will not synthesize property 'Prop' declared in protocol 'DVTInvalidation'}} \
|
ivar-sem-check-2.m | 6 @property(retain) id value; 7 @property(retain) id value1; 8 @property(retain) id prop; 20 @synthesize prop=value2; // expected-error {{property 'prop' attempting to use instance variable 'value2' declared in super class 'Super'}}
|
mrc-no-weak.m | 10 @property __weak id y; 17 @property __weak id x; 25 @property __weak id x; // expected-note {{property declared here}} 28 @synthesize x; // expected-error {{cannot synthesize weak property in file using manual reference counting}} 32 @property __weak id x; // expected-note {{property declared here}} 34 @implementation D // expected-error {{cannot synthesize weak property in file using manual reference counting}} 49 @property (weak) id x;
|
property-ns-returns-not-retained-attr.m | 5 @property (nonatomic, retain) id newName __attribute__((ns_returns_not_retained)) ; 7 @property (nonatomic, retain) id newName1 __attribute__((ns_returns_not_retained)) ; 10 @property (nonatomic, retain) id newName2 __attribute__((ns_returns_not_retained)); // expected-note {{roperty declared here}} 11 - (id) newName2; // expected-warning {{property declared as returning non-retained objects; getter returning retained objects}}
|
super-class-protocol-conformance.m | 7 @property (readonly) id myString; // expected-note {{property}} 24 @implementation TopClass // expected-warning {{property 'myString' requires method 'myString' to be defined}} 42 @property (readonly) id myNewString; // expected-note {{property}} 46 @implementation SubClass5 @end // expected-warning {{property 'myNewString' requires method 'myNewString' to be defined}} 57 @property (readonly, assign) id invalidationBacktrace; // expected-note {{property}} 63 @implementation INTF @end // expected-warning{{property 'invalidationBacktrace' requires method 'invalidationBacktrace' to be defined}}
|
default-synthesize.m | 8 @property int howMany; 9 @property (retain) NSString* what; 20 @property (nonatomic) int howMany; // REM: nonatomic to avoid warnings about only implementing one of the pair 21 @property (nonatomic, retain) NSString* what; 42 @property (nonatomic) int howMany; // REM: nonatomic to avoid warnings about only implementing one of the pair 43 @property (nonatomic, retain) NSString* what; 65 @property int howMany; 66 @property (retain) NSString* what; 91 @property (readonly) id myString; 108 @property int p; // expected-note 2 {{property declared here} [all...] |
warn-retain-block-property.m | 14 @property (retain) void (^aBlock)(void); 15 @property (weak, retain) void (^aBlockW)(void); 16 @property (strong, retain) void (^aBlockS)(void); // OK 17 @property (readonly, retain) void (^aBlockR)(void); // OK 18 @property (copy, retain) void (^aBlockC)(void); 19 @property (assign, retain) void (^aBlockA)(void); 34 // CHECK-ARC: 14:1: warning: retain'ed block property does not copy the block - use copy attribute instead 35 // CHECK-ARC: @property (retain) void (^aBlock)(void); 37 // CHECK-ARC: 15:1: error: property attributes 'retain' and 'weak' are mutually exclusive 38 // CHECK-ARC: @property (weak, retain) void (^aBlockW)(void) [all...] |
/external/clang/test/SemaObjCXX/Inputs/ |
nullability-consistency-2.h | 12 @property (retain,nonnull) id property1; 13 @property (retain,nullable) SomeClass *property2; 16 @property (readonly, weak) SomeClass *property3; // expected-warning{{missing a nullability type specifier}} 20 @property (readonly, weak) SomeClass *property4; // expected-warning{{missing a nullability type specifier}}
|
/external/clang/test/SemaObjCXX/ |
property-synthesis-error.mm | 13 @property (readonly) NSMutableArray * array; 19 @property (readwrite, retain) NSMutableArray * array; 63 @property (assign, readwrite) const TCPPObject& cppObject; 64 @property (assign, readwrite, nonatomic) const TCPPObject& ncppObject; 65 @property (assign, readwrite) const Trivial& tcppObject; 70 @synthesize cppObject = _cppObject; // expected-error {{atomic property of reference type 'const TCPPObject &' cannot have non-trivial assignment operator}} 79 @property (readonly, nonatomic) IncompleteStruct& x; // expected-note {{property declared here}} 80 @property (readonly, nonatomic) IncompleteStruct& y; // expected-note {{property declared here} [all...] |
/external/lzma/CPP/7zip/UI/Common/ |
Property.h | 0 // Property.h
|
SetProperties.h | 6 #include "Property.h"
|
/external/protobuf/objectivec/ |
GPBDescriptor.h | 56 @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...] |
/system/sepolicy/reqd_mask/ |
property_contexts | 2 # non-platform property context for devices without any property_contexts
|
/hardware/libhardware/modules/camera/3_4/metadata/ |
property_test.cpp | 17 #include "property.h" 49 Property<int32_t> property(int_tag_, 1); 52 EXPECT_EQ(property.ControlTags().size(), 0); 53 EXPECT_EQ(property.DynamicTags().size(), 0); 54 ASSERT_EQ(property.StaticTags().size(), 1); 57 EXPECT_EQ(property.StaticTags()[0], expected_tag); 61 // Set up a fixed property. 63 Property<int32_t> property(int_tag_, data) [all...] |
/system/core/rootdir/ |
init.usb.configfs.rc | 1 on property:sys.usb.config=none && property:sys.usb.configfs=1 15 on property:init.svc.adbd=stopped 18 on property:sys.usb.config=adb && property:sys.usb.configfs=1 21 on property:sys.usb.ffs.ready=1 && property:sys.usb.config=adb && property:sys.usb.configfs=1 27 on property:sys.usb.ffs.mtp.ready=1 && property:sys.usb.config=mtp && property:sys.usb.configfs= [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/ |
PropertyUtils.java | 35 private final Map<Class<?>, Map<String, Property>> propertiesCache = new HashMap<Class<?>, Map<String, Property>>(); 36 private final Map<Class<?>, Set<Property>> readableProperties = new HashMap<Class<?>, Set<Property>>(); 41 protected Map<String, Property> getPropertiesMap(Class<?> type, BeanAccess bAccess) 47 Map<String, Property> properties = new LinkedHashMap<String, Property>(); 63 for (PropertyDescriptor property : Introspector.getBeanInfo(type) 65 Method readMethod = property.getReadMethod(); 67 properties.put(property.getName(), new MethodProperty(property)) 127 Property property = properties.get(name); local [all...] |
/external/clang/test/ARCMT/ |
GC-no-finalize-removal.m | 30 @property (retain) id prop; 51 @property (assign) I3 *__weak pw1, *__weak pw2; 52 @property (assign) I3 *__strong ps; 53 @property (assign) I3 * pds; 62 @property (assign) I4Impl *__weak pw1, *__weak pw2; 63 @property (assign) I4Impl *__strong ps; 64 @property (assign) I4Impl * pds; 65 @property (assign) I4Impl * pds2; 66 @property (readwrite) I4Impl * pds3; 67 @property (readonly) I4Impl * pds4 [all...] |
GC-no-finalize-removal.m.result | 32 @property (strong) id prop; 59 @property (weak) I3 * pw1, * pw2; 60 @property (strong) I3 * ps; 61 @property (assign) I3 * pds; 70 @property (weak) I4Impl * pw1, * pw2; 71 @property (strong) I4Impl * ps; 72 @property (strong) I4Impl * pds; 73 @property (strong) I4Impl * pds2; 74 @property (readwrite) I4Impl * pds3; 75 @property (readonly) I4Impl * pds4 [all...] |
GC.m | 30 @property (retain) id prop; 51 @property (assign) I3 *__weak pw1, *__weak pw2; 52 @property (assign) I3 *__strong ps; 53 @property (assign) I3 * pds; 62 @property (assign) I4Impl *__weak pw1, *__weak pw2; 63 @property (assign) I4Impl *__strong ps; 64 @property (assign) I4Impl * pds; 65 @property (assign) I4Impl * pds2; 66 @property (readwrite) I4Impl * pds3; 67 @property (readonly) I4Impl * pds4 [all...] |
GC.m.result | 26 @property (strong) id prop; 46 @property (weak) I3 * pw1, * pw2; 47 @property (strong) I3 * ps; 48 @property (assign) I3 * pds; 57 @property (weak) I4Impl * pw1, * pw2; 58 @property (strong) I4Impl * ps; 59 @property (strong) I4Impl * pds; 60 @property (strong) I4Impl * pds2; 61 @property (readwrite) I4Impl * pds3; 62 @property (readonly) I4Impl * pds4 [all...] |
/external/mockftpserver/MockFtpServer/src/test/resources/ |
fakeftpserver-beans.xml | 28 <property name="serverControlPort" value="9981"/>
29 <property name="systemName" value="UNIX"/>
30 <property name="userAccounts">
33 <property name="username" value="joe"/>
34 <property name="password" value="password"/>
35 <property name="homeDirectory" value="/"/>
38 </property>
40 <property name="fileSystem">
42 <property name="createParentDirectoriesAutomatically" value="false"/>
43 <property name="entries"> [all...] |
/device/google/muskie/ |
init-common.rc | 11 on property:sys.boot_completed=1 19 on property:sys.boot_completed=1 && property:ro.build.type=user 22 on init && property:ro.boot.revision=EVM 25 on init && property:ro.boot.revision=EVT0 28 on init && property:ro.boot.revision=EVT1 31 on init && property:ro.boot.revision=EVT2 34 on init && property:ro.boot.revision=DVT 37 on init && property:ro.boot.revision=MP0 # PVT 40 on init && property:ro.boot.revision=MP [all...] |