/external/clang/test/PCH/ |
objcxx-ivar-class.h | 11 @property(assign, nonatomic) S position;
|
/external/drm_hwcomposer/ |
drmresources.h | 57 DrmProperty *property); 59 DrmProperty *property); 61 DrmProperty *property); 73 DrmProperty *property);
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
PropertyEditorProvider.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 19 * @coverage core.model.property.editor 23 * @return the {@link PropertyEditor} for given property type or <code>null</code>.
|
StringListPropertyEditor.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 32 protected void toPropertyEx_simpleProperty(Property property, CCombo3 combo, int index) 34 property.setValue(m_strings[index]);
|
/external/icu/icu4c/source/common/ |
propname.cpp | 30 * Get the next non-ignorable ASCII character from a property name 53 * Get the next non-ignorable EBCDIC character from a property name 76 * Unicode property names and property value names are compared "loosely". 79 * For all property names, property value names, and for property values for 148 int32_t PropNameData::findProperty(int32_t property) { 155 if(property<start) { 158 if(property<limit) [all...] |
propname.h | 24 * This header defines the in-memory layout of the property names data 31 /* low-level char * property name comparison -------------------------------- */ 37 * Unicode property names and property value names are compared "loosely". 40 * For all property names, property value names, and for property values for 101 static const char *getPropertyName(int32_t property, int32_t nameChoice); 102 static const char *getPropertyValueName(int32_t property, int32_t value, int32_t nameChoice); 105 static int32_t getPropertyValueEnum(int32_t property, const char *alias) [all...] |
/external/libmojo/third_party/catapult/devil/devil/ |
base_error.py | 13 @property 15 """Property to indicate if error was caused by an infrastructure issue."""
|
/external/lzma/CPP/7zip/UI/Common/ |
SetProperties.cpp | 46 const CProperty &property = properties[i];
local 48 UString name = property.Name;
49 if (property.Value.IsEmpty())
63 ParseNumberString(property.Value, propVariant);
|
/external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/criterion/ |
Criterion.py | 48 @property
|
/external/skia/src/views/mac/ |
SkNSView.h | 23 @property (nonatomic, retain) NSString* fTitle; 25 @property (nonatomic, retain) NSOpenGLContext* fGLContext; 27 @property (nonatomic, assign) id<SkNSViewOptionsDelegate> fOptionsDelegate; 49 @property (nonatomic, readwrite) SkOSWindow *fWind;
|
/external/webrtc/talk/app/webrtc/objc/ |
RTCMediaSource+Internal.h | 34 @property(nonatomic, assign, readonly)
|
RTCMediaStream+Internal.h | 34 @property(nonatomic, assign, readonly)
|
RTCMediaStreamTrack+Internal.h | 34 @property(nonatomic, assign, readonly)
|
/external/webrtc/talk/app/webrtc/objc/public/ |
RTCEAGLVideoView.h | 44 @property(nonatomic, weak) id<RTCEAGLVideoViewDelegate> delegate;
|
RTCNSGLVideoView.h | 45 @property(nonatomic, weak) id<RTCNSGLVideoViewDelegate> delegate;
|
/external/webrtc/webrtc/api/objc/ |
RTCEAGLVideoView.h | 6 * tree. An additional intellectual property rights grant can be found 31 @property(nonatomic, weak) id<RTCEAGLVideoViewDelegate> delegate;
|
RTCMediaSource.h | 6 * tree. An additional intellectual property rights grant can be found 25 @property(nonatomic, readonly) RTCSourceState state;
|
RTCNSGLVideoView.h | 6 * tree. An additional intellectual property rights grant can be found 30 @property(nonatomic, weak) id<RTCNSGLVideoViewDelegate> delegate;
|
RTCSessionDescription+Private.h | 6 * tree. An additional intellectual property rights grant can be found 24 @property(nonatomic, readonly)
|
/external/webrtc/webrtc/base/objc/ |
NSString+StdString.h | 6 * tree. An additional intellectual property rights grant can be found 19 @property(nonatomic, readonly) std::string stdString;
|
/external/webrtc/webrtc/examples/objc/AppRTCDemo/ |
ARDMessageResponse.h | 6 * tree. An additional intellectual property rights grant can be found 22 @property(nonatomic, readonly) ARDMessageResultType result;
|
/external/webrtc/webrtc/examples/objc/AppRTCDemo/ios/ |
ARDMainView.h | 6 * tree. An additional intellectual property rights grant can be found 28 @property(nonatomic, weak) id<ARDMainViewDelegate> delegate;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
TouchAnimator.java | 19 import android.util.Property; 131 public Builder addFloat(Object target, String property, float... values) { 132 add(target, KeyframeSet.ofFloat(getProperty(target, property, float.class), values)); 136 public Builder addInt(Object target, String property, int... values) { 137 add(target, KeyframeSet.ofInt(getProperty(target, property, int.class), values)); 146 private static Property getProperty(Object target, String property, Class<?> cls) { 148 switch (property) { 169 if (target instanceof TouchAnimator && "position".equals(property)) { 172 return Property.of(target.getClass(), cls, property) [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/ |
AnimationProperties.java | 21 import android.util.Property; 33 private ArrayMap<Property, Interpolator> mInterpolatorMap; 43 * @return a listener that should be run whenever any property finished its animation 54 * Get a custom interpolator for a property instead of the normal one. 56 public Interpolator getCustomInterpolator(View child, Property property) { 57 return mInterpolatorMap != null ? mInterpolatorMap.get(property) : null; 62 ArrayMap<Property, Interpolator> map = iconAnimationProperties.mInterpolatorMap; 72 * Set a custom interpolator to use for all views for a property. 74 public AnimationProperties setCustomInterpolator(Property property, Interpolator interpolator) [all...] |
/frameworks/opt/vcard/java/com/android/vcard/ |
VCardEntryCounter.java | 46 public void onPropertyCreated(VCardProperty property) {
|