Home
last modified time | relevance | path

Searched refs:properties (Results 1 – 18 of 18) sorted by relevance

/cts/tests/tests/calendarcommon/src/android/calendarcommon2/cts/
DCalendarcommon2Test.java38 List<ICalendar.Property> properties = in testStaticLinking() local
40 assertTrue(properties == null); in testStaticLinking()
47 properties = component.getProperties(RecurrenceSet.CTS_PROPERTY_NAME); in testStaticLinking()
48 assertTrue(properties.size() == 1); in testStaticLinking()
/cts/tests/tests/transition/src/android/transition/cts/
DCaptureValuesTest.java89 String[] properties = transition.getTransitionProperties(); in verifyCapturedValues() local
91 assertNull(properties); in verifyCapturedValues()
94 assertNotNull(className + " should have non-null transition properties", properties); in verifyCapturedValues()
95 assertTrue(properties.length > 0); in verifyCapturedValues()
97 for (String property : properties) { in verifyCapturedValues()
/cts/tests/tests/media/src/android/media/cts/
DVpxCodecTestBase.java543 CodecProperties properties = getVpxCodecProperties( in decode() local
545 if (properties == null) { in decode()
549 int frameColorFormat = properties.colorFormat; in decode()
550 format.setInteger(MediaFormat.KEY_COLOR_FORMAT, properties.colorFormat); in decode()
557 Log.d(TAG, "Creating decoder " + properties.codecName + in decode()
562 MediaCodec decoder = MediaCodec.createByCodecName(properties.codecName); in decode()
730 CodecProperties properties, in MediaEncoderAsyncHelper() argument
735 mProperties = properties; in MediaEncoderAsyncHelper()
1288 CodecProperties properties = getVpxCodecProperties( in encode() local
1290 if (properties == null) { in encode()
[all …]
/cts/tools/testng/
Dgen-test-list-xml.py85properties = property(_get_properties, _set_properties, doc="Get/set additional XML properties suc… variable in BaseNode
96 if self.properties:
97 for key, value in self.properties.iteritems():
189 root.properties = xml_properties
/cts/tools/cts-device-info/src/com/android/cts/deviceinfo/
DVulkanDeviceInfo.java307 JSONObject properties = device.getJSONObject(KEY_PROPERTIES); in emitDevices() local
310 emitLong(store, properties, KEY_API_VERSION); in emitDevices()
311 emitLong(store, properties, KEY_DRIVER_VERSION); in emitDevices()
312 emitLong(store, properties, KEY_VENDOR_ID); in emitDevices()
313 emitLong(store, properties, KEY_DEVICE_ID); in emitDevices()
314 emitLong(store, properties, KEY_DEVICE_TYPE); in emitDevices()
315 emitString(store, properties, KEY_DEVICE_NAME); in emitDevices()
316 emitLongArray(store, properties, KEY_PIPELINE_CACHE_UUID); in emitDevices()
318 JSONObject limits = properties.getJSONObject(KEY_LIMITS); in emitDevices()
430 JSONObject sparse = properties.getJSONObject(KEY_SPARSE_PROPERTIES); in emitDevices()
[all …]
/cts/tests/tests/telecom/src/android/telecom/cts/
DCallTest.java102 final int properties = PROPERTY_CONFERENCE in testPropertiesToString() local
110 Call.Details.propertiesToString(properties)); in testPropertiesToString()
DConnectionTest.java182 final int properties = Connection.PROPERTY_IS_EXTERNAL_CALL; in testSetAndGetConnectionProperties() local
184 connection.setConnectionProperties(properties); in testSetAndGetConnectionProperties()
186 assertEquals(properties, connection.getConnectionProperties()); in testSetAndGetConnectionProperties()
DConferenceTest.java238 int properties = mConferenceObject.getConnectionProperties(); in testConferenceProperties() local
239 properties |= Connection.PROPERTY_HAS_CDMA_VOICE_PRIVACY; in testConferenceProperties()
241 mConferenceObject.setConnectionProperties(properties); in testConferenceProperties()
DRemoteConferenceTest.java366 int properties = mRemoteConference.getConnectionCapabilities() in testRemoteConferenceCallbacks_ConnectionProperties() local
368 mRemoteConference.setConnectionProperties(properties); in testRemoteConferenceCallbacks_ConnectionProperties()
371 assertEquals(properties, callbackInvoker.getArgs(0)[1]); in testRemoteConferenceCallbacks_ConnectionProperties()
DBaseTelecomTestWithMockServices.java967 public void assertCallProperties(final Call call, final int properties) { in assertCallProperties() argument
977 return call.getDetails().hasProperty(properties); in assertCallProperties()
981 "Call should have properties " + properties in assertCallProperties()
DRemoteConnectionTest.java263 int properties = mRemoteConnection.getConnectionCapabilities() in testRemoteConnectionCallbacks_ConnectionProperties() local
265 mRemoteConnection.setConnectionProperties(properties); in testRemoteConnectionCallbacks_ConnectionProperties()
268 assertEquals(properties, callbackInvoker.getArgs(0)[1]); in testRemoteConnectionCallbacks_ConnectionProperties()
/cts/tests/tests/view/src/android/view/cts/
DMotionEventTest.java738 PointerProperties properties = new PointerProperties(); in testPointerPropertiesDefaultConstructor() local
740 assertEquals(MotionEvent.INVALID_POINTER_ID, properties.id); in testPointerPropertiesDefaultConstructor()
741 assertEquals(MotionEvent.TOOL_TYPE_UNKNOWN, properties.toolType); in testPointerPropertiesDefaultConstructor()
746 PointerProperties properties = new PointerProperties(); in testPointerPropertiesCopyConstructor() local
747 properties.id = 1; in testPointerPropertiesCopyConstructor()
748 properties.toolType = MotionEvent.TOOL_TYPE_MOUSE; in testPointerPropertiesCopyConstructor()
750 PointerProperties copy = new PointerProperties(properties); in testPointerPropertiesCopyConstructor()
757 PointerProperties properties = new PointerProperties(); in testPointerPropertiesCopyFrom() local
758 properties.id = 1; in testPointerPropertiesCopyFrom()
759 properties.toolType = MotionEvent.TOOL_TYPE_MOUSE; in testPointerPropertiesCopyFrom()
[all …]
/cts/tests/tests/midi/src/android/midi/cts/
DMidiEchoTest.java160 Bundle properties = info.getProperties(); in findEchoDevice() local
161 String manufacturer = (String) properties.get( in findEchoDevice()
165 String product = (String) properties.get( in findEchoDevice()
268 Bundle properties = echoInfo.getProperties(); in checkEchoDeviceInfo() local
269 String tags = (String) properties.get("tags"); in checkEchoDeviceInfo()
/cts/tests/camera/src/android/hardware/camera2/cts/
DAllocationTest.java749 CameraCharacteristics properties = in forEachCamera() local
751 StaticMetadata staticInfo = new StaticMetadata(properties); in forEachCamera()
809 CameraCharacteristics properties = in forEachSize() local
812 assertNotNull("Can't get camera properties!", properties); in forEachSize()
815 properties.get(CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP); in forEachSize()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java1095 CameraCharacteristics properties = cameraManager.getCameraCharacteristics(cameraId); in getSupportedSizeForFormat() local
1096 assertNotNull("Can't get camera characteristics!", properties); in getSupportedSizeForFormat()
1101 properties.get(CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP); in getSupportedSizeForFormat()
1124 CameraCharacteristics properties = cameraManager.getCameraCharacteristics(cameraId); in getSupportedSizeForClass() local
1125 assertNotNull("Can't get camera characteristics!", properties); in getSupportedSizeForClass()
1130 properties.get(CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP); in getSupportedSizeForClass()
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
DXmpDepthDecode.java29 import com.adobe.xmp.properties.XMPPropertyInfo;
/cts/tests/libcore/javautilcollections/libs/
Dguava-20.0.jar ... com.google.guava/guava/pom.properties META-INF/maven/com.google. ...
/cts/tools/dex-tools/dex/
Dclasses0.out.dex56140 public abstract java.util.SortedMap properties()
56161 public abstract java.util.SortedMap properties()