/packages/services/Car/car-systemtest-lib/src/android/car/test/ |
VehicleHalEmulator.java | 42 * To test a case where specific property should not be present, test can call 52 * Interface for handler of each property. 57 void onPropertySubscribe(int property, float sampleRate, int zones); 58 void onPropertyUnsubscribe(int property); 83 * Add property to mocked vehicle hal. 95 * Add static property to mocked vehicle hal. 107 * Remove this property from vehicle HAL properties. Emulated vehicle HAL will not have this 108 * property. This is useful to test the case where specific property is not present. 109 * @param property 189 int property = 0; local [all...] |
/packages/services/Car/libvehiclenetwork/native/ |
IVehicleNetwork.cpp | 63 virtual sp<VehiclePropertiesHolder> listProperties(int32_t property) { 67 data.writeInt32(property); 143 virtual status_t subscribe(const sp<IVehicleNetworkListener> &listener, int32_t property, 148 data.writeInt32(property); 155 virtual void unsubscribe(const sp<IVehicleNetworkListener> &listener, int32_t property) { 159 data.writeInt32(property); 162 ALOGI("unsubscribing property %d failed %d", property, status); 201 status_t injectHalError(int32_t errorCode, int32_t property, int32_t operation) { 205 data.writeInt32(property); 261 int32_t property = data.readInt32(); local 323 int32_t property = data.readInt32(); local 337 int32_t property = data.readInt32(); local 405 int32_t property = data.readInt32(); local [all...] |
/packages/services/Car/service/src/com/android/car/hal/ |
SensorHalService.java | 108 int property = v.getProp(); local 109 int sensorType = getSensorTypeFromHalProperty(property); 111 throw new RuntimeException("handleBooleanHalEvent no sensor defined for property " + 112 property); 114 switch (property) { 120 Log.i(CarLog.TAG_SENSOR, "boolean event, property:" + 121 Integer.toHexString(property) + " value:" + v.getInt32Values(0)); 130 Log.i(CarLog.TAG_SENSOR, "int event, property:" + 131 Integer.toHexString(property) + " value:" + v.getInt32Values(0)); 139 Log.i(CarLog.TAG_SENSOR, "float event, property:" [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/mtd/ |
ubi-user.h | 130 * Set an UBI volume property 133 * To set an UBI volume property the %UBI_IOCSETPROP ioctl command should be 135 * passed. The object describes which property should be set, and to which value 188 /* Set an UBI volume property */ 226 * UBI set property ioctl constants 401 * property. 402 * @property: property to set (%UBI_PROP_DIRECT_WRITE) 407 __u8 property; member in struct:ubi_set_prop_req
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/mtd/ |
ubi-user.h | 130 * Set an UBI volume property 133 * To set an UBI volume property the %UBI_IOCSETPROP ioctl command should be 135 * passed. The object describes which property should be set, and to which value 188 /* Set an UBI volume property */ 227 * UBI set volume property ioctl constants. 403 * property. 404 * @property: property to set (%UBI_VOL_PROP_DIRECT_WRITE) 409 __u8 property; member in struct:ubi_set_vol_prop_req
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/ |
GLListProperty.java | 24 * A list property is a container for a list of properties, addressed by index. 34 * @param template property that will be cloned and used as members of the list 67 public boolean add(IGLProperty property) { 68 property.setParent(this); 69 return mList.add(property); 72 public boolean remove(IGLProperty property) { 73 return mList.remove(property); 76 public void set(int index, IGLProperty property) { 78 mList.set(index, property); 79 property.setParent(this) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/ |
TexImageTransform.java | 83 IGLProperty property = mAccessor.getProperty(currentState); local 84 if (!(property instanceof GLStringProperty)) { 88 GLStringProperty prop = (GLStringProperty) property; 92 // it only once and save the result in a temporary file. The property is actually 115 IGLProperty property = mAccessor.getProperty(state); local 116 property.setValue(mOldValue);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/ |
ExportGradleTest.java | 125 Object property = job.getProperty(ERROR_KEY); local 126 assertNull(property); 202 Object property = job.getProperty(ERROR_KEY); local 203 assertNull(property); 239 Object property = job.getProperty(ERROR_KEY); local 240 assertNull(property);
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewHierarchyLoader.java | 160 ViewNode.Property property = new ViewNode.Property(); local 161 property.name = data.substring(start, index); 163 int colonIndex = property.name.indexOf(':'); 165 property.name = property.name.substring(colonIndex + 1); 171 property.value = data.substring(index2 + 1, index2 + 1 + length); 173 node.properties.add(property); 174 node.namedProperties.put(property.name, property) [all...] |
/system/core/logd/ |
main.cpp | 145 // Property helper 162 char property[PROPERTY_VALUE_MAX]; local 167 property_get(newkey, property, ""); 174 property_get(newkey, def, property); 177 property_get(key, property, def); 179 if (check_flag(property, "true")) { 182 if (check_flag(property, "false")) { 185 if (check_flag(property, "eng")) { 189 if (check_flag(property, "svelte")) { 205 property_get("ro.build.type", property, ""); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
PropertyFactory.java | 52 import org.eclipse.wb.internal.core.editor.structure.property.PropertyListIntersector; 53 import org.eclipse.wb.internal.core.model.property.ComplexProperty; 54 import org.eclipse.wb.internal.core.model.property.Property; 55 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory; 56 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor; 57 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation; 73 * The {@link PropertyFactory} creates (and caches) the set of {@link Property} 87 System.err.println("WARNING: The property cache is disabled"); 91 private static final Property[] NO_PROPERTIES = new Property[0] 211 XmlProperty property = new XmlProperty(editor, this, node, descriptor); local 285 XmlProperty property = properties.get(i); local 412 Property property = new ComplexProperty( local 427 Property property = new ComplexProperty( local 452 XmlProperty property = properties.get(i); local 665 Property property = new ComplexProperty( local 680 Property property = new ComplexProperty( local [all...] |
/external/dexmaker/src/main/java/com/google/dexmaker/ |
DexMaker.java | 388 * dexmaker.dexcache} system property. If that exists, it will be used for 393 * property. 403 String property = System.getProperty("dexmaker.dexcache"); local 404 if (property != null) { 405 dexCache = new File(property); 410 + " found; consider setting the 'dexmaker.dexcache' system property)");
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
HtmlTooltipHelper.java | 11 package org.eclipse.wb.internal.core.model.property.table; 48 * @coverage core.model.property.table
|
/external/emma/ant/ant14/com/vladium/emma/report/ |
ReportCfg.java | 35 * the ability for report properties to be set either via the generic <property> 37 * conceptual property being set via an attribute and a nested element are resolved 98 // generic property element [don't doc this publicly]: 104 final PropertyElement property = new PropertyElement (); local 105 m_genericSettings.add (property); 107 return property; 133 final PropertyElement property = (PropertyElement) i.next (); local 135 final String name = property.getName (); 136 final String value = property.getValue () != null ? property.getValue () : "" [all...] |
/external/v8/src/ |
json-stringifier.h | 54 // Serialize a object property. 55 // The key may or may not be serialized depending on the property. 545 Handle<Object> property; local 551 property = isolate->factory()->NewHeapNumber(value); 554 property = handle(object->RawFastPropertyAt(field_index), isolate); 558 isolate_, property, 562 Result result = SerializeProperty(property, comma, key); 590 Handle<Object> property; local 592 isolate_, property, maybe_property, EXCEPTION); 593 Result result = SerializeProperty(property, comma, key_handle) [all...] |
/frameworks/base/libs/hwui/ |
VectorDrawable.cpp | 248 // Update staging property with property values from animation. 273 Property currentProperty = static_cast<Property>(propertyId); 274 if (currentProperty == Property::strokeColor) { 276 } else if (currentProperty == Property::fillColor) { 279 LOG_ALWAYS_FATAL("Error setting color property on FullPath: No valid property" 285 Property property = static_cast<Property>(propertyId) local [all...] |
/hardware/qcom/display/msm8226/libhwcomposer/ |
hwc.cpp | 939 char property[PROPERTY_VALUE_MAX]; local 940 if((property_get("ro.hwc.is_delta_panel", property, NULL) > 0) && 941 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || 942 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
|
/hardware/qcom/display/msm8226/liboverlay/ |
overlay.cpp | 56 char property[PROPERTY_VALUE_MAX]; local 57 if((property_get("ro.hwc.is_delta_panel", property, NULL) > 0) && 58 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || 59 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
AaptParser.java | 130 * such as which property was being processed and what the string value was that 604 String property = matcher.group(1); local 607 // First find the property. We can't just immediately look for the 613 return findRange(file, line, property, value); 615 // Find first occurrence of property followed by '' or "" 616 IRegion region1 = findRange(file, line, property, "\"\""); //$NON-NLS-1$ 617 IRegion region2 = findRange(file, line, property, "''"); //$NON-NLS-1$ 620 // Highlight the property instead 621 return findRange(file, line, property, null); 636 String property = matcher.group(2) local 642 String property = matcher.group(1); local [all...] |
/system/connectivity/shill/ |
property_store_unittest.cc | 147 TypeParam property; local 148 PropertyStoreTest::RegisterProperty(&store, "some property", &property); 149 EXPECT_TRUE(store.Contains("some property")); 156 TypeParam property{}; // value-initialize primitives 157 PropertyStoreTest::RegisterProperty(&store, "some property", &property); 162 store, "some property", &read_value, &error)); 163 EXPECT_EQ(property, read_value); 170 TypeParam property; local [all...] |
/prebuilts/tools/common/m2/repository/xhtmlrenderer/xhtmlrenderer/R8rc1/ |
xhtmlrenderer-R8rc1.jar | |
/art/compiler/optimizing/ |
graph_visualizer.cc | 204 void PrintProperty(const char* name, const char* property) { 206 output_ << name << " \"" << property << "\"\n"; local 209 void PrintProperty(const char* name, const char* property, int id) { 211 output_ << name << " \"" << property << id << "\"\n";
|
/cts/tests/tests/animation/src/android/animation/cts/ |
AnimatorTest.java | 109 String property = "y"; local 112 Animator animator = ObjectAnimator.ofFloat(object, property, startY, endY);
|
ObjectAnimatorTest.java | 24 import android.util.Property; 55 String property = "y"; local 58 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); 75 String property = "y"; local 78 ObjectAnimator animator = ObjectAnimator.ofFloat(object, property, startY, endY); 81 objAnimator.setPropertyName(property); 88 String property = "backgroundColor"; local 92 final ObjectAnimator colorAnimator = ObjectAnimator.ofInt(object, property, 114 String property = "backgroundColor"; local 119 final ObjectAnimator colorAnimator = ObjectAnimator.ofObject(object, property, 180 String property = "y"; local 214 String property = "y"; local 235 String property = "y"; local 269 final Property property = AnimTarget.TEST_VALUE; local [all...] |
PropertyValuesHolderTest.java | 27 import android.util.Property; 218 ShapeHolderYProperty property=new ShapeHolderYProperty(ShapeHolder.class.getClass(),"y"); local 219 property.setObject(mObject); 220 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat(property, values); 255 String property = "backgroundColor"; local 260 ViewColorProperty colorProperty=new ViewColorProperty(Integer.class.getClass(),property); 283 ShapeHolderYProperty property=new ShapeHolderYProperty(ShapeHolder.class.getClass(),"y"); local 284 property.setObject(mObject); 286 pVHolder.setProperty(property); 295 class ShapeHolderYProperty extends Property { [all...] |