Home
last modified time | relevance | path

Searched refs:duplexMode (Results 1 – 3 of 3) sorted by relevance

/cts/tests/tests/print/src/android/print/cts/
DCustomPrintOptionsTest.java233 final Integer colorMode, final Integer duplexMode, final Resolution resolution) in testCase() argument
259 if (duplexMode != null) { in testCase()
260 additionalAttributesBuilder.setDuplexMode(duplexMode); in testCase()
261 newAttributesBuilder.setDuplexMode(duplexMode); in testCase()
291 if (mediaSize != null || colorMode != null || duplexMode != null in testCase()
DPrintAttributesTest.java102 private PrintAttributes createAttributes(MediaSize mediaSize, int colorMode, int duplexMode, in createAttributes() argument
104 if (mediaSize == null && colorMode == 0 && duplexMode == 0 && resolution == null) { in createAttributes()
118 if (duplexMode != 0) { in createAttributes()
119 builder.setDuplexMode(duplexMode); in createAttributes()
/cts/tests/tests/telephonyprovider/src/android/telephonyprovider/cts/
DServiceStateTest.java242 int duplexMode = cursor.getInt(cursor.getColumnIndex(DUPLEX_MODE)); in testGetDuplexMode_query() local
243 assertThat(duplexMode).isEqualTo(mTelephonyManager.getServiceState().getDuplexMode()); in testGetDuplexMode_query()