Searched defs:property (Results 51 - 75 of 83) sorted by relevance

1234

/frameworks/base/media/java/android/mtp/
H A DMtpDatabase.java76 // cached property groups for single properties
80 // cached property groups for all properties for a given format
153 // send device property changed event
721 private MtpPropertyList getObjectPropertyList(int handle, int format, int property, argument
729 if (property == 0xffffffff) {
742 propertyGroup = mPropertyGroupsByProperty.get(property);
744 final int[] propertyList = new int[] { property };
747 mPropertyGroupsByProperty.put(property, propertyGroup);
841 private int setObjectProperty(int handle, int property, argument
843 switch (property) {
852 getDeviceProperty(int property, long[] outIntValue, char[] outStringValue) argument
888 setDeviceProperty(int property, long intValue, String stringValue) argument
[all...]
/frameworks/native/services/inputflinger/host/
H A DInputDriver.cpp257 const char* InputDriver::inputGetPropertyKey(input_property_t* property) { argument
258 if (property != nullptr) {
259 return property->key.string();
264 const char* InputDriver::inputGetPropertyValue(input_property_t* property) { argument
265 if (property != nullptr) {
266 return property->value.string();
271 void InputDriver::inputFreeDeviceProperty(input_property_t* property) { argument
272 if (property != nullptr) {
273 delete property;
392 const char* input_get_property_key(input_host_t* host, input_property_t* property) { argument
397 input_get_property_value(input_host_t* host, input_property_t* property) argument
402 input_free_device_property(input_host_t* host, input_property_t* property) argument
[all...]
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardBuilder.java490 // FN property
528 private void buildSinglePartNameField(String property, String part) { argument
536 mBuilder.append(property);
614 // Note: There is no appropriate property for expressing
619 // This is "X-" property, so any parser hopefully would not get
762 if (mIsV30OrV40) { // These specifications have NICKNAME property.
1247 // property, while there's no document in vCard 2.1.
1906 * Appends one line with a given property name and value.
2058 * Returns true when the property line should contain charset parameter
H A DVCardParserImpl_V21.java165 * @return true when a given property name is a valid property name.
331 private void parseItemInter(VCardProperty property, String propertyNameUpper) argument
333 String propertyRawValue = property.getRawValue();
335 handleAgent(property);
342 handlePropertyValue(property, propertyNameUpper);
344 throw new VCardException("Unknown property name: \"" + propertyNameUpper + "\"");
358 // For performance reason, the states for group and property name are merged into one.
381 if (ch == ':') { // End of a property name.
393 nameIndex = i + 1; // Next should be another group or a property nam
571 handlePropertyValue(VCardProperty property, String propertyName) argument
699 handleAdrOrgN(VCardProperty property, String propertyRawValue, String sourceCharset, String targetCharset) argument
915 handleAgent(final VCardProperty property) argument
[all...]
H A DVCardEntry.java738 private final String mPhoneticName; // We won't have this in "TITLE" property.
1926 // Probably the "TITLE" property comes before the "ORG" property via
1994 * SORT-STRING, since it is regitimate property to be understood.
2063 * property
2126 public void addProperty(final VCardProperty property) { argument
2127 final String propertyName = property.getName();
2128 final Map<String, Collection<String>> paramMap = property.getParameterMap();
2129 final List<String> propertyValueList = property.getValueList();
2130 byte[] propertyBytes = property
[all...]
/frameworks/support/dynamic-animation/src/android/support/animation/
H A DDynamicAnimation.java42 * ViewProperty holds the access of a property of a {@link View}. When an animation is
43 * created with a {@link ViewProperty} instance, the corresponding property value of the view
53 * View's translationX property.
68 * View's translationY property.
83 * View's translationZ property.
98 * View's scaleX property.
113 * View's scaleY property.
128 * View's rotation property.
143 * View's rotationX property.
158 * View's rotationY property
354 DynamicAnimation(K object, FloatPropertyCompat<K> property) argument
[all...]
/frameworks/av/media/mtp/
H A DMtpServer.cpp288 void MtpServer::sendDevicePropertyChanged(MtpDeviceProperty property) { argument
289 ALOGV("sendDevicePropertyChanged %d\n", property);
290 sendEvent(MTP_EVENT_DEVICE_PROP_CHANGED, property);
665 MtpObjectProperty property = mRequest.getParameter(2); local
667 MtpDebug::getObjectPropCodeName(property));
669 return mDatabase->getObjectPropertyValue(handle, property, mData);
678 MtpObjectProperty property = mRequest.getParameter(2); local
680 MtpDebug::getObjectPropCodeName(property));
682 return mDatabase->setObjectPropertyValue(handle, property, mData);
688 MtpDeviceProperty property
724 uint32_t property = mRequest.getParameter(3); local
1194 MtpProperty* property = mDatabase->getObjectPropertyDesc(propCode, format); local
1207 MtpProperty* property = mDatabase->getDevicePropertyDesc(propCode); local
[all...]
/frameworks/base/core/java/android/view/
H A DRenderNodeAnimator.java111 public RenderNodeAnimator(int property, float finalValue) { argument
112 mRenderProperty = property;
115 init(nCreateAnimator(property, finalValue));
118 public RenderNodeAnimator(CanvasProperty<Float> property, float finalValue) { argument
120 property.getNativeContainer(), finalValue));
125 * Creates a new render node animator for a field on a Paint property.
127 * @param property The paint property to target
130 * @param finalValue The target value for the property
132 public RenderNodeAnimator(CanvasProperty<Paint> property, in argument
501 nCreateAnimator(int property, float finalValue) argument
[all...]
H A DViewDebug.java98 * @return true if the property's value must be transformed into an Android
167 * When deep export is turned on, this property is not dumped. Instead, the
168 * properties contained in this property are dumped. Each child property
169 * is prefixed with the name of this property.
171 * @return true if the properties of this property should be dumped
187 * Specifies the category the property falls into, such as measurement,
1184 final ExportedProperty property = sAnnotations.get(method);
1186 property.category().length() != 0 ? property
1378 exportUnrolledArray(Context context, BufferedWriter out, ExportedProperty property, int[] array, String prefix, String suffix) argument
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRecord.java717 * Gets the value of a boolean property.
719 * @param property The property.
722 private boolean getBooleanProperty(int property) { argument
723 return (mBooleanProperties & property) == property;
727 * Sets a boolean property.
729 * @param property The property.
732 private void setBooleanProperty(int property, boolea argument
[all...]
H A DAccessibilityNodeInfo.java2804 * Gets the value of a boolean property.
2806 * @param property The property.
2809 private boolean getBooleanProperty(int property) { argument
2810 return (mBooleanProperties & property) != 0;
2814 * Sets a boolean property.
2816 * @param property The property.
2821 private void setBooleanProperty(int property, boolean value) { argument
2824 mBooleanProperties |= property;
[all...]
/frameworks/base/media/jni/
H A Dandroid_mtp_MtpDatabase.cpp137 MtpObjectProperty property,
141 MtpObjectProperty property,
144 virtual MtpResponseCode getDevicePropertyValue(MtpDeviceProperty property,
147 virtual MtpResponseCode setDevicePropertyValue(MtpDeviceProperty property,
150 virtual MtpResponseCode resetDeviceProperty(MtpDeviceProperty property);
153 uint32_t format, uint32_t property,
168 bool getObjectPropertyInfo(MtpObjectProperty property, int& type);
169 bool getDevicePropertyInfo(MtpDeviceProperty property, int& type);
176 virtual MtpProperty* getObjectPropertyDesc(MtpObjectProperty property,
179 virtual MtpProperty* getDevicePropertyDesc(MtpDeviceProperty property);
367 getObjectPropertyValue(MtpObjectHandle handle, MtpObjectProperty property, MtpDataPacket& packet) argument
545 setObjectPropertyValue(MtpObjectHandle handle, MtpObjectProperty property, MtpDataPacket& packet) argument
576 getDevicePropertyValue(MtpDeviceProperty property, MtpDataPacket& packet) argument
649 setDevicePropertyValue(MtpDeviceProperty property, MtpDataPacket& packet) argument
683 getObjectPropertyList(MtpObjectHandle handle, uint32_t format, uint32_t property, int groupCode, int depth, MtpDataPacket& packet) argument
997 MtpObjectProperty property; member in struct:PropertyTableEntry
1037 getObjectPropertyInfo(MtpObjectProperty property, int& type) argument
1049 getDevicePropertyInfo(MtpDeviceProperty property, int& type) argument
1100 getObjectPropertyDesc(MtpObjectProperty property, MtpObjectFormat format) argument
1181 getDevicePropertyDesc(MtpDeviceProperty property) argument
[all...]
/frameworks/base/tools/bit/
H A Dmain.cpp546 * Check that a system property on the device matches the expected value.
550 check_device_property(const string& property, const string& expected) argument
553 string deviceValue = get_system_property(property, &err);
557 print_error("are trying to sync it to in the %s system property", property.c_str());
/frameworks/native/libs/input/
H A DKeyCharacterMap.cpp936 // Parse all comma-delimited property names up to the first colon.
946 ALOGE("%s: Expected a property name or modifier, got '%s'.",
965 ALOGE("%s: Expected ',' or ':' after property name.",
1066 const Property& property = properties.itemAt(i); local
1067 switch (property.property) {
1092 if (b->metaState == property.metaState) {
1099 newBehavior->metaState = property.metaState;
1116 // Fill in default number property.
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccCardProxy.java897 private void setSystemProperty(String property, String value) { argument
898 TelephonyManager.setTelephonyProperty(mPhoneId, property, value);
/frameworks/rs/
H A DrsFont.cpp347 char property[PROP_VALUE_MAX]; local
350 if (property_get(PROPERTY_TEXT_GAMMA, property, nullptr) > 0) {
351 gamma = atof(property);
355 if (property_get(PROPERTY_TEXT_BLACK_GAMMA_THRESHOLD, property, nullptr) > 0) {
356 blackThreshold = atoi(property);
360 if (property_get(PROPERTY_TEXT_WHITE_GAMMA_THRESHOLD, property, nullptr) > 0) {
361 whiteThreshold = atoi(property);
/frameworks/base/core/java/android/widget/
H A DFastScroller.java1567 * Constructs an animator for the specified property on a group of views.
1571 * @param property The property being animated.
1572 * @param value The value to which that property should animate.
1577 Property<View, Float> property, float value, View... views) {
1582 final Animator anim = ObjectAnimator.ofFloat(views[i], property, value);
1576 groupAnimatorOfFloat( Property<View, Float> property, float value, View... views) argument
H A DRemoteViews.java1955 * @param property which layout parameter to alter
1958 public LayoutParamAction(int viewId, int property, int value) { argument
1960 this.property = property;
1966 property = parcel.readInt();
1973 dest.writeInt(property);
1987 switch (property) {
2007 throw new IllegalArgumentException("Unknown property " + property);
2019 return "LayoutParamAction" + property
2022 int property; field in class:RemoteViews.LayoutParamAction
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java531 private void startRtFloatAnimation(CanvasProperty<Float> property, float endValue, argument
533 RenderNodeAnimator animator = new RenderNodeAnimator(property, endValue);
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp395 // Convenience wrapper over the property API that returns an
408 * (in order) and returns the first non-empty property in the list :
466 * Parse a property containing space-separated options that should be
500 * Reads a "property" into "buffer" with a default of "defaultArg". If
501 * the property is non-empty, it is treated as a runtime option such
511 bool AndroidRuntime::parseRuntimeOption(const char* property, argument
518 property_get(property, buffer+runtimeArgLen, defaultArg);
527 * Reads a "property" into "buffer". If the property is non-empty, it
538 bool AndroidRuntime::parseCompilerOption(const char* property, argument
567 parseCompilerRuntimeOption(const char* property, char* buffer, const char* runtimeArg, const char* quotingArg) argument
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedVectorDrawable.java389 * VectorDrawable's property changes during RenderThread animations.
591 // Change the property of the Animator from using reflection based on the property
593 // specific property for a given object. By replacing the reflection with a direct call,
594 // we can largely reduce the time it takes for a animator to modify a VD property.
600 Property property = null;
602 property = ((VectorDrawable.VObject) targetNameObj).getProperty(propertyName);
604 property = ((VectorDrawable.VectorDrawableState) targetNameObj)
607 if (property != null) {
608 if (containsSameValueType(pvh, property)) {
625 containsSameValueType(PropertyValuesHolder holder, Property property) argument
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DCall.java111 * A call can only be in this state if the {@link Details#PROPERTY_IS_EXTERNAL_CALL} property
317 * {@link Connection#PROPERTY_IS_EXTERNAL_CALL} property set.
319 * An {@link InCallService} will only see calls with this property if it has the
450 * Whether the supplied properties includes the specified property.
453 * @param property The property to check properties for.
454 * @return Whether the specified property is supported.
456 public static boolean hasProperty(int properties, int property) { argument
457 return (properties & property) == property;
466 hasProperty(int property) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DGsmCdmaPhone.java296 // Sets operator properties by retrieving from build-time system property
314 // Sets iso country property by retrieving from build-time system property
329 * Sets PROPERTY_ICC_OPERATOR_ISO_COUNTRY property
677 public void setSystemProperty(String property, String value) { argument
682 TelephonyManager.setTelephonyProperty(mPhoneId, property, value);
684 super.setSystemProperty(property, value);
1630 public String getSystemProperty(String property, String defValue) { argument
1635 return TelephonyManager.getTelephonyProperty(mPhoneId, property, defValue);
1637 return super.getSystemProperty(property, defValu
[all...]
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp695 void AudioPolicyManager::setSystemProperty(const char* property, const char* value) argument
697 ALOGV("setSystemProperty() property %s, value %s", property, value);
2585 //If duration is less than minimum value defined in property, return false
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp628 // Start boot animation service by setting a property mailbox
629 // if property setting thread is already running, Start() will be just a NOP
631 // Wait until property was set
702 char property[PROPERTY_VALUE_MAX]; local
704 if (property_get(propName, property, NULL) > 0) {
705 density = atoi(property);
725 // The density of the device is provided by a build property
730 ALOGE("ro.sf.lcd_density must be defined as a build property");

Completed in 491 milliseconds

1234