Home
last modified time | relevance | path

Searched refs:streamContext (Results 1 – 4 of 4) sorted by relevance

/external/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
DTestAudioActivity.java107 for (StreamContext streamContext : mStreamContexts) {
108 …AudioStreamBase.StreamStatus status = streamContext.tester.getCurrentAudioStream().getStreamStatus…
110 streamContext.tester.getCurrentAudioStream().getLatencyStatistics();
111 if (streamContext.configurationView != null) {
113 … int framesPerBurst = streamContext.tester.getCurrentAudioStream().getFramesPerBurst();
118 streamContext.configurationView.setStatusText(msg);
168 for (StreamContext streamContext : mStreamContexts) { in hideSettingsViews()
169 if (streamContext.configurationView != null) { in hideSettingsViews()
170 streamContext.configurationView.hideSettingsView(); in hideSettingsViews()
219 for (StreamContext streamContext : mStreamContexts) { in setConfigViewsEnabled()
[all …]
DAnalyzerActivity.java153 StreamContext streamContext = getFirstInputStreamContext(); in resetConfiguration() local
154 if (streamContext != null) { in resetConfiguration()
155 if (streamContext.configurationView != null) { in resetConfiguration()
156streamContext.configurationView.setFormat(StreamConfiguration.AUDIO_FORMAT_PCM_FLOAT); in resetConfiguration()
157 streamContext.configurationView.setFormatConversionAllowed(true); in resetConfiguration()
160 streamContext = getFirstOutputStreamContext(); in resetConfiguration()
161 if (streamContext != null) { in resetConfiguration()
162 if (streamContext.configurationView != null) { in resetConfiguration()
163streamContext.configurationView.setFormat(StreamConfiguration.AUDIO_FORMAT_PCM_FLOAT); in resetConfiguration()
164 streamContext.configurationView.setFormatConversionAllowed(true); in resetConfiguration()
DGlitchActivity.java259 StreamContext streamContext = getFirstInputStreamContext(); in onCreate() local
260 if (streamContext != null) { in onCreate()
261 if (streamContext.configurationView != null) { in onCreate()
262 streamContext.configurationView.hideSampleRateMenu(); in onCreate()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/filter/
DProblemHandlerLocation1440Test.java70 private void addParent(final JsonStreamContext streamContext, final List<String> pathList) { in addParent() argument
71 if (streamContext != null && streamContext.getCurrentName() != null) { in addParent()
72 pathList.add(streamContext.getCurrentName()); in addParent()
73 addParent(streamContext.getParent(), pathList); in addParent()