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

<<11121314151617181920>>

  /external/lldb/scripts/Python/interface/
SBType.i 48 if _newclass: name = property(GetName, None, doc='''A read only property that returns the name for this member as a string.''')
51 if _newclass: type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the type (lldb.SBType) for this member.''')
54 if _newclass: byte_offset = property(GetOffsetInBytes, None, doc='''A read only property that returns offset in bytes for this member as an integer.''')
57 if _newclass: bit_offset = property(GetOffsetInBits, None, doc='''A read only property that returns offset in bits for this member as an integer.''')
60 if _newclass: is_bitfield = property(IsBitfield, None, doc='''A read only property that returns true if this member is a bitfield.'''
    [all...]
SBTypeCategory.i 193 if _newclass: formats = property(get_formats_array, None, doc='''A read only property that returns a list() of lldb.SBTypeFormat objects contained in this category''')
196 if _newclass: format = property(get_formats_access_object, None, doc=r'''A read only property that returns an object that you can use to look for formats by index or type name.''')
199 if _newclass: summaries = property(get_summaries_array, None, doc='''A read only property that returns a list() of lldb.SBTypeSummary objects contained in this category''')
202 if _newclass: summary = property(get_summaries_access_object, None, doc=r'''A read only property that returns an object that you can use to look for summaries by index or type name or regular expression.''')
205 if _newclass: filters = property(get_filters_array, None, doc='''A read only property that returns a list() of lldb.SBTypeFilter objects contained in this category'''
    [all...]
  /libcore/luni/src/main/java/java/beans/
PropertyChangeEvent.java 23 * An event that indicates that a constraint or a boundary of a property has
44 * the changed property, or <code>null</code> to indicate an
47 * the previous value of the property, or <code>null</code> if
51 * the new value of the property, or <code>null</code> if the
65 * Returns the name of the property that has changed. If an unspecified set
68 * @return the name of the property that has changed, or null.
85 * 1.0 demands that a listener receiving this property and then sending its
96 * Returns the old value that the property had. If the old value is unknown
99 * @return the old property value or null.
106 * Returns the new value that the property now has. If the new value i
    [all...]
PropertyChangeSupport.java 34 * Manages a list of listeners to be notified when a property changes. Listeners
35 * subscribe to be notified of all property changes, or of changes to a single
36 * named property.
55 * only be notified when the assigned property is changed. This list may be
81 * the name of the property
83 * the old value of the property
85 * the new value of the property
98 * the name of the property
102 * the old value of the property
104 * the new value of the property
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/
all.antlr3.runtime.net.build 4 <property name="base.dir" value="${path::get-full-path( project::get-base-directory() )}" />
5 <property name="sharedlibrary.dir" value="${base.dir}/Libraries" />
6 <property name="tools.dir" value="${base.dir}/Tools" />
7 <property name="tempdir" value="tempdir" />
9 <property name="version" value="3.1b1" />
46 <property name="debug" value="false"/>
217 <property name="base.dir" value="." />
218 <property name="doc.dir" value="${base.dir}/docs" />
219 <property name="tempBin.dir" value="${doc.dir}/bin"/>
220 <property name="outputDocs.file" value="Antlr3.Runtime"/
    [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 1 //===--- SemaObjCProperty.cpp - Semantic Analysis for ObjC @property ------===//
10 // This file implements semantic analysis for Objective C @property and
33 /// getImpliedARCOwnership - Given a set of property attributes and a
55 // property type.
64 /// Check the internal consistency of a property declaration.
65 static void checkARCPropertyDecl(Sema &S, ObjCPropertyDecl *property) {
66 if (property->isInvalidDecl()) return;
69 = property->getPropertyAttributes();
71 = property->getType().getObjCLifetime();
77 = getImpliedARCOwnership(propertyKind, property->getType())
818 ObjCPropertyDecl *property = nullptr; local
    [all...]
  /external/clang/test/Analysis/
objc_invalidation.m 72 SomeInvalidationImplementingObject *_Ivar3; // no property, call -description
73 SomeInvalidationImplementingObject *_Ivar4; // no property, provide as argument to NSLog()
75 SomeInvalidationImplementingObject *_Prop1; // partially implemented property, set to 0 with dot syntax
77 SomeInvalidationImplementingObject *_propIvar; // property with custom named ivar, set to 0 via setter
80 SomeInvalidationImplementingObject *_Prop3; // property, invalidate via sending a message to a getter method
81 SomeInvalidationImplementingObject *_Prop4; // property with @synthesize, invalidate via property
82 SomeInvalidationImplementingObject *_Prop5; // property with @synthesize, invalidate via getter method
97 @property (assign) SomeInvalidationImplementingObject* Prop0;
98 @property (nonatomic, assign) SomeInvalidationImplementingObject* Prop1
    [all...]
  /development/samples/browseable/TextLinkify/
_index.jd 9 automatically by setting the "autoLink" property or explicitly.
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
AMutableArray.h 45 @property (assign) NSInteger BuffSize;
46 @property (assign, getter=count, setter=setCount:) NSInteger count;
47 @property (retain) NSMutableData *buffer;
48 @property (assign) id *ptrBuffer;
  /external/apache-harmony/security/src/test/resources/java/security/
Provider.prop.dat 0 Property\ 1 = value 1
  /external/apache-harmony/support/src/test/java/tests/support/
Support_PlatformFile.java 26 String property = System.getProperty("com.ibm.oti.configuration"); local
27 if (property == null) {
28 property = "JDK";
30 platformId = property
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
classinit.py 28 if not isinstance(old_prop, property):
30 "Attribute %s is a %s, not a property; function %s is named like a property"
41 new_prop = property(**attrs)
  /external/clang/test/CodeGenObjC/
debug-info-crash-2.m 6 @property (strong, nonatomic) Bar *window;
debug-info-property3.m 7 @property int p1;
objc2-property-encode.m 8 @property(retain) StoreVersionID* foo;
objc2-protocol-enc.m 11 @property (copy) id <X> x;
12 @property (copy) id <X, Y> xy;
13 @property (copy) id <X, Y, Z> xyz;
14 @property(copy) Foo <X, Y, Z> *fooxyz;
optimized-setter-ios-device.m 7 @property (nonatomic, retain) id nonatomicProperty;
11 @property (nonatomic, copy) id nonatomicPropertyCopy;
15 @property (retain) id atomicProperty;
19 @property (copy) id atomicPropertyCopy;
optimized-setter.m 9 @property (nonatomic, retain) id nonatomicProperty;
13 @property (nonatomic, copy) id nonatomicPropertyCopy;
17 @property (retain) id atomicProperty;
21 @property (copy) id atomicPropertyCopy;
property-setter-attr.m 5 @property(setter=iSetOtherThings:) int otherThings;
unoptimized-setter.m 7 @property (nonatomic, retain) id nonatomicProperty;
11 @property (nonatomic, copy) id nonatomicPropertyCopy;
15 @property (retain) id atomicProperty;
19 @property (copy) id atomicPropertyCopy;
  /external/clang/test/Index/
arc-annotate.m 2 @property (strong, nonatomic) id property;
3 @property (nonatomic, weak) id second_property;
4 @property (unsafe_unretained, nonatomic) id third_property;
16 // CHECK: Punctuation: "@" [2:1 - 2:2] ObjCPropertyDecl=property:2:34
17 // CHECK: Keyword: "property" [2:2 - 2:10] ObjCPropertyDecl=property:2:34
18 // CHECK: Punctuation: "(" [2:11 - 2:12] ObjCPropertyDecl=property:2:34
19 // CHECK: Keyword: "strong" [2:12 - 2:18] ObjCPropertyDecl=property:2:34
20 // CHECK: Punctuation: "," [2:18 - 2:19] ObjCPropertyDecl=property:2:3
    [all...]
complete-synthesized.m 6 @property int prop1;
12 @property float prop2;
13 @property short prop3;
17 @property double prop4;
  /external/clang/test/SemaObjC/Inputs/
arc-system-header.h 41 @property id *prop;
  /external/clang/test/SemaObjC/
arc-unsafe-assigns.m 8 @property (assign,nonatomic) id unsafe_prop;
24 self.unsafe_prop = [Foo new]; // expected-warning {{assigning retained object to unsafe property}}
26 self.unsafe_prop = [[Foo alloc] init]; // expected-warning {{assigning retained object to unsafe property}}
36 f.unsafe_prop = [Foo new]; // expected-warning {{assigning retained object to unsafe property}}
direct-synthesized-ivar-access.m 9 @property int IVAR;

Completed in 3211 milliseconds

<<11121314151617181920>>