HomeSort by relevance Sort by last modified time
    Searched full:property (Results 126 - 150 of 10054) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/clang/test/SemaObjC/
property-9.m 13 @property (retain, nonatomic) id requestor;
14 @property (retain, nonatomic) id appleEventDescriptor;
33 @property (readwrite, retain) id<MyProtocol> myIvar;
46 @property (readonly) int; // expected-warning {{declaration does not declare anything}}
47 @property (readonly) ; // expected-error {{type name requires a specifier or qualifier}}
48 @property (readonly) int : 4; // expected-error {{property requires fields to be named}}
52 @property ( // expected-note {{to match this '('}}
56 @property (readonlyx) // expected-error {{unknown property attribute 'readonlyx'}
    [all...]
tentative-property-decl.m 4 /** A property may not be both 'readonly' and having a memory management attribute
5 (copy/retain/etc.). But, property declaration in primary class and protcols
6 are tentative as they may be overridden into a 'readwrite' property in class
8 attributes in a property.
18 @property(nonatomic, copy, readonly) NSString *prop;
19 @property(nonatomic, copy, readonly) id warnProp;
23 @property(nonatomic, copy, readwrite) NSString *prop;
33 @property(nonatomic, copy, readonly) NSString *prop;
34 @property(nonatomic, copy, readonly) id warnProp;
41 @property(nonatomic, copy, readwrite) NSString *prop
    [all...]
conflict-nonfragile-abi2.m 8 @property int glob;
9 @property int p;
10 @property int le;
11 @property int l;
12 @property int ls;
13 @property int r;
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'}} \
iboutlet.m 11 @property (getter = MyGetter, readonly, assign) IBOutlet NSView *myView; // expected-warning {{readonly IBOutlet property 'myView' when auto-synthesized may not work correctly with 'nib' loader}} expected-note {{property should be changed to be readwrite}}
13 IBInspectable @property (readonly) IBOutlet NSView *myView1; // expected-warning {{readonly IBOutlet property 'myView1' when auto-synthesized may not work correctly with 'nib' loader}} expected-note {{property should be changed to be readwrite}}
15 @property (getter = MyGetter, READONLY) IBOutlet NSView *myView2; // expected-warning {{readonly IBOutlet property 'myView2' when auto-synthesized may not work correctly with 'nib' loader}}
29 @property( readonly ) __attribute__((iboutlet)) UILabel *autoReadOnlyReadOnly; // expected-warning {{readonly IBOutlet property 'autoReadOnlyReadOnly' when auto-synthesized may not work correctly with 'nib' loader}} expected-n (…)
    [all...]
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'}}
  /external/clang/test/Rewriter/
objc-modern-property-attributes.mm 14 @property int q;
15 @property int r;
17 @property (copy) void_block_t completionBlock;
18 @property (retain) PropertyClass* Yblock;
19 @property (readonly) PropertyClass* readonlyAttr;
20 @property (readonly,copy) PropertyClass* readonlyCopyAttr;
21 @property (readonly,retain) PropertyClass* readonlyRetainAttr;
22 @property (readonly,retain,nonatomic) PropertyClass* readonlyNonatomicAttr;
23 @property (copy) id ID;
50 @property int q
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
PropertyManager.java 11 package org.eclipse.wb.internal.core.model.property;
13 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory;
17 * {@link PropertyManager} is used to get/set attributes of {@link Property}.
20 * @coverage core.model.property
23 public static PropertyCategory getCategory(Property property) {
27 return property.getCategory();
31 * @return the forced {@link PropertyCategory} of given Property, may be <code>null</code>.
33 public static PropertyCategory getCategoryForced(Property property) {
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentationImplMac.java 11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
14 import org.eclipse.wb.internal.core.model.property.Property;
15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
25 * @coverage core.model.property.editor
43 protected final Control createControlImpl(final PropertyTable propertyTable, Property property) {
51 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) {
52 CFlatButton button = (CFlatButton) m_propertyToControl.get(propertyTable, property);
    [all...]
ButtonPropertyEditorPresentationImpl.java 11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
21 import org.eclipse.wb.internal.core.model.property.Property;
22 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
32 * @coverage core.model.property.editor
53 public final void hide(PropertyTable propertyTable, Property property) {
54 Control control = m_propertyToControl.remove(propertyTable, property);
62 Property property,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
IGLProperty.java 25 /** Obtain the type of the property. */
28 /** Is this a composite property?
30 * false if it is a leaf level atomic property
40 /** Set the current value for this property. */
43 /** Get the current value for this property. */
46 /** Get the string representation for this property. */
50 * Get the parent property that holds this property.
51 * @return null if this property is at the top level, parent otherwise
55 /** Set the parent property that holds this property. *
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/
antlr3.runtime.net.common.inc 6 <property name="rootbuild.dir" value="${directory::get-current-directory()}" />
8 <property name="build.dest.dir" value="${rootbuild.dir}/build/${framework::get-target-framework()}" />
9 <property name="build.working.dir" value="${rootbuild.dir}/bin" />
11 <property name="strong_name" value="NANT_STRONGNAME" unless="${property::exists('strong_name')}" />
12 <property name="debug" value="false" unless="${property::exists('debug')}" />
13 <property name="optimize" value="true" unless="${property::exists('optimize')}" />
14 <property name="doc.dir" value="${base.dir}/docs" /
    [all...]
  /external/v8/test/webkit/
dfg-inline-arguments-use-from-all-the-places-broken-expected.txt 29 PASS argsToStr(bar("a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined.
30 PASS argsToStr(bar("a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined.
31 PASS argsToStr(bar("a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined.
32 PASS argsToStr(bar("a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined.
33 PASS argsToStr(bar("a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined.
34 PASS argsToStr(bar("a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined.
35 PASS argsToStr(bar("a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined.
36 PASS argsToStr(bar("a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined.
37 PASS argsToStr(bar("a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined.
38 PASS argsToStr(bar("a" + __i, "b" + __i, "c" + __i)) threw exception TypeError: Cannot read property 'length' of undefined
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
ITextValuePropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
13 import org.eclipse.wb.internal.core.model.property.Property;
19 * @coverage core.model.property.editor
25 void setText(Property property, String text) throws Exception;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
IPropertyExceptionHandler.java 11 package org.eclipse.wb.internal.core.model.property.table;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
18 * {@link Property} modifications using {@link PropertyEditor}'s.
21 * @coverage core.model.property.table
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
ICalendar.java 29 * Component and Property, for use in the test.
41 private final LinkedHashMap<String, ArrayList<Property>> mPropsMap =
42 new LinkedHashMap<String, ArrayList<Property>>();
53 * Adds a Property to this component.
56 public void addProperty(Property prop) {
58 ArrayList<Property> props = mPropsMap.get(name);
60 props = new ArrayList<Property>();
69 * @param name The name of the property that should be returned.
72 public List<Property> getProperties(String name) {
78 * A property within an iCalendar component (e.g., DTSTART, DTEND, etc.
    [all...]
  /device/moto/shamu/sepolicy/
bluetooth_loader.te 7 unix_socket_connect(bluetooth_loader, property, init)
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ACBTree.h 30 @property (assign) NSInteger recnum;
31 @property (retain) NSString *key;
59 @property (retain) AMutableDictionary *dict;
60 @property (retain) ACBTree *lnode;
61 @property (retain) ACBTree *rnode;
62 @property (assign) ACBKey **keys;
63 @property (assign) ACBTree **btNodes;
64 @property (assign) NSInteger lnodeid;
65 @property (assign) NSInteger rnodeid;
66 @property (assign) NSInteger nodeid
    [all...]
  /external/clang/examples/
CMakeLists.txt 2 set_property(DIRECTORY PROPERTY EXCLUDE_FROM_ALL ON)
  /external/clang/test/ARCMT/
remove-dealloc-method.m.result 8 @property (strong) id x;
9 @property (strong) id y;
10 @property (strong) id w;
11 @property (strong) id z;
  /external/clang/test/CodeGenObjC/
auto-property-synthesize-protocol.m 6 @property int auto_opt_window;
7 @property int no_auto_opt_window;
11 @property int auto_opt_window;
18 @property int auto_req_window;
19 @property int no_auto_req_window; // expected-note {{property declared here}}
23 @property int auto_req_window;
26 @implementation I1 // expected-warning {{auto property synthesis will not synthesize property declared in a protocol}}
debug-info-default-synth-ivar.m 15 @property(readonly) NSString *someString;
16 @property(readonly) unsigned long someNumber;
30 @property(copy) NSString *someString;
31 @property unsigned long someNumber;

Completed in 449 milliseconds

1 2 3 4 56 7 8 91011>>