Home
last modified time | relevance | path

Searched defs:property (Results 1 – 25 of 84) sorted by relevance

1234

/frameworks/base/core/java/com/android/internal/util/
DTypedProperties.java419 TypeException(String property, Object value, String requestedType) { in TypeException()
434 public boolean getBoolean(String property, boolean def) { in getBoolean()
454 public byte getByte(String property, byte def) { in getByte()
474 public short getShort(String property, short def) { in getShort()
494 public int getInt(String property, int def) { in getInt()
514 public long getLong(String property, long def) { in getLong()
534 public float getFloat(String property, float def) { in getFloat()
554 public double getDouble(String property, double def) { in getDouble()
574 public String getString(String property, String def) { in getString()
599 public boolean getBoolean(String property) { in getBoolean()
[all …]
/frameworks/base/tools/processors/view_inspector/test/java/android/processor/view/inspector/
DInspectionCompanionGeneratorTest.java85 final Property property = addProperty( in testNoAttributeId() local
97 final Property property = addProperty( in testSuppliedAttributeId() local
108 final Property property = addProperty( in testIntEnum() local
125 final Property property = addProperty( in testIntFlag() local
151 final Property property = new Property(name, Accessor.ofGetter(getter), type); in addProperty() local
/frameworks/native/services/surfaceflinger/tests/hwc2/
DHwc2TestClientTarget.cpp66 for (auto property : properties) { in dump() local
75 for (auto property : properties) { in reset() local
82 for (auto property : properties) { in advance() local
DHwc2TestLayer.cpp21 Hwc2TestCoverage getCoverage(Hwc2TestPropertyName property, in getCoverage()
69 for (auto property : mProperties) { in dump() local
108 for (auto property : mProperties) { in reset() local
115 for (auto property : mProperties) { in advance() local
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DPropertyAnimator.java53 Property<T, Float> property = animatableProperty.getProperty(); in startAnimation() local
118 public static <T extends View> void applyImmediately(T view, AnimatableProperty property, in applyImmediately()
124 public static void cancelAnimation(View view, AnimatableProperty property) { in cancelAnimation()
131 public static boolean isAnimating(View view, AnimatableProperty property) { in isAnimating()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DTouchAnimator.java131 public Builder addFloat(Object target, String property, float... values) { in addFloat()
136 public Builder addInt(Object target, String property, int... values) { in addInt()
146 private static Property getProperty(Object target, String property, Class<?> cls) { in getProperty()
219 public static KeyframeSet ofInt(Property property, int... values) { in ofInt()
223 public static KeyframeSet ofFloat(Property property, float... values) { in ofFloat()
232 public FloatKeyframeSet(Property<T, Float> property, float[] values) { in FloatKeyframeSet()
250 public IntKeyframeSet(Property<T, Integer> property, int[] values) { in IntKeyframeSet()
/frameworks/opt/vcard/java/com/android/vcard/
DVCardParserImpl_V30.java168 protected void handleParamWithoutName(VCardProperty property, final String paramValue) { in handleParamWithoutName()
185 protected void handleType(VCardProperty property, final String paramValue) { in handleType()
201 private void splitAndPutParam(VCardProperty property, String paramName, String paramValue) { in splitAndPutParam()
277 protected void handleAgent(VCardProperty property) { in handleAgent()
DVCardInterpreter.java78 void onPropertyCreated(VCardProperty property); in onPropertyCreated()
DVCardEntryCounter.java46 public void onPropertyCreated(VCardProperty property) { in onPropertyCreated()
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
DVCardEntryTests.java113 VCardProperty property = new VCardProperty(); in testNestHandling() local
206 VCardProperty property = new VCardProperty(); in testEntryElementIterator() local
317 VCardProperty property = new VCardProperty(); in testToString() local
340 VCardProperty property = new VCardProperty(); in testConstructInsertOperationsInsertName() local
/frameworks/base/tools/processors/view_inspector/src/java/android/processor/view/inspector/
DInspectionCompanionGenerator.java268 private CodeBlock generateSimplePropertyMapperInvocation( in generateSimplePropertyMapperInvocation()
299 private CodeBlock generateIntEnumPropertyMapperInvocation( in generateIntEnumPropertyMapperInvocation()
349 private CodeBlock generateIntFlagPropertyMapperInvocation( in generateIntFlagPropertyMapperInvocation()
391 private CodeBlock generateAttributeId(@NonNull Property property) { in generateAttributeId()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/animation/
DPhysicsAnimationLayoutTestCase.java196 Runnable action, DynamicAnimation.ViewProperty property) { in setTestEndActionForProperty()
214 protected void animateValueForChild(DynamicAnimation.ViewProperty property, View view, in animateValueForChild()
256 int getNextAnimationInChain(DynamicAnimation.ViewProperty property, int index) { in getNextAnimationInChain()
261 float getOffsetForChainedPropertyAnimation(DynamicAnimation.ViewProperty property) { in getOffsetForChainedPropertyAnimation()
266 SpringForce getSpringForce(DynamicAnimation.ViewProperty property, View view) { in getSpringForce()
DStackAnimationControllerTest.java333 DynamicAnimation.ViewProperty property, float vel, float friction, in flingThenSpringFirstBubbleWithStackFollowing()
341 protected void springFirstBubbleWithStackFollowing(DynamicAnimation.ViewProperty property, in springFirstBubbleWithStackFollowing()
/frameworks/base/media/java/android/mtp/
DMtpPropertyList.java55 public void append(int handle, int property, int type, long value) { in append()
64 public void append(int handle, int property, String value) { in append()
/frameworks/base/tests/BootImageProfileTest/src/com/android/bootimageprofile/
DBootImageProfileTest.java45 private String getProperty(String property) throws Exception { in getProperty()
54 private String setProperty(String property, String value) throws Exception { in setProperty()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/animation/
DPhysicsAnimationLayout.java110 abstract int getNextAnimationInChain(DynamicAnimation.ViewProperty property, int index); in getNextAnimationInChain()
119 abstract float getOffsetForChainedPropertyAnimation(DynamicAnimation.ViewProperty property); in getOffsetForChainedPropertyAnimation()
127 abstract SpringForce getSpringForce(DynamicAnimation.ViewProperty property, View view); in getSpringForce()
/frameworks/base/core/java/android/animation/
DObjectAnimator.java136 public void setProperty(@NonNull Property property) { in setProperty()
223 private <T> ObjectAnimator(T target, Property<T, ?> property) { in ObjectAnimator()
289 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) { in ofInt()
420 public static <T> ObjectAnimator ofArgb(T target, Property<T, Integer> property, in ofArgb()
488 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> property, in ofFloat()
666 public static <T, V> ObjectAnimator ofObject(T target, Property<T, V> property, in ofObject()
701 public static <T, V, P> ObjectAnimator ofObject(T target, Property<T, P> property, in ofObject()
728 public static <T, V> ObjectAnimator ofObject(T target, @NonNull Property<T, V> property, in ofObject()
DPropertyValuesHolder.java142 private PropertyValuesHolder(Property property) { in PropertyValuesHolder()
167 public static PropertyValuesHolder ofInt(Property<?, Integer> property, int... values) { in ofInt()
286 public static PropertyValuesHolder ofFloat(Property<?, Float> property, float... values) { in ofFloat()
454 public static <V> PropertyValuesHolder ofObject(Property property, in ofObject()
487 public static <T, V> PropertyValuesHolder ofObject(Property<?, V> property, in ofObject()
512 public static <V> PropertyValuesHolder ofObject(Property<?, V> property, in ofObject()
561 public static PropertyValuesHolder ofKeyframe(Property property, Keyframe... values) { in ofKeyframe()
580 static PropertyValuesHolder ofKeyframes(Property property, Keyframes keyframes) { in ofKeyframes()
1048 public void setProperty(Property property) { in setProperty()
1167 public IntPropertyValuesHolder(Property property, Keyframes.IntKeyframes keyframes) { in IntPropertyValuesHolder()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DAnimationFilter.java163 public AnimationFilter animate(Property property) { in animate()
168 public boolean shouldAnimateProperty(Property property) { in shouldAnimateProperty()
/frameworks/base/core/jni/android/graphics/
DRtlProperties.h41 char property[PROPERTY_VALUE_MAX]; in readRtlDebugLevel() local
/frameworks/av/media/mtp/
DMtpServer.cpp280 void MtpServer::sendDevicePropertyChanged(MtpDeviceProperty property) { in sendDevicePropertyChanged()
665 MtpObjectProperty property = mRequest.getParameter(2); in doGetObjectPropValue() local
678 MtpObjectProperty property = mRequest.getParameter(2); in doSetObjectPropValue() local
688 MtpDeviceProperty property = mRequest.getParameter(1); in doGetDevicePropValue() local
698 MtpDeviceProperty property = mRequest.getParameter(1); in doSetDevicePropValue() local
708 MtpDeviceProperty property = mRequest.getParameter(1); in doResetDevicePropValue() local
724 uint32_t property = mRequest.getParameter(3); in doGetObjectPropList() local
1320 MtpProperty* property = mDatabase->getObjectPropertyDesc(propCode, format); in doGetObjectPropDesc() local
1333 MtpProperty* property = mDatabase->getDevicePropertyDesc(propCode); in doGetDevicePropDesc() local
DMtpDevice.cpp263 MtpProperty* property = getDevicePropDesc(propCode); in initialize() local
290 MtpProperty* property = getDevicePropDesc(propCode); in print() local
308 MtpProperty* property = getObjectPropDesc(prop, format); in print() local
602 MtpProperty* property = new MtpProperty; in getDevicePropDesc() local
623 MtpProperty* property = new MtpProperty; in getObjectPropDesc() local
632 bool MtpDevice::getObjectPropValue(MtpObjectHandle handle, MtpProperty* property) { in getObjectPropValue()
/frameworks/av/media/libmedia/
DMediaUtils.cpp33 void limitProcessMemory(const char *property, size_t numberOfBytes, in limitProcessMemory()
/frameworks/base/media/jni/
Dandroid_mtp_MtpDatabase.cpp378 MtpObjectProperty property, in getObjectPropertyValue()
536 MtpObjectProperty property, in setObjectPropertyValue()
566 MtpResponseCode MtpDatabase::getDevicePropertyValue(MtpDeviceProperty property, in getDevicePropertyValue()
632 MtpResponseCode MtpDatabase::setDevicePropertyValue(MtpDeviceProperty property, in setDevicePropertyValue()
667 uint32_t format, uint32_t property, in getObjectPropertyList()
1021 MtpObjectProperty property; member
1061 bool MtpDatabase::getObjectPropertyInfo(MtpObjectProperty property, int& type) { in getObjectPropertyInfo()
1073 bool MtpDatabase::getDevicePropertyInfo(MtpDeviceProperty property, int& type) { in getDevicePropertyInfo()
1124 MtpProperty* MtpDatabase::getObjectPropertyDesc(MtpObjectProperty property, in getObjectPropertyDesc()
1205 MtpProperty* MtpDatabase::getDevicePropertyDesc(MtpDeviceProperty property) { in getDevicePropertyDesc()
/frameworks/base/media/java/android/media/audiopolicy/
DAudioMixingRule.java329 public Builder addMixRule(int rule, Object property) throws IllegalArgumentException { in addMixRule()
358 public Builder excludeMixRule(int rule, Object property) throws IllegalArgumentException { in excludeMixRule()
392 private Builder checkAddRuleObjInternal(int rule, Object property) in checkAddRuleObjInternal()

1234