/external/clang/test/SemaObjCXX/ |
property-type-mismatch.mm | 11 @property (assign) NSObject<P1> *prop; 18 @property (assign) NSObject<P2> *prop; 25 @property (nonatomic,readonly,nonnull) C<D *> *property; 29 @property (nonatomic, setter=_setProperty:) C *property; // okay
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
EnumXmlPropertyEditor.java | 23 import org.eclipse.wb.internal.core.model.property.Property; 24 import org.eclipse.wb.internal.core.model.property.editor.AbstractComboPropertyEditor; 25 import org.eclipse.wb.internal.core.model.property.editor.ITextValuePropertyEditor; 35 protected String getText(Property property) throws Exception { 36 Object value = property.getValue(); 41 } else if (value == Property.UNKNOWN_VALUE) { 48 private String[] getItems(Property property) { [all...] |
/external/guava/guava-tests/test/com/google/common/base/ |
StandardSystemPropertyTest.java | 29 for (StandardSystemProperty property : StandardSystemProperty.values()) { 30 String fieldName = property.name(); 32 assertEquals(expected, property.key()); 37 for (StandardSystemProperty property : StandardSystemProperty.values()) { 38 assertEquals(System.getProperty(property.key()), property.value()); 43 for (StandardSystemProperty property : StandardSystemProperty.values()) { 44 assertEquals(property.key() + "=" + property.value(), property.toString()) [all...] |
/external/jacoco/org.jacoco.ant/src/org/jacoco/ant/ |
AgentTask.java | 22 private String property; field in class:AgentTask 25 * Sets the name of the property to hold the agent JVM options 27 * @param property 28 * Name of the property to be populated 30 public void setProperty(final String property) { 31 this.property = property; 36 * <code>property</code> with the JVM arguments required to use it. The 37 * value set into the property is only valid for the lifetime of the current 42 if (property == null || property.length() == 0) [all...] |
/external/clang/test/SemaObjC/ |
property.m | 8 @property int d1; 9 @property id prop_id; // expected-warning {{no 'assign', 'retain', or 'copy' attribute is specified - 'assign' is assumed}}, expected-warning {{default property attribute 'assign' not appropriate for non-GC object}} 10 @property int name; 14 @property int d1; 18 @synthesize d1; // expected-error {{synthesized property 'd1' must either be named the same as}} 19 @dynamic bad; // expected-error {{property implementation must have its declaration in interface 'I'}} 20 @synthesize prop_id; // expected-error {{synthesized property 'prop_id' must either be named the same}} // expected-note {{previous declaration is here}} 21 @synthesize prop_id = IVAR; // expected-error {{type of property 'prop_id' ('id') does not match type of instance variable 'IVAR' ('int')}} // expected-error {{property 'prop_id' is already implemented} [all...] |
class-property-access.m | 20 @property int property; 29 (void)RootClass.property; 30 (void)Subclass.property; 34 RootClass.property = 1; 35 Subclass.property = 2; 44 (void)[RootClass property]; 45 (void)[Subclass property];
|
custom-atomic-property.m | 4 @property (assign) Foo *myProp; // expected-note {{property declared here}} expected-note {{property declared here}} 8 -(Foo*)myProp {return 0;} // expected-warning {{atomic by default property 'myProp' has a user defined getter (property should be marked 'atomic' if this is intended)}} 9 -(void)setMyProp:(Foo*)e {} // expected-warning {{atomic by default property 'myProp' has a user defined setter (property should be marked 'atomic' if this is intended)}} 15 @property (assign) Foo *myProp;
|
unused-backing-ivar-warning.m | 1 // 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} [all...] |
property-category-4.m | 10 @property (readwrite, retain) id selectedObjects; // expected-note {{property declared here}} 11 @property (readwrite, retain) id d_selectedObjects; // expected-note {{property declared here}} 15 @synthesize selectedObjects = _selectedObjects; // expected-error {{property declared in category 'CAT' cannot be implemented in class implementation}} 16 @dynamic d_selectedObjects; // expected-error {{property declared in category 'CAT' cannot be implemented in class implementation}} 27 @property (readonly) int count; 65 @property (readonly) int count; 79 @property int d1; 83 @property int d1 [all...] |
continuation-class-err.m | 8 @property(readonly) id object; 9 @property(readwrite, assign) id object1; // expected-note {{property declared here}} 10 @property (readonly) int indentLevel; 14 @property(readwrite, copy) id object; // Ok. declaring memory model in class extension - primary has none. 15 @property(readonly) id object1; // expected-error {{illegal redeclaration of property in class extension 'ReadOnly' (attribute must be 'readwrite', while its primary must be 'readonly')}} 16 @property (readwrite, assign) int indentLevel; // OK. assign the default in any case. 20 @property (copy) id fee; // expected-note {{property declared here} [all...] |
property-2.m | 5 @property char PropertyAtomic_char; 6 @property short PropertyAtomic_short; 7 @property int PropertyAtomic_int; 8 @property long PropertyAtomic_long; 9 @property long long PropertyAtomic_longlong; 10 @property float PropertyAtomic_float; 11 @property double PropertyAtomic_double; 12 @property(assign) id PropertyAtomic_id; 13 @property(retain) id PropertyAtomicRetained_id; 14 @property(copy) id PropertyAtomicRetainedCopied_id [all...] |
/external/clang/test/CodeGenObjC/ |
objc2-ivar-assign.m | 17 @property id property; 18 @property I* propertyI; 20 @property TI* propertyTI; 22 @property TPI propertyTPI; 24 @property ID propertyID; 28 @synthesize property=_property; 37 myObj.property = 0;
|
newproperty-nested-synthesis-1.m | 9 @property char PropertyAtomic_char; 10 @property short PropertyAtomic_short; 11 @property int PropertyAtomic_int; 12 @property long PropertyAtomic_long; 13 @property long long PropertyAtomic_longlong; 14 @property float PropertyAtomic_float; 15 @property double PropertyAtomic_double; 16 @property(assign) id PropertyAtomic_id; 17 @property(retain) id PropertyAtomicRetained_id; 18 @property(copy) id PropertyAtomicRetainedCopied_id [all...] |
/external/clang/test/Modules/Inputs/ |
category_right_sub.h | 2 @property id right_sub_prop; 13 @property (retain) id p4_prop;
|
/external/libchrome/dbus/ |
property.cc | 5 #include "dbus/property.h" 50 PropertyBase* property) { 51 property->Init(this, name); 52 properties_map_[name] = property; 73 LOG(WARNING) << "Property changed signal has wrong parameters: " 82 LOG(WARNING) << "Property changed signal has wrong parameters: " 87 LOG(WARNING) << "Property changed signal has wrong parameters: " 100 void PropertySet::Get(PropertyBase* property, GetCallback callback) { 104 writer.AppendString(property->name()); 111 property, 284 PropertyBase* property = it->second; local [all...] |
/external/llvm/utils/jedit/ |
tablegen.xml | 5 <PROPERTY NAME="lineComment" VALUE="//" /> 6 <PROPERTY NAME="commentStart" VALUE="/*" /> 7 <PROPERTY NAME="commentEnd" VALUE="*/" /> 8 <PROPERTY NAME="indentOpenBrackets" VALUE="{" /> 9 <PROPERTY NAME="indentCloseBrackets" VALUE="}" /> 10 <PROPERTY NAME="wordBreakChars" VALUE=",+-=<>/?^&*" /> 11 <PROPERTY NAME="unalignedOpenBrackets" VALUE="(<" /> 12 <PROPERTY NAME="unalignedCloseBrackets" VALUE=")>" />
|
/external/swiftshader/third_party/LLVM/utils/jedit/ |
tablegen.xml | 5 <PROPERTY NAME="lineComment" VALUE="//" /> 6 <PROPERTY NAME="commentStart" VALUE="/*" /> 7 <PROPERTY NAME="commentEnd" VALUE="*/" /> 8 <PROPERTY NAME="indentOpenBrackets" VALUE="{" /> 9 <PROPERTY NAME="indentCloseBrackets" VALUE="}" /> 10 <PROPERTY NAME="wordBreakChars" VALUE=",+-=<>/?^&*" /> 11 <PROPERTY NAME="unalignedOpenBrackets" VALUE="(<" /> 12 <PROPERTY NAME="unalignedCloseBrackets" VALUE=")>" />
|
/external/webrtc/webrtc/examples/objc/AppRTCDemo/ |
ARDJoinResponse+Internal.h | 6 * tree. An additional intellectual property rights grant can be found 15 @property(nonatomic, assign) ARDJoinResultType result; 16 @property(nonatomic, assign) BOOL isInitiator; 17 @property(nonatomic, strong) NSString *roomId; 18 @property(nonatomic, strong) NSString *clientId; 19 @property(nonatomic, strong) NSArray *messages; 20 @property(nonatomic, strong) NSURL *webSocketURL; 21 @property(nonatomic, strong) NSURL *webSocketRestURL;
|
ARDJoinResponse.h | 6 * tree. An additional intellectual property rights grant can be found 22 @property(nonatomic, readonly) ARDJoinResultType result; 23 @property(nonatomic, readonly) BOOL isInitiator; 24 @property(nonatomic, readonly) NSString *roomId; 25 @property(nonatomic, readonly) NSString *clientId; 26 @property(nonatomic, readonly) NSArray *messages; 27 @property(nonatomic, readonly) NSURL *webSocketURL; 28 @property(nonatomic, readonly) NSURL *webSocketRestURL;
|
/hardware/interfaces/bluetooth/1.0/default/ |
android.hardware.bluetooth@1.0-service.rc | 7 on property:vts.native_server.on=1 && property:ro.build.type=userdebug 9 on property:vts.native_server.on=1 && property:ro.build.type=eng 11 on property:vts.native_server.on=0 && property:ro.build.type=userdebug 13 on property:vts.native_server.on=0 && property:ro.build.type=eng
|
/packages/services/Car/tests/android_car_api_test/src/android/car/apitest/ |
CarHvacManagerTest.java | 48 for (CarPropertyConfig property : properties) { 49 if (supportedTypes.contains(property.getPropertyType())) { 50 assertTypeAndZone(property); 52 fail("Type is not supported for " + property); 67 private void assertTypeAndZone(CarPropertyConfig property) { 68 switch (property.getPropertyId()) { 70 checkTypeAndGlobal(Boolean.class, true, property); 74 checkTypeAndGlobal(Integer.class, true, property); 75 checkIntMinMax(property); 78 checkTypeAndGlobal(Float.class, true, property); [all...] |
/external/compiler-rt/lib/builtins/Darwin-excludes/ |
CMakeLists.txt | 3 set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${filter_file})
|
/external/compiler-rt/lib/builtins/macho_embedded/ |
CMakeLists.txt | 3 set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${filter_file})
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/ |
MethodProperty.java | 24 * A <code>MethodProperty</code> is a <code>Property</code> which is accessed 33 private final PropertyDescriptor property; field in class:MethodProperty 37 public MethodProperty(PropertyDescriptor property) { 38 super(property.getName(), property.getPropertyType(), 39 property.getReadMethod() == null ? null : property.getReadMethod() 41 this.property = property; 42 this.readable = property.getReadMethod() != null [all...] |
/external/clang/test/Parser/ |
objc-synthesized-recover.m | 8 @property int value; 9 @property int value2; 13 @synthesize value, - value2; // expected-error{{expected a property name}}
|