/external/clang/test/SemaObjCXX/ |
property-type-mismatch.mm | 11 @property (assign) NSObject<P1> *prop; 18 @property (assign) NSObject<P2> *prop;
|
/external/skia/experimental/iOSSampleApp/iPad/ |
AppDelegate_iPad.h | 16 @property (nonatomic, retain) IBOutlet UIWindow* window; 17 @property (nonatomic, retain) IBOutlet SkUISplitViewController* splitViewController;
|
/external/skia/experimental/iOSSampleApp/iPhone/ |
AppDelegate_iPhone.h | 16 @property (nonatomic, retain) IBOutlet UIWindow *window; 17 @property (nonatomic, retain) IBOutlet SkUINavigationController* fRoot;
|
/external/v8/tools/ |
detect-builtins.js | 28 var property = { "name": name }; 32 property.type = "getter"; 33 result[name] = property; 37 property.type = type; 39 property.length = value.length; class 40 property.prototype = GetProperties("prototype", value.prototype); 42 property.properties = GetProperties(name, value); 43 result[name] = property;
|
/external/clang/test/SemaObjC/ |
property-typecheck-1.m | 5 @property int x; // expected-warning {{type of property 'x' does not match type of accessor 'x'}} 9 @property int moo; // expected-note {{previous definition is here}} 25 @property(assign) T p2; // expected-error {{property cannot have array or function type 'T'}} 27 @property(assign) F f2; // expected-error {{property cannot have array or function type 'F'}} 35 @property(nonatomic,readonly,retain) SSyncSet* syncSet; 52 @property(nonatomic,readonly,retain) SPeer_iDisk_local* localPeer; 61 return self.syncSet.localPeer; // expected-warning {{type of property 'syncSet' does not match type of accessor 'syncSet'} [all...] |
property-error-readonly-assign.m | 5 @property (readonly) int x; 6 @property int ok; 16 a.x = 10; // expected-error {{assignment to readonly property}} 18 b.x = 10; // expected-error {{no setter method 'setX:' for assignment to property}} 42 self.frame = NSMakeRect(); // expected-error {{no setter method 'setFrame:' for assignment to property}}
|
property-ivar-mismatch.m | 2 // Test that arithmatic types on property and its ivar have exact match. 8 @property int prop; 12 @synthesize prop = ivar; // expected-error {{type of property 'prop' ('int') does not match type of instance variable 'ivar' ('char')}} 20 @property int P; 24 @synthesize P=_P; // expected-error {{ype of property 'P' ('int') does not match type of instance variable '_P' ('void *')}}
|
iboutletcollection-attr.m | 13 @property (nonatomic, retain) __attribute__((iboutletcollection(I))) id prop1; 14 @property (nonatomic, retain) __attribute__((iboutletcollection(id))) id prop2; 15 @property (nonatomic, retain) __attribute__((iboutletcollection())) id prop3; 16 @property (nonatomic, retain) __attribute__((iboutletcollection)) id prop4; 28 @property (nonatomic, retain) __attribute__((iboutletcollection(I,2,3))) id prop1; // expected-error {{expected ')'}} expected-note {{to match}} 29 @property (nonatomic, retain) __attribute__((iboutletcollection(B))) id prop2; // expected-error {{unknown type name 'B'}} 31 @property __attribute__((iboutletcollection(BAD))) int prop3; // expected-warning {{property with 'iboutletcollection' attribute must be an object type (invalid 'int')}} 41 @property (nonatomic, strong) 49 @property (nonatomic, assign) __attribute__((iboutletcollection(UILabel))) NSArray *labels; // expected-warn (…) [all...] |
arc-decls.m | 57 @property (retain) id newFoo; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expected-note{{explicitly declare getter '-newFoo' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}} 58 @property (strong) id copyBar; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expected-note{{explicitly declare getter '-copyBar' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}} 59 @property (copy) id allocBaz; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expected-note{{explicitly declare getter '-allocBaz' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}} 60 @property (copy, nonatomic) id new; 61 @property (retain) id newDFoo; // expected-error {{property follows Cocoa naming convention for returning 'owned' objects}} expected-note{{explicitly declare getter '-newDFoo' with '__attribute__((objc_method_family(none)))' to return an 'unowned' object}} 62 @property (strong) id copyDBar; // expected-error {{property follows Cocoa naming convention for returning ' (…) [all...] |
/frameworks/av/services/audiopolicy/engineconfigurable/src/ |
Element.h | 66 * A Policy element may implement getter/setter function for a given property. 67 * Property may be routing_strategy, audio_stream_type_t, audio_usage_t, audio_source_t 70 * @tparam Property for which this policy element has setter / getter. 71 * @return the property kept track by this policy base element. 73 template <typename Property> 74 Property get() const; 77 * A Policy element may implement getter/setter function for a given property. 78 * Property may be routing_strategy, audio_stream_type_t, audio_usage_t, audio_source_t 81 * @tparam Property for which this policy element has setter / getter. 83 * @param[in] property value to be assigned for this policy base element [all...] |
/external/clang/test/CodeGenObjC/ |
synthesize_ivar.m | 7 @property int IP; 17 // Test for synthesis of ivar for a property 23 @property (retain) id bindingInfo; 30 // <rdar://problem/7336352> [irgen] crash in synthesized property construction 37 @property (assign, readwrite) id p0;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
XmlPropertyComposite.java | 22 import org.eclipse.wb.internal.core.model.property.Property; 27 * Property holding multiple instances of the same {@link XmlProperty} (but 33 * org.eclipse.wb.internal.core.model.property.GenericPropertyComposite 67 XmlPropertyComposite property = (XmlPropertyComposite) obj; local 68 return Arrays.equals(mProperties, property.mProperties); 76 for (Property property : mProperties) { 77 if (property.isModified()) { 88 for (Property property : mProperties) 113 Property property = properties[i]; local [all...] |
BooleanXmlPropertyEditor.java | 26 import org.eclipse.wb.internal.core.model.property.Property; 27 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 31 * Handle an XML property which represents booleans. 50 public void paint(Property property, GC gc, int x, int y, int width, int height) 52 Object value = property.getValue(); 84 public boolean activate(PropertyTable propertyTable, Property property, Point location) 88 cycleValue(property); [all...] |
PropertyFactory.java | 52 import org.eclipse.wb.internal.core.editor.structure.property.PropertyListIntersector; 53 import org.eclipse.wb.internal.core.model.property.ComplexProperty; 54 import org.eclipse.wb.internal.core.model.property.Property; 55 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory; 56 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor; 57 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation; 73 * The {@link PropertyFactory} creates (and caches) the set of {@link Property} 87 System.err.println("WARNING: The property cache is disabled"); 91 private static final Property[] NO_PROPERTIES = new Property[0] 211 XmlProperty property = new XmlProperty(editor, this, node, descriptor); local 285 XmlProperty property = properties.get(i); local 412 Property property = new ComplexProperty( local 427 Property property = new ComplexProperty( local 452 XmlProperty property = properties.get(i); local 665 Property property = new ComplexProperty( local 680 Property property = new ComplexProperty( local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/ |
build.xml | 3 <property name="pde.build.scripts" value="${eclipse.pdebuild.scripts}"/> 4 <property name="buildDirectory" location="${basedir}/src" /> 17 <available file="${buildDirectory}/label.properties" property="label.properties.exists" /> 19 <property file="${buildDirectory}/label.properties" /> 25 <property name="date" value="${DSTAMP}" /> 26 <property name="time" value="${TSTAMP}" /> 27 <property name="timestamp" value="${date}${time}" /> 28 <property name="buildType" value="I" /> 29 <property name="buildId" value="${buildType}${date}" /> 32 <property name="buildLabel" value="${buildType}-${buildId}-${timestamp}" / [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.databinding.property_1.3.0.I20100601-0800.jar | |
/external/pdfium/testing/resources/javascript/ |
globals_expected.txt | 3 Alert: setPersistent = function setPersistent() { [native code] }, own property = true 15 Alert: setPersistent = function setPersistent() { [native code] }, own property = true 16 Alert: true_var = true, own property = true 17 Alert: false_var = false, own property = true 18 Alert: zero_var = 0, own property = true 19 Alert: number_var = -3.918, own property = true 20 Alert: string_var = This is a string, own property = true 21 Alert: object_var = [object Object], own property = true 22 Alert: null_var = null, own property = true 23 Alert: undefined_var = undefined, own property = tru [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
BooleanPropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 17 import org.eclipse.wb.internal.core.model.property.Property; 18 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 25 * @coverage core.model.property.editor 48 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception { 49 Object value = property.getValue(); 82 public boolean activate(PropertyTable propertyTable, Property property, Point location [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/ |
UProperty.java | 34 * Special value indicating undefined property. 42 * <p>Binary property Alphabetic. </p> 43 * <p>Property for UCharacter.isUAlphabetic(), different from the property 57 * Binary property ASCII_Hex_Digit (0-9 A-F a-f). 63 * <p>Binary property Bidi_Control.</p> 71 * <p>Binary property Bidi_Mirrored.</p> 73 * <p>Property for UCharacter.isMirrored().</p> 80 * <p>Binary property Dash.</p> 87 * <p>Binary property Default_Ignorable_Code_Point (new) [all...] |
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/ |
BluetoothMapBmessageParser.java | 32 import android.bluetooth.client.map.utils.BmsgTokenizer.Property; 44 private final static Property BEGIN_BMSG = new Property("BEGIN", "BMSG"); 45 private final static Property END_BMSG = new Property("END", "BMSG"); 47 private final static Property BEGIN_VCARD = new Property("BEGIN", "VCARD"); 48 private final static Property END_VCARD = new Property("END", "VCARD"); 50 private final static Property BEGIN_BENV = new Property("BEGIN", "BENV") [all...] |
/external/v8/test/webkit/ |
dfg-compare-final-object-to-final-object-or-other-when-both-proven-final-object-expected.txt | 29 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 31 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 33 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 35 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 37 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 39 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 41 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 43 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 45 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 47 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null [all...] |
dfg-compare-final-object-to-final-object-or-other-when-proven-final-object-expected.txt | 29 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 31 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 33 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 35 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 37 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 39 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 41 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 43 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 45 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 47 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null [all...] |
dfg-peephole-compare-final-object-to-final-object-or-other-when-both-proven-final-object-expected.txt | 29 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 31 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 33 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 35 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 37 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 39 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 41 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 43 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 45 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 47 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null [all...] |
dfg-peephole-compare-final-object-to-final-object-or-other-when-proven-final-object-expected.txt | 29 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 31 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 33 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 35 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 37 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 39 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 41 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 43 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 45 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null. 47 PASS foo({f:42}, null) threw exception TypeError: Cannot read property 'f' of null [all...] |
/external/lldb/scripts/Python/interface/ |
SBSymbol.i | 76 if _newclass: name = property(GetName, None, doc='''A read only property that returns the name for this symbol as a string.''') 79 if _newclass: mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this symbol as a string.''') 82 if _newclass: type = property(GetType, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eSymbolType") that represents the type of this symbol.''') 85 if _newclass: addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this symbol.''') 88 if _newclass: end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this symbol.''' [all...] |