/cts/tests/tests/animation/src/android/animation/cts/ |
ValueAnimatorTest.java | 298 String property = "y"; local 301 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); 336 String property = "y"; local 341 float[] animatedValues = getValue(objAnimator, 10, "getAnimatedValue(property)", 200l, 342 property); 423 String property = "y"; local 426 ValueAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); 435 long sleepTime, String property) throws InterruptedException { 444 }else if(methodName.equals("getAnimatedValue(property)")) { 445 value = ((Float)animator.getAnimatedValue(property)).floatValue() [all...] |
AnimatorSetTest.java | 347 String property = "y"; local 350 ObjectAnimator yAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_build.c | 1235 struct tgsi_property property; local 1249 struct tgsi_property property; local 1307 struct tgsi_property *property; local [all...] |
/external/toybox/kconfig/ |
expr.h | 80 struct property *prop; 113 struct property { struct 114 struct property *next; 139 struct property *prompt;
|
/external/v8/src/ast/ |
ast.cc | 15 #include "src/property.h" 16 #include "src/property-details.h" 123 Property* property = expr->AsProperty(); local 124 LhsKind assign_type = Property::GetAssignType(property); 268 ObjectLiteral::Property* property = properties()->at(i); local 269 Expression* value = property->value(); 271 property->SetSlot(spec->AddStoreICSlot()) 301 ObjectLiteral::Property* property = properties()->at(property_index); local 344 ObjectLiteral::Property* property = properties()->at(property_index); local 365 ObjectLiteral::Property* property = properties()->at(i); local 408 ObjectLiteral::Property* property = properties()->at(i); local [all...] |
/frameworks/av/media/mtp/ |
MtpDevice.cpp | 249 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->print() 595 MtpProperty* property = new MtpProperty; local 616 MtpProperty* property = new MtpProperty; local [all...] |
MtpServer.cpp | 267 void MtpServer::sendDevicePropertyChanged(MtpDeviceProperty property) { 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 = mRequest.getParameter(1) 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/com/android/internal/os/ |
ZygoteConnection.java | 688 String property = "wrap." + args.niceName; local 689 if (property.length() > 31) { 691 if (property.charAt(30) != '.') { 692 property = property.substring(0, 31); 694 property = property.substring(0, 30); 697 args.invokeWith = SystemProperties.get(property);
|
/frameworks/native/libs/input/ |
KeyCharacterMap.cpp | 1066 const Property& property = properties.itemAt(i); local [all...] |
/frameworks/opt/calendar/src/com/android/calendarcommon2/ |
ICalendar.java | 76 private final LinkedHashMap<String, ArrayList<Property>> mPropsMap = 77 new LinkedHashMap<String, ArrayList<Property>>(); 134 * Adds a Property to this component. 137 public void addProperty(Property prop) { 139 ArrayList<Property> props = mPropsMap.get(name); 141 props = new ArrayList<Property>(); 148 * 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. 161 public List<Property> getProperties(String name) 488 Property property; local [all...] |
RecurrenceSet.java | 193 ICalendar.Property dtstartProperty = 289 ICalendar.Property dtstartProp = new ICalendar.Property("DTSTART"); 314 ICalendar.Property durationProp = new ICalendar.Property("DURATION"); 348 ICalendar.Property dtstartProp = new ICalendar.Property("DTSTART"); 373 ICalendar.Property durationProp = new ICalendar.Property("DURATION"); 392 ICalendar.Property prop = new ICalendar.Property(propertyName) [all...] |
/hardware/qcom/display/msm8960/libhwcomposer/ |
hwc_mdpcomp.cpp | 86 char property[PROPERTY_VALUE_MAX]; local 89 if((property_get("persist.hwc.mdpcomp.enable", property, NULL) > 0) && 90 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || 91 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) { 96 if(property_get("debug.mdpcomp.logs", property, NULL) > 0) { 97 if(atoi(property) != 0) 102 if(property_get("debug.mdpcomp.maxpermixer", property, NULL) > 0) { 103 if(atoi(property) != 0) 110 if(property_get("debug.mdpcomp.idletime", property, NULL) > 0) { 111 if(atoi(property) != 0 [all...] |
/hardware/qcom/display/msm8996/libgralloc/ |
alloc_controller.cpp | 126 // Check if the overriding property debug.gralloc.gfx_ubwc_disable 129 char property[PROPERTY_VALUE_MAX]; local 130 property_get("debug.gralloc.gfx_ubwc_disable", property, "0"); 131 if(!(strncmp(property, "1", PROPERTY_VALUE_MAX)) || 132 !(strncmp(property, "true", PROPERTY_VALUE_MAX))) { 324 char property[PROPERTY_VALUE_MAX]; local 325 if((property_get("debug.gralloc.map_fb_memory", property, NULL) > 0) && 326 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || 327 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) { 429 char property[PROPERTY_VALUE_MAX] local [all...] |
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/ |
omx_swvdec.cpp | 3022 SWVDEC_PROPERTY property; local 3051 SWVDEC_PROPERTY property; local 3085 SWVDEC_PROPERTY property; local 3114 SWVDEC_PROPERTY property; local 3152 SWVDEC_PROPERTY property; local [all...] |
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/src/ |
omx_swvenc_hevc.cpp | 1319 SWVENC_PROP property; local 1349 SWVENC_PROP property; local [all...] |
/hardware/ti/omap4xxx/camera/inc/ |
CameraProperties.h | 153 char property[PROPERTY_VALUE_MAX]; local 154 property_get("ro.product.manufacturer", property, EXIF_MAKE_DEFAULT); 155 property[0] = toupper(property[0]); 156 set(EXIF_MAKE, property); 157 property_get("ro.product.model", property, EXIF_MODEL_DEFAULT); 158 property[0] = toupper(property[0]); 159 set(EXIF_MODEL, property);
|
/packages/services/Car/libvehiclenetwork/java/src/com/android/car/vehiclenetwork/ |
VehicleNetwork.java | 49 * Notify HAL events. This requires subscribing the property 52 void onHalError(int errorCode, int property, int operation); 60 void onPropertySubscribe(int property, float sampleRate, int zones); 61 void onPropertyUnsubscribe(int property); 127 * Return configuration information of single property 129 * @param property vehicle property number defined in {@link VehicleNetworkConsts}. 0 has has 131 * @return null if given property does not exist. 133 public VehiclePropConfigs listProperties(int property) { 135 VehiclePropConfigsParcelable parcelable = mService.listProperties(property); 332 assertVectorLength(v.getInt32ValuesCount(), property, v.getValueType()); local 343 assertVectorLength(v.getInt32ValuesCount(), property, v.getValueType()); local 367 assertVectorLength(v.getFloatValuesCount(), property, v.getValueType()); local 378 assertVectorLength(v.getFloatValuesCount(), property, v.getValueType()); local [all...] |
/packages/services/Car/vehicle_network_service/ |
VehicleNetworkService.cpp | 229 msg.appendFormat("property 0x%x\n", prop->prop); 237 msg.append("*Active clients per property*\n"); 246 msg.append("*Subscription info per property*\n"); 252 msg.append("*Event counts per property*\n"); 264 bool VehicleNetworkService::isOperationAllowed(int32_t property, bool isWrite) { 267 bool allowed = mVehiclePropertyAccessControl.testAccess(property, uid, isWrite); 269 ALOGW("Property 0x%x: access not allowed for uid %d, isWrite %d", property, uid, isWrite); 281 LOG_ALWAYS_FATAL("Vehicle property access policy could not be initialized."); 317 int32_t property = mPropertyToClientsMap.keyAt(i) local [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/ |
XInput2.h | 320 Atom property; member in struct:__anon36835 607 Atom property, 619 Atom property 626 Atom property,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/ |
XInput2.h | 310 Atom property; member in struct:__anon38694 575 Atom property, 587 Atom property 594 Atom property,
|
/system/bt/bta/gatt/ |
bta_gatts_int.h | 98 tBTA_GATT_CHAR_PROP property; member in struct:__anon71774
|
/system/core/logd/ |
LogBuffer.cpp | 67 char property[PROPERTY_VALUE_MAX]; local 68 property_get(key, property, ""); 71 unsigned long value = strtoul(property, &cp, 10); [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
PropertyTable.java | 11 package org.eclipse.wb.internal.core.model.property.table; 42 import org.eclipse.wb.internal.core.model.property.Property; 43 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory; 44 import org.eclipse.wb.internal.core.model.property.category.PropertyCategoryProvider; 45 import org.eclipse.wb.internal.core.model.property.category.PropertyCategoryProviders; 46 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor; 47 import org.eclipse.wb.internal.core.model.property.editor.complex.IComplexPropertyEditor; 48 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation; 49 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation 286 Property property = m_activePropertyInfo.getProperty(); local 392 Property property = m_activePropertyInfo.getProperty(); local 448 Property property = m_activePropertyInfo.getProperty(); local 498 Property property = propertyInfo.getProperty(); local 797 Property property = propertyInfo.getProperty(); local 1190 Property property = propertyInfo.getProperty(); local 1248 Property property = propertyInfo.getProperty(); local [all...] |
/external/robolectric/v3/ |
robolectric-annotations-3.1-SNAPSHOT.jar | |
/bootable/recovery/updater/ |
install.cpp | 1446 char* property; local [all...] |