/external/clang/test/SemaObjC/ |
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...] |
property-category-1.m | 12 @property(readonly) int object; 13 @property(readonly) int Anotherobject; 17 @property(readwrite) int object; 18 @property(readwrite, setter = myAnotherobjectSetter:) int Anotherobject; 40 @property(readonly) int p0; // expected-note {{property declared here}} 49 @implementation I0 // expected-warning {{property 'p0' requires method 'p0' to be define}} 51 self.p0 = 0; // expected-error {{assignment to readonly property}}
|
property-category-impl.m | 12 @property(readonly) int foo; 20 @property(readwrite) int foo; 28 @property(readwrite) int foo; 35 // No warn of unimplemented property of protocols in category, 39 @property (nonatomic) char myProperty; 40 @property (nonatomic) char myProperty2; 47 @property (nonatomic) char myProperty; 48 @property (nonatomic) char myProperty2;
|
rdr-6211479-array-property.m | 7 @property(assign) T p2; // expected-error {{property cannot have array or function type 'T' (aka 'int [2]')}}
|
writable-property-in-superclass.m | 5 @property (assign, readonly) int P; 9 @property (assign) int P;
|
/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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/ |
Property.java | 11 package org.eclipse.wb.internal.core.model.property; 15 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory; 16 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor; 22 * {@link Property} is used to display/change properties of ObjectInfo's. 25 * @coverage core.model.property 27 public abstract class Property { 29 * The value that should be used when we don't know real value of {@link Property}. We can not use 50 public Property(PropertyEditor editor) { 61 * @return the title displayed to the user to identify the property. 66 * @return <code>true</code> if this property has a non-default valu [all...] |
/external/lldb/test/lang/objc/foundation/ |
my-base.h | 7 @property int propertyMovesThings;
|
/external/lzma/CPP/7zip/UI/Common/ |
SetProperties.h | 6 #include "Property.h"
|
/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...] |
/external/clang/test/Analysis/ |
PR2978.m | 22 @property(retain) id X; 23 @property(retain) id Y; 24 @property(assign) id Z; 25 @property(assign) id K; 26 @property(readonly) id N; 27 @property(retain) id M; 28 @property(retain) id V; 29 @property(retain) id W; 36 @synthesize Y = _Y; // expected-warning{{The '_Y' instance variable was retained by a synthesized property but wasn't released in 'dealloc'}} 37 @synthesize Z = _Z; // expected-warning{{The '_Z' instance variable was not retained by a synthesized property but was released in 'dealloc'} [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/ |
CompoundPropertyEditorPresentation.java | 11 package org.eclipse.wb.internal.core.model.property.editor.presentation; 15 import org.eclipse.wb.internal.core.model.property.Property; 16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 25 * @coverage core.model.property.editor 50 Property property, 57 int presentationWidth = presentation.show(propertyTable, property, x, y, width, height); 65 public void hide(PropertyTable propertyTable, Property property) { [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
PropertyTooltipTextProvider.java | 11 package org.eclipse.wb.internal.core.model.property.table; 16 import org.eclipse.wb.internal.core.model.property.Property; 22 * @coverage core.model.property.table 31 public Control createTooltipControl(Property property, 40 // was: header = property.getTitle(); 41 header = property.getName(); 43 content = getText(property); 66 protected abstract String getText(Property property) throws Exception [all...] |
/external/owasp/sanitizer/src/main/org/owasp/html/ |
CssSchema.java | 42 /** Describes the kinds of tokens a CSS property's value can safely contain. */ 46 static final class Property { 56 private Property( 73 static final Property DISALLOWED = new Property( 76 private final ImmutableMap<String, Property> properties; 78 private CssSchema(ImmutableMap<String, Property> properties) { 86 * @param propertyNames a series of lower-case CSS property names that appear 88 * property name. This class's {@code main} method will dump a list of 89 * known property names when run with zero arguments 130 Property property = properties.get(propertyName); local [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
BooleanObjectPropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 14 import org.eclipse.wb.internal.core.model.property.Property; 15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 26 * @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(); 84 public boolean activate(PropertyTable propertyTable, Property property, Point location [all...] |
/external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/jsdoc-template/ |
symbol.tmpl | 26 <properties><for each="property" in="data.properties"> 27 <property> 28 <name>{+property.name+}</name> 29 <memberOf>{+property.memberOf+}</memberOf> 30 <isStatic>{+property.isStatic+}</isStatic> 31 <desc>{+property.desc+}</desc> 32 <type>{+property.type+}</type> 33 </property></for>
|
/external/clang/test/CodeGenObjC/ |
synthesize_ivar-cont-class.m | 7 @property (readonly, retain) id viewController; 14 @property (retain) id viewController;
|
/external/clang/test/Coverage/ |
objc-language-features.inc | 12 @property(readonly) int p0; 21 @property(readonly) int p0; 22 @property(assign,nonatomic,readwrite) int p1; 23 @property(copy) id p2; 24 @property(retain) id p3; 25 @property(assign, getter=getme, setter=setme:) id p4; 26 @property(assign, readwrite) id p5; 33 // Property type can differ from ivar type.
|