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

1 23 4 5 6 7 8 91011>>

  /external/clang/test/ARCMT/whitelisted/
header2.h.result 3 @property (nonatomic) int prop;
  /external/clang/test/PCH/Inputs/
chain-remap-types1.h 9 @property X *prop;
  /external/clang/test/SemaObjC/
duplicate-property.m 6 @property (nonatomic, retain) id x; // expected-note{{property declared here}}
7 @property (nonatomic, retain) id x; // expected-error{{property has a previous declaration}}
narrow-property-type-in-cont-class.m 11 @property(nonatomic,readonly,retain) NSArray* outline;
12 @property(nonatomic,readonly,retain) NSMutableArray* err_outline; // expected-note {{property declared here}}
16 @property(nonatomic,readwrite,retain) NSMutableArray* outline;
17 @property(nonatomic,readwrite,retain) NSArray* err_outline; // expected-error {{type of property 'NSArray *' in class extension does not match property type in primary class}}
property-4.m 7 @property int class;
8 @property (copy) id MayCauseError;
12 @property int Dclass;
20 @property int OwnClass;
27 @property (retain) id MayCauseError; // expected-warning {{'copy' attribute on property 'MayCauseError' does not match the property inherited from 'ProtocolObject'}}
property-category-3.m 4 @property(readonly) int X; // expected-note {{property declared here}}
8 @property (copy) id ID;
15 @property float X; // expected-warning {{property type 'float' is incompatible with type 'int' inherited from 'P'}}
19 @property (retain) id ID; // expected-warning {{'copy' attribute on property 'ID' does not match the property inherited from 'P1'}}
24 @property(assign) int categoryProperty;
28 // because property is @dynamic
    [all...]
weak-property.m 7 id x; // expected-error {{existing instance variable 'x' for __weak property 'x' must be __weak}}
9 @property (weak) id value1;
10 @property __weak id value;
11 @property () __weak id value2;
13 @property (weak, assign) id v1; // expected-error {{property attributes 'assign' and 'weak' are mutually exclusive}}
14 @property (weak, copy) id v2; // expected-error {{property attributes 'copy' and 'weak' are mutually exclusive}}
15 @property (weak, retain) id v3; // expected-error {{property attributes 'retain' and 'weak' are mutually exclusive}
    [all...]
arc-property.m 5 id __weak myString; // expected-error {{existing instance variable 'myString' for strong property 'myString' may not be __weak}}
7 id __weak myString2; // expected-error {{existing instance variable 'myString2' for strong property 'myString2' may not be __weak}}
9 id StrongIvar5; // expected-error {{existing instance variable 'StrongIvar5' for __weak property 'myString5' must be __weak}}
11 @property (strong) id myString; // expected-note {{property declared here}}
12 @property (strong) id myString1;
13 @property (retain) id myString2; // expected-note {{property declared here}}
15 @property (weak) id myString3;
16 @property (weak) id myString4
    [all...]
property-5.m 12 @property(readonly) id ref;
13 @property(readonly) Base *p_base;
14 @property(readonly) NSData *nsdata;
15 @property(readonly) NSData * m_nsdata;
19 @property(readonly) NSData *ref;
20 @property(readonly) Data *p_base;
21 @property(readonly) MutableNSData * m_nsdata;
25 @property(readonly) id p_base;
29 @property(readonly) ConstData *p_base;
property-and-class-extension.m 16 int Property; // expected-note {{previously declared 'Property' here}}
24 @property int Property;
25 @property int Property1;
34 @synthesize Property; // expected-error {{property 'Property' attempting to use instance variable 'Property' declared in super class 'Super'}}
property-category-2.m 2 // Test that a property can be synthesize in a category
6 @property float myFloat;
7 @property float anotherFloat; // expected-note 2 {{property declared}}
16 @implementation MyObject (CAT) // expected-warning {{property 'anotherFloat' requires method}} \
17 // expected-warning {{property 'anotherFloat' requires method 'setAnotherFloat:'}}
  /external/lldb/test/lang/objc/objc-ivar-offsets/
objc-ivar-offsets.h 10 @property int backed_int;
11 @property int unbacked_int;
25 @property int derived_backed_int;
26 @property int derived_unbacked_int;
  /external/skia/experimental/iOSSampleApp/Shared/
SkOptionListController.h 9 @property (nonatomic, retain) NSMutableArray* fOptions;
10 @property (nonatomic, assign) NSInteger fSelectedIndex;
11 @property (nonatomic, retain) UITableViewCell* fSelectedCell;
12 @property (nonatomic, retain) UITableViewCell* fParentCell;
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
eventhistory.ui 4 <property name="geometry" >
11 </property>
12 <property name="windowTitle" >
14 </property>
18 <property name="sizePolicy" >
23 </property>
24 <property name="verticalScrollBarPolicy" >
26 </property>
27 <property name="selectionMode" >
29 </property>
    [all...]
  /external/clang/test/Parser/
objc-property-syntax.m 6 @property unsigned char bufferedUTF8Bytes[4]; // expected-error {{property cannot have array or function type}}
7 @property unsigned char bufferedUTFBytes:1; // expected-error {{property name cannot be a bitfield}}
8 @property(nonatomic, retain, setter=ab_setDefaultToolbarItems) MyClass *ab_defaultToolbarItems; // expected-error {{method name referenced in property setter attribute must end with ':'}}
10 @property int prop;
  /system/bt/btcore/src/
property.c 23 #include "btcore/include/property.h"
60 // property's `len` field. We special-case the equivalence of BDNAME
114 void property_free(bt_property_t *property) {
115 property_free_array(property, 1);
129 bool property_is_addr(const bt_property_t *property) {
130 assert(property != NULL);
131 return property->type == BT_PROPERTY_BDADDR;
134 bool property_is_device_class(const bt_property_t *property) {
135 assert(property != NULL);
136 return property->type == BT_PROPERTY_CLASS_OF_DEVICE
212 bt_property_t *property = osi_calloc(sizeof(bt_property_t)); local
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
StringComboPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
14 import org.eclipse.wb.internal.core.model.property.Property;
20 * @coverage core.model.property.editor
40 protected String getText(Property property) throws Exception {
41 return (String) property.getValue();
50 protected void addItems(Property property, CCombo3 combo) throws Exception {
57 protected void selectItem(Property property, CCombo3 combo) throws Exception
    [all...]
DoubleObjectPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
60 protected String getEditorText(Property property) throws Exception {
61 return getText(property);
    [all...]
IntegerObjectPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
60 protected String getEditorText(Property property) throws Exception {
61 return getText(property);
    [all...]
LongObjectPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
60 protected String getEditorText(Property property) throws Exception {
61 return getText(property);
    [all...]
ShortObjectPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
60 protected String getEditorText(Property property) throws Exception {
61 return getText(property);
    [all...]
  /system/bt/btcore/include/
property.h 39 // Property resource allocations. Caller is expected to free |property|
42 // stored in the property.
52 // Property resource frees both property and value.
53 void property_free(bt_property_t *property);
56 // Value check convenience methods. The contents of the property are
58 // |property| must not be NULL.
59 bool property_is_addr(const bt_property_t *property);
60 bool property_is_device_class(const bt_property_t *property);
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/complex/
IComplexPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor.complex;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
20 * @coverage core.model.property.editor
24 * @return sub-properties of given complex property.
26 Property[] getProperties(Property property) throws Exception;
  /system/bt/btcore/test/
property_test.cpp 24 #include "btcore/include/property.h"
31 bt_property_t *property = property_new_addr(&addr0); local
33 EXPECT_EQ(addr0.address[0], ((uint8_t*)property->val)[0]);
34 EXPECT_EQ(addr0.address[1], ((uint8_t*)property->val)[1]);
35 EXPECT_EQ(addr0.address[2], ((uint8_t*)property->val)[2]);
36 EXPECT_EQ(addr0.address[3], ((uint8_t*)property->val)[3]);
37 EXPECT_EQ(addr0.address[4], ((uint8_t*)property->val)[4]);
38 EXPECT_EQ(addr0.address[5], ((uint8_t*)property->val)[5]);
39 EXPECT_EQ(BT_PROPERTY_BDADDR, property->type);
40 EXPECT_EQ((int)sizeof(bt_bdaddr_t), property->len)
50 bt_property_t *property = property_new_device_class(&dc0); local
67 bt_property_t *property = property_new_device_type(dt0); local
81 bt_property_t *property = property_new_discovery_timeout(timeout0); local
95 bt_property_t *property = property_new_name(name0); local
109 bt_property_t *property = property_new_rssi(rssi0); local
123 bt_property_t *property = property_new_scan_mode(mode0); local
144 bt_property_t *property = property_new_uuids(&uuid0, 1); local
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
StringPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor.string;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.AbstractTextPropertyEditor;
15 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
16 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
17 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
18 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
26 * @coverage core.model.property.editor
46 protected void onClick(PropertyTable propertyTable, Property property) throws Exception
    [all...]

Completed in 1360 milliseconds

1 23 4 5 6 7 8 91011>>