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

1 2 3 4 5 6 7 891011>>

  /frameworks/base/core/java/android/util/
Property.java 20 * A property is an abstraction that can be used to represent a <emb>mutable</em> value that is held
21 * in a <em>host</em> object. The Property's {@link #set(Object, Object)} or {@link #get(Object)}
25 * @param <T> The class on which the property is declared.
26 * @param <V> The type that this property represents.
28 public abstract class Property<T, V> {
34 * This factory method creates and returns a Property given the <code>class</code> and
47 * <code>setName()</code> method is not found, the <code>Property</code> will be
49 * a property is allowed, but will have no effect.</p>
54 public static <T, V> Property<T, V> of(Class<T> hostType, Class<V> valueType, String name) {
59 * A constructor that takes an identifying name and {@link #getType() type} for the property
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
AMutableDictionary.h 27 @property (retain) ACBTree *root;
28 @property (assign) NSInteger nodes_av;
29 @property (assign) NSInteger nodes_inuse;
30 @property (assign) NSInteger nxt_nodeid;
31 @property (assign, readonly, getter=count) NSUInteger count;
32 @property (assign) NSMutableData *data;
33 @property (assign) id *ptrBuffer;
  /external/clang/test/SemaObjC/
arc-setter-property-match.m 14 @property (readwrite, strong) NSArray *names1; // <-- warning: Type of property....
16 @property (readwrite, strong) __strong NSArray *names2; // <-- warning: Type of property....
18 @property (readwrite, strong) __strong NSArray *names3; // <-- OK
20 @property (readwrite, strong) NSArray *names4; // <-- warning: Type of property....
property-noninherited-availability-attr.m 4 // when a property is redeclared in a subclass. This is intentional.
8 @property int myProtocolProperty __attribute__((availability(macosx,introduced=10.7,deprecated=10.8))); // expected-note {{'myProtocolProperty' has been explicitly marked deprecated here}} \
9 // expected-note {{property 'myProtocolProperty' is declared deprecated here}}
13 @property int myProperty __attribute__((availability(macosx,introduced=10.7,deprecated=10.8))); // expected-note 2 {{'myProperty' has been explicitly marked deprecated here}} \
14 // expected-note {{property 'myProperty' is declared deprecated here}}
18 @property int myProperty;
19 @property int myProtocolProperty;
synth-provisional-ivars.m 9 @property int PROP;
10 @property int PROP1;
11 @property int PROP2;
12 @property int PROP3;
13 @property int PROP4;
15 @property int bar;
16 @property int bar1;
ClassPropertyNotObject.m 9 @property Class<P> MyClass;
10 @property Class MyClass1;
11 @property void * VOIDSTAR;
ContClassPropertyLookup.m 10 @property (assign) int foo;
14 @property (assign) int foo;
28 @property (nonatomic, readonly) id title;
arc-readonly-property-ivar.m 6 @property (readonly) id ReadOnlyPropertyNoBackingIvar;
7 @property (readonly) id ReadOnlyProperty;
8 @property (readonly) id ReadOnlyPropertyX;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
EmptyProperty.java 11 package org.eclipse.wb.internal.core.model.property;
13 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
14 import org.eclipse.wb.internal.core.model.property.editor.string.StringPropertyEditor;
17 * Empty {@link Property}, that has no title or value.
20 * @coverage core.model.property
22 public class EmptyProperty extends Property {
38 // Property
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
AbstractComboBoxPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
37 * @coverage core.model.property.editor
50 final Property property,
54 addItems(property, m_combo);
55 selectItem(property, m_combo);
60 handleKeyPressed(propertyTable, property, e)
    [all...]
  /external/vboot_reference/host/include/
crossystem.h 15 /* Recommended size for string property buffers used with
19 /* Reads a system property integer.
21 * Returns the property value, or -1 if error. */
24 /* Read a system property string into a destination buffer of the
35 /* Sets a system property integer.
40 /* Set a system property string.
43 * property, not on VB_MAX_STRING_PROPERTY.
  /external/clang/test/ARCMT/
GC-no-arc-runtime.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;
59 @property (assign) I4Impl *__weak pw1, *__weak pw2;
60 @property (assign) I4Impl *__strong ps;
61 @property (assign) I4Impl * pds;
62 @property (assign) I4Impl * pds2;
76 @property (readonly) __weak id prop;
GC-no-arc-runtime.m.result 26 @property (strong) id prop;
46 @property (unsafe_unretained) I3 * pw1, * pw2;
47 @property (strong) I3 * ps;
48 @property (assign) I3 * pds;
54 @property (unsafe_unretained) I4Impl * pw1, * pw2;
55 @property (strong) I4Impl * ps;
56 @property (strong) I4Impl * pds;
57 @property (strong) I4Impl * pds2;
71 @property (unsafe_unretained, readonly) id prop;
objcmt-migrate-all.m.result 89 @property (nonatomic, readonly) void *ReturnsInnerPointer;
90 @property (nonatomic, readonly) int *AlreadyReturnsInnerPointer NS_RETURNS_INNER_POINTER;
94 @property (nonatomic, readonly) CGImageRef CGImage CF_RETURNS_NOT_RETAINED;
98 @property (nonatomic, readonly) void *bytes;
99 @property (nonatomic, readonly) void **ptr_bytes __attribute__((availability(macosx,unavailable)));
103 @property (nonatomic, readonly) void *mutableBytes __attribute__((deprecated)) __attribute__((unavailable));
107 @property (nonatomic, readonly) JSObjectRef JSObject;
108 @property (nonatomic, readonly) TTJSObjectRef JSObject1;
109 @property (nonatomic, readonly) JSObjectRef *JSObject2;
116 @property (readonly) SecTrustRef serverTrust NS_AVAILABLE
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
OutputProperties.java 43 * its "defaults"; this second property list is searched if the property key
44 * is not found in the original property list.</p>
73 * a property file. The method argument is used to construct a string of
112 * Set an output property.
114 * @param key the key to be placed into the property list.
124 * Set an output property.
126 * @param key the key to be placed into the property list.
145 * Searches for the property with the specified key in the property list
    [all...]
  /external/clang/test/Analysis/objc/
direct-ivar-assignment-in-annotated-functions.m 29 @property (assign, nonatomic) MyClass* A; // explicitely synthesized, not implemented, non-default ivar name
31 @property (assign) MyClass* X; // automatically synthesized, not implemented
33 @property (assign, nonatomic) MyClass* Y; // automatically synthesized, implemented
35 @property (assign, nonatomic) MyClass* Z; // non-synthesized ivar, implemented setter
36 @property (readonly) id nonSynth; // non-synthesized, explicitly implemented to return ivar with expected name
38 @property (assign) MyClass* NotA; // warnings should be suppressed, backing ivar is annotated
39 @property (assign) MyClass* NotX __attribute__((annotate("objc_allow_direct_instance_variable_assignment"))); // warnings should be suppressed
47 (__A) = In; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
48 _X = In; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
49 _Y = In; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}
    [all...]
  /external/clang/test/CodeGenObjC/
protocol-property-synth.m 10 @property(assign) id delegate;
15 @property(assign) id myanother;
19 @property(assign) id another;
  /external/clang/test/FixIt/
property-access-fixit.m 13 @property int x;
14 @property int Y;
15 @property(assign, readwrite, getter=formatter, setter=setFormatter:) BridgeFormatter* cppFormatter;
  /external/clang/test/Rewriter/
rewrite-category-property.mm 8 @property (readonly) Y *y;
12 @property (readonly) Z *z;
15 // CHECK-LP: // @property (readonly) Z *z;
  /external/mesa3d/src/gallium/tests/graw/geometry-shader/
line.txt 2 PROPERTY GS_INPUT_PRIMITIVE TRIANGLES
3 PROPERTY GS_OUTPUT_PRIMITIVE LINE_STRIP
4 PROPERTY GS_MAX_OUTPUT_VERTICES 4
  /external/skia/example/mac/
HelloWorldDelegate.h 19 @property (assign) IBOutlet NSWindow* fWindow;
20 @property (assign) IBOutlet SkSampleNSView* fView;
21 @property (assign) IBOutlet SkOptionsTableView* fOptions;
  /external/skia/src/views/mac/
SampleAppDelegate.h 19 @property (assign) IBOutlet NSWindow* fWindow;
20 @property (assign) IBOutlet SkSampleNSView* fView;
21 @property (assign) IBOutlet SkOptionsTableView* fOptions;
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/properties/
package.html 9 <p>Package containing the property information classes.</p>
11 XMPAliasInfo informs about a certain property-to-property alias.<p>
  /packages/apps/Messaging/build/gcheckstyle/tools/java/checkstyle/
googlestyle-5.0.xml 29 <property name="charset" value="UTF-8"/>
32 <property name="offCommentFormat" value="__Generated_"/>
33 <property name="onCommentFormat" value="END GENERATED CODE"/>
43 <property name="format" value="((//.*)|(\*.*))FIXME" />
44 <property name="message" value='TODO is preferred to FIXME. e.g. "TODO(johndoe): Refactor when v2 is released."' />
55 <property name="format" value="((//.*)|(\*.*))(?&lt;!TODO\(.{0,100})(TODO[^(])|(TODO\([^)]*$)" />
56 <property name="message" value='All TODOs should be named. e.g. "TODO(johndoe): Refactor when v2 is released."' />
72 <property name="severity" value="error"/>
76 <property name="severity" value="error"/>
81 <property name="severity" value="error"/
    [all...]
  /cts/tools/signature-tools/
TODO.txt 5 Add "plugin system" to enable different loader / differ / report engines. This can be simple as register the class name of the available loaders in a property file

Completed in 1301 milliseconds

1 2 3 4 5 6 7 891011>>