Searched refs:property (Results 26 - 50 of 82) sorted by relevance

1234

/frameworks/base/libs/hwui/
H A DLayerCache.cpp35 char property[PROPERTY_VALUE_MAX]; local
36 if (property_get(PROPERTY_LAYER_CACHE_SIZE, property, NULL) > 0) {
37 INIT_LOGD(" Setting layer cache size to %sMB", property);
38 setMaxSize(MB(atof(property)));
H A DAnimator.cpp204 RenderPropertyAnimator::RenderPropertyAnimator(RenderProperty property, float finalValue) argument
206 , mPropertyAccess(&(PROPERTY_ACCESSOR_LUT[property])) {
243 CanvasPropertyPrimitive* property, float finalValue)
245 , mProperty(property) {
265 CanvasPropertyPaint* property, PaintField field, float finalValue)
267 , mProperty(property)
242 CanvasPropertyPrimitiveAnimator( CanvasPropertyPrimitive* property, float finalValue) argument
264 CanvasPropertyPaintAnimator( CanvasPropertyPaint* property, PaintField field, float finalValue) argument
H A DAnimator.h135 ANDROID_API RenderPropertyAnimator(RenderProperty property, float finalValue);
157 ANDROID_API CanvasPropertyPrimitiveAnimator(CanvasPropertyPrimitive* property,
176 ANDROID_API CanvasPropertyPaintAnimator(CanvasPropertyPaint* property,
H A DPatchCache.cpp36 char property[PROPERTY_VALUE_MAX]; local
37 if (property_get(PROPERTY_PATCH_CACHE_SIZE, property, NULL) > 0) {
38 INIT_LOGD(" Setting patch cache size to %skB", property);
39 mMaxSize = KB(atoi(property));
H A DTextDropShadowCache.cpp100 char property[PROPERTY_VALUE_MAX]; local
101 if (property_get(PROPERTY_DROP_SHADOW_CACHE_SIZE, property, NULL) > 0) {
102 INIT_LOGD(" Setting drop shadow cache size to %sMB", property);
103 setMaxSize(MB(atof(property)));
H A DTextureCache.cpp44 char property[PROPERTY_VALUE_MAX]; local
45 if (property_get(PROPERTY_TEXTURE_CACHE_SIZE, property, NULL) > 0) {
46 INIT_LOGD(" Setting texture cache size to %sMB", property);
47 setMaxSize(MB(atof(property)));
52 if (property_get(PROPERTY_TEXTURE_CACHE_FLUSH_RATE, property, NULL) > 0) {
53 float flushRate = atof(property);
H A DGradientCache.cpp68 char property[PROPERTY_VALUE_MAX]; local
69 if (property_get(PROPERTY_GRADIENT_CACHE_SIZE, property, NULL) > 0) {
70 INIT_LOGD(" Setting gradient cache size to %sMB", property);
71 setMaxSize(MB(atof(property)));
/frameworks/opt/vcard/java/com/android/vcard/
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...]
H A DVCardEntryConstructor.java129 public void onPropertyCreated(VCardProperty property) { argument
130 mCurrentEntry.addProperty(property);
/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
497 nCreateAnimator(int property, float finalValue) argument
[all...]
H A DViewDebug.java91 * @return true if the property's value must be transformed into an Android
158 * When deep export is turned on, this property is not dumped. Instead, the
159 * properties contained in this property are dumped. Each child property
160 * is prefixed with the name of this property.
162 * @return true if the properties of this property should be dumped
178 * Specifies the category the property falls into, such as measurement,
1161 final ExportedProperty property = sAnnotations.get(method);
1163 property.category().length() != 0 ? property
1355 exportUnrolledArray(Context context, BufferedWriter out, ExportedProperty property, int[] array, String prefix, String suffix) argument
[all...]
/frameworks/av/media/mtp/
H A DMtpServer.cpp266 void MtpServer::sendDevicePropertyChanged(MtpDeviceProperty property) { argument
267 ALOGV("sendDevicePropertyChanged %d\n", property);
268 sendEvent(MTP_EVENT_DEVICE_PROP_CHANGED, property);
652 MtpObjectProperty property = mRequest.getParameter(2); local
654 MtpDebug::getObjectPropCodeName(property));
656 return mDatabase->getObjectPropertyValue(handle, property, mData);
665 MtpObjectProperty property = mRequest.getParameter(2); local
667 MtpDebug::getObjectPropCodeName(property));
669 return mDatabase->setObjectPropertyValue(handle, property, mData);
675 MtpDeviceProperty property
711 uint32_t property = mRequest.getParameter(3); local
1151 MtpProperty* property = mDatabase->getObjectPropertyDesc(propCode, format); local
1164 MtpProperty* property = mDatabase->getDevicePropertyDesc(propCode); local
[all...]
H A DMtpDevice.cpp214 MtpProperty* property = getDevicePropDesc(propCode); local
215 if (property)
216 mDeviceProperties.push(property);
239 MtpProperty* property = getDevicePropDesc(propCode); local
240 if (property) {
241 property->print();
242 delete property;
258 MtpProperty* property = getObjectPropDesc(prop, format); local
259 if (property) {
260 property
555 MtpProperty* property = new MtpProperty; local
576 MtpProperty* property = new MtpProperty; local
[all...]
H A DMtpServer.h107 void sendDevicePropertyChanged(MtpDeviceProperty property);
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRecord.java683 * Gets the value of a boolean property.
685 * @param property The property.
688 private boolean getBooleanProperty(int property) { argument
689 return (mBooleanProperties & property) == property;
693 * Sets a boolean property.
695 * @param property The property.
698 private void setBooleanProperty(int property, boolea argument
[all...]
H A DAccessibilityWindowInfo.java515 * Gets the value of a boolean property.
517 * @param property The property.
520 private boolean getBooleanProperty(int property) { argument
521 return (mBooleanProperties & property) != 0;
525 * Sets a boolean property.
527 * @param property The property.
532 private void setBooleanProperty(int property, boolean value) { argument
534 mBooleanProperties |= property;
[all...]
/frameworks/base/services/core/java/com/android/server/display/
H A DRampAnimator.java24 * A custom animator that progressively updates a property value at
44 public RampAnimator(T object, IntProperty<T> property) { argument
46 mProperty = property;
53 * If this is the first time the property is being set or if the rate is 0,
/frameworks/native/include/input/
H A DKeyCharacterMap.h185 inline Property(int32_t property = 0, int32_t metaState = 0) :
186 property(property), metaState(metaState) { }
188 int32_t property; member in struct:android::KeyCharacterMap::Parser::Property
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyGroup.java36 // MTP property code
67 // constructs a property group for a list of properties
188 Log.e(TAG, "unsupported property " + code);
357 Property property = mProperties[propertyIndex];
358 int propertyCode = property.code;
359 int column = property.column;
446 if (property.type == MtpConstants.TYPE_STR) {
448 } else if (property.type == MtpConstants.TYPE_UNDEFINED) {
449 result.append(handle, propertyCode, property.type, 0);
451 result.append(handle, propertyCode, property
[all...]
H A DMtpDatabase.java69 // cached property groups for single properties
73 // cached property groups for all properties for a given format
145 // send device property changed event
709 private MtpPropertyList getObjectPropertyList(long handle, int format, long property, argument
717 if (property == 0xFFFFFFFFL) {
730 propertyGroup = mPropertyGroupsByProperty.get(property);
732 int[] propertyList = new int[] { (int)property };
735 mPropertyGroupsByProperty.put(new Integer((int)property), propertyGroup);
829 private int setObjectProperty(int handle, int property, argument
831 switch (property) {
840 getDeviceProperty(int property, long[] outIntValue, char[] outStringValue) argument
872 setDeviceProperty(int property, long intValue, String stringValue) argument
[all...]
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DICalendar.java148 * Returns a set of the property names within this component.
149 * @return A set of property names within this component.
158 * @param name The name of the property that should be returned.
166 * Returns the first property with the specified name. Returns null
167 * if there is no such property.
168 * @param name The name of the property that should be returned.
169 * @return The first property with the specified name.
200 for (Property property : getProperties(propertyName)) {
201 property.toString(sb);
221 * A property withi
[all...]
/frameworks/base/core/java/android/hardware/usb/
H A DUsbManager.java403 private static boolean propertyContainsFunction(String property, String function) { argument
404 String functions = SystemProperties.get(property, "");
/frameworks/base/core/java/com/android/internal/os/
H A DZygoteConnection.java843 String property = "wrap." + args.niceName;
844 if (property.length() > 31) {
845 // Avoid creating an illegal property name when truncating.
846 if (property.charAt(30) != '.') {
847 property = property.substring(0, 31);
849 property = property.substring(0, 30);
852 args.invokeWith = SystemProperties.get(property);
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DFloat4Param.java94 boolean findLight(String property) { argument
95 String indexStr = mParamName.substring(property.length() + 1);
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
H A DSlideKitkat.java62 /** Returns the property to animate translation */
208 private Animator createAnimation(final View view, Property<View, Float> property, argument
213 start = View.TRANSLATION_Y == property ? startPosition[1] : startPosition[0];
216 final ObjectAnimator anim = ObjectAnimator.ofFloat(view, property, start, end);
218 SlideAnimatorListener listener = new SlideAnimatorListener(view, property, terminalValue, end,

Completed in 1183 milliseconds

1234