Searched defs:property (Results 26 - 50 of 61) sorted by relevance

123

/frameworks/base/core/java/android/os/
H A DBuild.java35 /** Value used for when a build property is unknown. */
706 * Ensure that raw fingerprint system property is defined. If it was derived
708 * derived value into the property service.
717 Slog.e(TAG, "Failed to set fingerprint property", e);
818 private static String getString(String property) { argument
819 return SystemProperties.get(property, UNKNOWN);
822 private static String[] getStringList(String property, String separator) { argument
823 String value = SystemProperties.get(property);
831 private static long getLong(String property) { argument
833 return Long.parseLong(SystemProperties.get(property));
[all...]
/frameworks/av/media/mtp/
H A DMtpDevice.cpp249 MtpProperty* property = getDevicePropDesc(propCode); local
250 if (property)
251 mDeviceProperties.push(property);
274 MtpProperty* property = getDevicePropDesc(propCode); local
275 if (property) {
276 property->print();
277 delete property;
293 MtpProperty* property = getObjectPropDesc(prop, format); local
294 if (property) {
295 property
595 MtpProperty* property = new MtpProperty; local
616 MtpProperty* property = new MtpProperty; local
625 getObjectPropValue(MtpObjectHandle handle, MtpProperty* property) argument
[all...]
H A DMtpServer.cpp267 void MtpServer::sendDevicePropertyChanged(MtpDeviceProperty property) { argument
268 ALOGV("sendDevicePropertyChanged %d\n", property);
269 sendEvent(MTP_EVENT_DEVICE_PROP_CHANGED, property);
653 MtpObjectProperty property = mRequest.getParameter(2); local
655 MtpDebug::getObjectPropCodeName(property));
657 return mDatabase->getObjectPropertyValue(handle, property, mData);
666 MtpObjectProperty property = mRequest.getParameter(2); local
668 MtpDebug::getObjectPropCodeName(property));
670 return mDatabase->setObjectPropertyValue(handle, property, mData);
676 MtpDeviceProperty property
712 uint32_t property = mRequest.getParameter(3); local
1159 MtpProperty* property = mDatabase->getObjectPropertyDesc(propCode, format); local
1172 MtpProperty* property = mDatabase->getDevicePropertyDesc(propCode); local
[all...]
/frameworks/base/core/java/android/animation/
H A DPropertyValuesHolder.java33 * This class holds information about a property and the values that that property
41 * The name of the property associated with the values. This need not be a real property,
54 * PropertyValuesHolder, since it holds all of the per-property information. This
55 * property is automatically
62 * PropertyValuesHolder, since it holds all of the per-property information. This
63 * property is automatically
99 // These maps hold all property entries for a particular class. This map
100 // is used to speed up property/sette
142 PropertyValuesHolder(Property property) argument
167 ofInt(Property<?, Integer> property, int... values) argument
286 ofFloat(Property<?, Float> property, float... values) argument
454 ofObject(Property property, TypeEvaluator<V> evaluator, V... values) argument
487 ofObject(Property<?, V> property, TypeConverter<T, V> converter, TypeEvaluator<T> evaluator, T... values) argument
512 ofObject(Property<?, V> property, TypeConverter<PointF, V> converter, Path path) argument
561 ofKeyframe(Property property, Keyframe... values) argument
580 ofKeyframes(Property property, Keyframes keyframes) argument
1049 setProperty(Property property) argument
1157 IntPropertyValuesHolder(Property property, Keyframes.IntKeyframes keyframes) argument
1172 IntPropertyValuesHolder(Property property, int... values) argument
1295 FloatPropertyValuesHolder(Property property, Keyframes.FloatKeyframes keyframes) argument
1310 FloatPropertyValuesHolder(Property property, float... values) argument
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityWindowInfo.java581 * Gets the value of a boolean property.
583 * @param property The property.
586 private boolean getBooleanProperty(int property) { argument
587 return (mBooleanProperties & property) != 0;
591 * Sets a boolean property.
593 * @param property The property.
598 private void setBooleanProperty(int property, boolean value) { argument
600 mBooleanProperties |= property;
[all...]
H A DAccessibilityRecord.java695 * Gets the value of a boolean property.
697 * @param property The property.
700 private boolean getBooleanProperty(int property) { argument
701 return (mBooleanProperties & property) == property;
705 * Sets a boolean property.
707 * @param property The property.
710 private void setBooleanProperty(int property, boolea argument
[all...]
/frameworks/base/libs/hwui/
H A DVectorDrawable.cpp248 // Update staging property with property values from animation.
279 LOG_ALWAYS_FATAL("Error setting color property on FullPath: No valid property"
285 Property property = static_cast<Property>(propertyId); local
286 switch (property) {
306 LOG_ALWAYS_FATAL("Invalid property id: %d for animation", propertyId);
416 LOG_ALWAYS_FATAL("Invalid property index: %d", propertyId);
447 LOG_ALWAYS_FATAL("Invalid property index: %d", propertyId);
H A DOpenGLRenderer.cpp88 char property[PROPERTY_VALUE_MAX]; local
89 if (property_get(PROPERTY_DISABLE_SCISSOR_OPTIMIZATION, property, "false")) {
90 mScissorOptimizationDisabled = !strcasecmp(property, "true");
/frameworks/base/media/java/android/mtp/
H A DMtpDatabase.java75 // cached property groups for single properties
79 // cached property groups for all properties for a given format
150 // send device property changed event
716 private MtpPropertyList getObjectPropertyList(int handle, int format, int property, argument
724 if (property == 0xffffffff) {
737 propertyGroup = mPropertyGroupsByProperty.get(property);
739 final int[] propertyList = new int[] { property };
742 mPropertyGroupsByProperty.put(property, propertyGroup);
836 private int setObjectProperty(int handle, int property, argument
838 switch (property) {
847 getDeviceProperty(int property, long[] outIntValue, char[] outStringValue) argument
879 setDeviceProperty(int property, long intValue, String stringValue) argument
[all...]
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbPortManager.java662 private static boolean waitForState(String property, String state) { argument
669 // State transition is done when property is set to the new configuration
670 value = SystemProperties.get(property);
674 Slog.e(TAG, "waitForState(" + state + ") for " + property + " FAILED: got " + value);
/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.
330 private void parseItemInter(VCardProperty property, String propertyNameUpper) argument
332 String propertyRawValue = property.getRawValue();
334 handleAgent(property);
341 handlePropertyValue(property, propertyNameUpper);
343 throw new VCardException("Unknown property name: \"" + propertyNameUpper + "\"");
357 // For performance reason, the states for group and property name are merged into one.
380 if (ch == ':') { // End of a property name.
392 nameIndex = i + 1; // Next should be another group or a property nam
570 handlePropertyValue(VCardProperty property, String propertyName) argument
698 handleAdrOrgN(VCardProperty property, String propertyRawValue, String sourceCharset, String targetCharset) argument
914 handleAgent(final VCardProperty property) argument
[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
502 nCreateAnimator(int property, float finalValue) argument
[all...]
H A DViewDebug.java98 * @return true if the property's value must be transformed into an Android
165 * When deep export is turned on, this property is not dumped. Instead, the
166 * properties contained in this property are dumped. Each child property
167 * is prefixed with the name of this property.
169 * @return true if the properties of this property should be dumped
185 * Specifies the category the property falls into, such as measurement,
1179 final ExportedProperty property = sAnnotations.get(method);
1181 property.category().length() != 0 ? property
1373 exportUnrolledArray(Context context, BufferedWriter out, ExportedProperty property, int[] array, String prefix, String suffix) argument
[all...]
/frameworks/base/media/jni/
H A Dandroid_mtp_MtpDatabase.cpp136 MtpObjectProperty property,
140 MtpObjectProperty property,
143 virtual MtpResponseCode getDevicePropertyValue(MtpDeviceProperty property,
146 virtual MtpResponseCode setDevicePropertyValue(MtpDeviceProperty property,
149 virtual MtpResponseCode resetDeviceProperty(MtpDeviceProperty property);
152 uint32_t format, uint32_t property,
167 bool getObjectPropertyInfo(MtpObjectProperty property, int& type);
168 bool getDevicePropertyInfo(MtpDeviceProperty property, int& type);
175 virtual MtpProperty* getObjectPropertyDesc(MtpObjectProperty property,
178 virtual MtpProperty* getDevicePropertyDesc(MtpDeviceProperty property);
366 getObjectPropertyValue(MtpObjectHandle handle, MtpObjectProperty property, MtpDataPacket& packet) argument
544 setObjectPropertyValue(MtpObjectHandle handle, MtpObjectProperty property, MtpDataPacket& packet) argument
575 getDevicePropertyValue(MtpDeviceProperty property, MtpDataPacket& packet) argument
648 setDevicePropertyValue(MtpDeviceProperty property, MtpDataPacket& packet) argument
682 getObjectPropertyList(MtpObjectHandle handle, uint32_t format, uint32_t property, int groupCode, int depth, MtpDataPacket& packet) argument
996 MtpObjectProperty property; member in struct:PropertyTableEntry
1035 getObjectPropertyInfo(MtpObjectProperty property, int& type) argument
1047 getDevicePropertyInfo(MtpDeviceProperty property, int& type) argument
1098 getObjectPropertyDesc(MtpObjectProperty property, MtpObjectFormat format) argument
1179 getDevicePropertyDesc(MtpDeviceProperty property) argument
[all...]
/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.java890 private void setSystemProperty(String property, String value) { argument
891 TelephonyManager.setTelephonyProperty(mPhoneId, property, value);
/frameworks/rs/
H A DrsFont.cpp348 char property[PROPERTY_VALUE_MAX]; local
351 if (property_get(PROPERTY_TEXT_GAMMA, property, nullptr) > 0) {
352 gamma = atof(property);
356 if (property_get(PROPERTY_TEXT_BLACK_GAMMA_THRESHOLD, property, nullptr) > 0) {
357 blackThreshold = atoi(property);
361 if (property_get(PROPERTY_TEXT_WHITE_GAMMA_THRESHOLD, property, nullptr) > 0) {
362 whiteThreshold = atoi(property);
/frameworks/base/core/java/android/widget/
H A DFastScroller.java1559 * Constructs an animator for the specified property on a group of views.
1563 * @param property The property being animated.
1564 * @param value The value to which that property should animate.
1569 Property<View, Float> property, float value, View... views) {
1574 final Animator anim = ObjectAnimator.ofFloat(views[i], property, value);
1568 groupAnimatorOfFloat( Property<View, Float> property, float value, View... views) argument
H A DRemoteViews.java1864 * @param property which layout parameter to alter
1867 public LayoutParamAction(int viewId, int property, int value) { argument
1869 this.property = property;
1875 property = parcel.readInt();
1882 dest.writeInt(property);
1896 switch (property) {
1916 throw new IllegalArgumentException("Unknown property " + property);
1928 return "LayoutParamAction" + property
1931 int property; field in class:RemoteViews.LayoutParamAction
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java522 private void startRtFloatAnimation(CanvasProperty<Float> property, float endValue, argument
524 RenderNodeAnimator animator = new RenderNodeAnimator(property, endValue);
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp375 // Convenience wrapper over the property API that returns an
388 * (in order) and returns the first non-empty property in the list :
446 * Parse a property containing space-separated options that should be
480 * Reads a "property" into "buffer" with a default of "defaultArg". If
481 * the property is non-empty, it is treated as a runtime option such
491 bool AndroidRuntime::parseRuntimeOption(const char* property, argument
498 property_get(property, buffer+runtimeArgLen, defaultArg);
507 * Reads a "property" into "buffer". If the property is non-empty, it
518 bool AndroidRuntime::parseCompilerOption(const char* property, argument
547 parseCompilerRuntimeOption(const char* property, char* buffer, const char* runtimeArg, const char* quotingArg) argument
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DCall.java101 * A call can only be in this state if the {@link Details#PROPERTY_IS_EXTERNAL_CALL} property
301 * {@link Connection#PROPERTY_IS_EXTERNAL_CALL} property set.
303 * An {@link InCallService} will only see calls with this property if it has the
421 * Whether the supplied properties includes the specified property.
424 * @param property The property to check properties for.
425 * @return Whether the specified property is supported.
427 public static boolean hasProperty(int properties, int property) { argument
428 return (properties & property) == property;
437 hasProperty(int property) argument
[all...]
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.cpp66 * although it could be changed by the user using a system property */
438 char *cp, property[PROPERTY_VALUE_MAX]; local
440 property_get(key, property, "");
441 value = strtoul(property, &cp, 10);

Completed in 1410 milliseconds

123