/cts/common/device-side/util/src/com/android/compatibility/common/util/ |
D | PropertyUtil.java | 111 public static boolean propertyExists(String property) { in propertyExists() argument 112 return getProperty(property) != null; in propertyExists() 116 public static boolean propertyEquals(String property, String value) { in propertyEquals() argument 118 return !propertyExists(property); // null value implies property does not exist in propertyEquals() 120 return value.equals(getProperty(property)); in propertyEquals() 127 public static boolean propertyMatches(String property, String regex) { in propertyMatches() argument 130 return !propertyExists(property); in propertyMatches() 132 String value = getProperty(property); in propertyMatches() 139 public static int getPropertyInt(String property) { in getPropertyInt() argument 140 String value = getProperty(property); in getPropertyInt() [all …]
|
/cts/tests/tests/os/src/android/os/cts/ |
D | BuildTest.java | 100 private String[] getStringList(String property) throws IOException { in getStringList() argument 101 String value = getProperty(property); in getStringList() 112 static String getProperty(String property) in getProperty() argument 114 Process process = new ProcessBuilder("getprop", property).start(); in getProperty() 132 private void assertProperty(String message, String property, String expected) in assertProperty() argument 134 Process process = new ProcessBuilder("getprop", property).start(); in assertProperty() 156 private void assertNoPropertySet(String message, String property) throws IOException { in assertNoPropertySet() argument 164 line.startsWith("[" + property + "]")); in assertNoPropertySet()
|
/cts/tests/tests/animation/src/android/animation/cts/ |
D | ObjectAnimatorTest.java | 103 String property = "y"; in testOfFloat() local 106 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); in testOfFloat() 132 String property = "y"; in testOfFloatBase() local 135 ObjectAnimator animator = ObjectAnimator.ofFloat(object, property, startY, endY); in testOfFloatBase() 138 objAnimator.setPropertyName(property); in testOfFloatBase() 146 String property = "scrollY"; in testOfInt() local 148 final ObjectAnimator intAnimator = ObjectAnimator.ofInt(object, property, 200, 0); in testOfInt() 170 String property = "backgroundColor"; in testOfObject() local 176 final ObjectAnimator colorAnimator = ObjectAnimator.ofObject(object, property, in testOfObject() 231 String property = "backgroundColor"; in testOfArgb() local [all …]
|
D | PropertyValuesHolderTest.java | 247 ShapeHolderYProperty property=new ShapeHolderYProperty(ShapeHolder.class,"y"); in testOfFloat_Property() local 248 property.setObject(mObject); in testOfFloat_Property() 249 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat(property, values); in testOfFloat_Property() 282 String property = "backgroundColor"; in testOfInt_Property() local 287 ViewColorProperty colorProperty=new ViewColorProperty(Integer.class,property); in testOfInt_Property() 527 FloatProperty property = new FloatProperty("distance") { in testOfObject_Converter() local 538 PropertyValuesHolder.ofObject(property, converter, path); in testOfObject_Converter() 685 ShapeHolderYProperty property=new ShapeHolderYProperty(ShapeHolder.class,"y"); in testSetProperty() local 686 property.setObject(mObject); in testSetProperty() 688 pVHolder.setProperty(property); in testSetProperty()
|
D | ValueAnimatorTest.java | 466 String property = "y"; in testEnd() local 469 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); in testEnd() 508 String property = "y"; in testGetAnimatedValue_PropertyName() local 514 property); in testGetAnimatedValue_PropertyName() 688 String property = "y"; in getAnimator() local 691 ValueAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); in getAnimator() 700 long sleepTime, String property) throws InterruptedException { in getValue() argument 710 value = ((Float)animator.getAnimatedValue(property)).floatValue(); in getValue()
|
D | AnimatorTest.java | 134 String property = "y"; in testEnd() local 137 Animator animator = ObjectAnimator.ofFloat(object, property, startY, endY); in testEnd()
|
D | AnimatorSetTest.java | 608 String property = "y"; in getYAnimator() local 611 ObjectAnimator yAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); in getYAnimator()
|
/cts/tools/testng/ |
D | gen-test-list-xml.py | 58 children = property(_get_children, _set_children, doc="Get/set list of children BaseNode") 72 name = property(_get_name, _set_name, doc="Get/set the name property of the current XML node") 77 type_name = property(_get_type_name, doc="Get the name of the current XML node") 85 …properties = property(_get_properties, _set_properties, doc="Get/set additional XML properties suc…
|
/cts/tests/tests/selinux/common/src/android/security/ |
D | SELinuxTargetSdkTestBase.java | 31 protected static String getProperty(String property) in getProperty() argument 33 Process process = new ProcessBuilder("getprop", property).start(); in getProperty()
|
/cts/tests/tests/transition/src/android/transition/cts/ |
D | CaptureValuesTest.java | 97 for (String property : properties) { in verifyCapturedValues() 98 assertTrue(className + " should have written to property " + property, in verifyCapturedValues() 99 values.values.keySet().contains(property)); in verifyCapturedValues()
|
/cts/apps/CtsVerifier/res/raw/ |
D | opencv_library_license | 16 Third party copyrights are property of their respective owners.
|
/cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/ |
D | DeviceInfoInstrument.java | 421 private static String getProperty(String property) in getProperty() argument 423 Process process = new ProcessBuilder("getprop", property).start(); in getProperty()
|