Home
last modified time | relevance | path

Searched refs:configure (Results 1 – 25 of 44) sorted by relevance

12

/cts/tests/tests/appwidget/src/android/appwidget/cts/
DUpdateProviderInfoTest.java81 assertNull(getProviderInfo().configure); in testInfoOverrides()
85 assertNotNull(getProviderInfo().configure); in testInfoOverrides()
89 assertNull(getProviderInfo().configure); in testInfoOverrides()
95 assertNull(getProviderInfo().configure); in testOverridesPersistedOnUpdate()
98 assertNotNull(getProviderInfo().configure); in testOverridesPersistedOnUpdate()
104 assertNotNull(getProviderInfo().configure); in testOverridesPersistedOnUpdate()
109 assertNull(getProviderInfo().configure); in testOverridesPersistedOnUpdate()
115 assertNull(getProviderInfo().configure); in testOverrideClearedWhenMissingInfo()
118 assertNotNull(getProviderInfo().configure); in testOverrideClearedWhenMissingInfo()
122 assertNull(getProviderInfo().configure); in testOverrideClearedWhenMissingInfo()
DAppWidgetTestCase.java97 provider.configure.getPackageName()); in verifyInstalledProviders()
99 provider.configure.getClassName()); in verifyInstalledProviders()
126 provider.configure.getPackageName()); in verifyInstalledProviders()
128 provider.configure.getClassName()); in verifyInstalledProviders()
DCollectionAppWidgetTest.java128 CollectionAppWidgetProvider.configure(providerCountDownLatch, null, null); in setup()
230 CollectionAppWidgetProvider.configure(updateLatch, null, null); in verifySetDisplayedChild()
267 CollectionAppWidgetProvider.configure(updateLatch, null, null); in verifyShowCommand()
383 CollectionAppWidgetProvider.configure(updateLatch, () -> mListView.getChildCount() > 0, in testSetScrollPosition()
/cts/tests/tests/media/src/android/media/cts/
DInputSurfaceInterface.java32 void configure(MediaCodec codec); in configure() method
34 void configure(NdkMediaCodec codec); in configure() method
DSdkMediaCodec.java52 public void configure(MediaFormat format, int flags) { in configure() method in SdkMediaCodec
53 mCodec.configure(format, null, null, flags); in configure()
58 surface.configure(mCodec); in setInputSurface()
DMediaCodecTest.java247 codec.configure(format, null /* surface */, null /* crypto */, in verifyException()
256 codec.configure(format, null /* surface */, null /* crypto */, in verifyException()
305 codec.configure(format, null /* surface */, null /* crypto */, 0 /* flags */); in verifyException()
381 encoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); in testCreateInputSurfaceErrors()
420 encoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); in testSignalSurfaceEOS()
486 encoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); in doTestAbruptStop()
618 mediaCodec.configure(mediaFormat, surface, null /* crypto */, 0 /* flags */); in testAsyncReset()
804 encoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); in initCodecAndSurface()
814 … encoder.configure(format, outputSurface.getSurface(), null, MediaCodec.CONFIGURE_FLAG_ENCODE); in initCodecAndSurface()
927 encoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); in testDequeueSurface()
[all …]
DNdkInputSurface.java92 public void configure(MediaCodec codec) { in configure() method in NdkInputSurface
97 public void configure(NdkMediaCodec codec) { in configure() method in NdkInputSurface
DMediaCodecWrapper.java34 void configure(MediaFormat format, int flags); in configure() method
DInputSurface.java243 public void configure(MediaCodec codec) { in configure() method in InputSurface
248 public void configure(NdkMediaCodec codec) { in configure() method in InputSurface
DNdkMediaCodec.java104 public void configure(MediaFormat format, int flags) { in configure() method in NdkMediaCodec
136 surface.configure(this); in setInputSurface()
DDecodeEditEncodeTest.java220 encoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); in generateVideoFile()
413 encoder.configure(outputFormat, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); in editVideoFile()
425 decoder.configure(inputFormat, outputSurface.getSurface(), null, 0); in editVideoFile()
630 decoder.configure(format, surface.getSurface(), null, 0); in checkVideoFile()
DExtractDecodeEditEncodeMuxTest.java603 decoder.configure(inputFormat, surface, null, 0); in createVideoDecoder()
624 encoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); in createVideoEncoder()
639 decoder.configure(inputFormat, null, null, 0); in createAudioDecoder()
653 encoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); in createAudioEncoder()
DEncodeVirtualDisplayTest.java231 encoder.configure(encoderFormat, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); in encodeVirtualDisplayTest()
243 decoder.configure(decoderFormat, outputSurface.getSurface(), null, 0); in encodeVirtualDisplayTest()
DEncodeDecodeTest.java442 encoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); in encodeDecodeVideoFromBuffer()
515 decoder.configure(format, outputSurface.getSurface(), null, 0); in encodeDecodeVideoFromSurfaceToSurface()
525 encoder.configure(format, MediaCodec.CONFIGURE_FLAG_ENCODE); in encodeDecodeVideoFromSurfaceToSurface()
750 decoder.configure(format, toSurface ? outputSurface.getSurface() : null, in doEncodeDecodeVideoFromBuffer()
DMediaCodecCapabilitiesTest.java587 codec.configure(format, null /* surface */, null /* crypto */, in testAllAdvertisedVideoEncoderBitrateModes()
641 codec.configure(format, null /* surface */, null /* crypto */, in testAllNonTunneledVideoCodecsSupportFlexibleYUV()
705 codec.configure(format, null, null, flag); in getActualMax()
DDecoderTest.java131 mMediaCodec.configure(mFormat, null, null, 0); in testBug11696552()
292 dec.configure(format, s, null, 0); in testBFrames()
485 dec.configure(format, surface, null, 0); in testColorAspects()
896 decoder.configure(format, surface, null/*crypto*/, 0/*flags*/); in testHdrStaticMetadata()
1617 codec.configure(configFormat, null /* surface */, null /* crypto */, 0 /* flags */);
1625 codec.configure(configFormat, null /* surface */, null /* crypto */, 0 /* flags */);
1702 codec.configure(configFormat, null /* surface */, null /* crypto */,
2576 codec.configure(format, surface, null /* crypto */, 0 /* flags */);
2583 codec.configure(format, surface, null /* crypto */, 0 /* flags */);
2691 codec.configure(format, surface /* surface */, null /* crypto */,
[all …]
DMediaCodecClearKeyPlayer.java409 codec.configure( in addTrack()
415 codec.configure( in addTrack()
DResourceManagerTestActivityBase.java168 codec.configure(format, null, null, 0); in allocateCodecs()
DEncodeVirtualDisplayWithCompositionTest.java272 mDecoder.configure(decoderFormat, mDecodingSurface.getSurface(), null, 0); in doTestRenderingOutput()
662 mEncoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); in doEncoding()
1572 decoder.configure(decoderFormat, decodingSurface.getSurface(), null, 0); in isConcurrentEncodingDecodingSupported()
1582 encoder.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); in isConcurrentEncodingDecodingSupported()
/cts/tests/sensor/src/android/hardware/cts/
DSensorDirectReportTest.java502 mChannel.configure(s, s.getHighestDirectReportRateLevel()); in testCloseWithoutConfigStop()
625 int token = mChannel.configure(s, rateLevel); in runSensorDirectReportTest()
631 mChannel.configure(s, SensorDirectChannel.RATE_STOP); in runSensorDirectReportTest()
664 int token1 = mChannel.configure(s1, rateLevel1); in runSingleChannelRateIndependencyTest()
665 int token2 = mChannel.configure(s2, rateLevel2); in runSingleChannelRateIndependencyTest()
677 mChannel.configure(s1, SensorDirectChannel.RATE_STOP); in runSingleChannelRateIndependencyTest()
678 mChannel.configure(s2, SensorDirectChannel.RATE_STOP); in runSingleChannelRateIndependencyTest()
717 int token1 = mChannel.configure(s, rateLevel1); in runMultiChannelRateIndependencyTest()
718 int token2 = mChannelSecondary.configure(s, rateLevel2); in runMultiChannelRateIndependencyTest()
725 mChannel.configure(s, SensorDirectChannel.RATE_STOP); in runMultiChannelRateIndependencyTest()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
DHifiUltrasoundTestActivity.java239 seriesFormat.configure(getApplicationContext(), in plotResponse()
256 noiseSeriesFormat.configure(getApplicationContext(), in plotResponse()
272 seriesFormat.configure(getApplicationContext(), in plotResponse()
282 passSeriesFormat.configure(getApplicationContext(), in plotResponse()
DHifiUltrasoundSpeakerTestActivity.java280 seriesFormat.configure(getApplicationContext(), in plotResponse()
297 noiseSeriesFormat.configure(getApplicationContext(), in plotResponse()
313 seriesFormat.configure(getApplicationContext(), in plotResponse()
323 passSeriesFormat.configure(getApplicationContext(), in plotResponse()
/cts/tests/tests/widget/src/android/widget/cts/
DPopupMenuTest.java408 mActivityRule.runOnUiThread(mBuilder::configure); in testForceShowIcon()
510 public void configure() { in configure() method in PopupMenuTest.Builder
550 configure(); in show()
DListPopupWindowTest.java800 mPopupWindowBuilder::configure); in testCreateOnDragListener()
975 private void configure() { in configure() method in ListPopupWindowTest.Builder
1077 configure(); in show()
/cts/tests/tests/appwidget/src/android/appwidget/cts/provider/
DCollectionAppWidgetProvider.java61 public static void configure(CountDownLatch countDownLatch, in configure() method in CollectionAppWidgetProvider

12