HomeSort by relevance Sort by last modified time
    Searched full:recorder (Results 1 - 25 of 138) sorted by null

1 2 3 4 5 6

  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
TestSuiteBuilderTest.java 53 SuiteExecutionRecorder recorder = runSuite(testSuiteBuilder); local
55 assertTrue(recorder.passed("SimpleTest.testSimpleOne"));
56 assertTrue(recorder.passed("SimpleTest.testSimpleTwo"));
57 assertTrue(recorder.passed("AnotherSimpleTest.testAnotherOne"));
66 SuiteExecutionRecorder recorder = runSuite(testSuiteBuilder); local
68 assertTrue(recorder.passed("SimpleTest.testSimpleTwo"));
74 SuiteExecutionRecorder recorder = runSuite(testSuiteBuilder); local
76 assertTrue(recorder.failed("FailingTest.testFailOne"));
77 assertTrue(recorder.failed("FailingTest.testFailTwo"));
83 SuiteExecutionRecorder recorder = runSuite(testSuiteBuilder) local
92 SuiteExecutionRecorder recorder = runSuite(testSuiteBuilder); local
104 SuiteExecutionRecorder recorder = runSuite(testSuiteBuilder); local
123 SuiteExecutionRecorder recorder = runSuite(testSuiteBuilder); local
    [all...]
UnitTestSuiteBuilderTest.java 47 SuiteExecutionRecorder recorder = runSuite(unitTestSuiteBuilder); local
49 assertFalse(recorder.saw("InstrumentationTest.testInstrumentation"));
50 assertTrue(recorder.testsSeen.isEmpty());
60 SuiteExecutionRecorder recorder = new SuiteExecutionRecorder(); local
62 result.addListener(recorder);
64 return recorder;
InstrumentationTestSuiteBuilderTest.java 46 SuiteExecutionRecorder recorder = runSuite(instrumentationTestSuiteBuilder); local
48 assertEquals(1, recorder.testsSeen.size());
49 assertTrue(recorder.saw("InstrumentationTest.testInstrumentation"));
67 SuiteExecutionRecorder recorder = new SuiteExecutionRecorder(); local
69 result.addListener(recorder);
71 return recorder;
  /frameworks/base/include/camera/
ICameraRecordingProxy.h 34 * needs to own the camera to do things like zoom, the media recorder cannot
36 * proxy of ICamera, which allows the media recorder to start/stop the recording
38 * that allows the recorder to receive video frames during recording.
49 * ICamera and ICameraRecordingProxy to the media recorder by
50 * MediaRecorder::setCamera(). The recorder uses ICamera to setup the camera in
51 * MediaRecorder::start(). After setup, the recorder disconnects from camera
52 * service. The recorder calls ICameraRecordingProxy::startRecording() and
55 * things like zoom. The media recorder receives the video frames from the
57 * The recorder calls ICameraRecordingProxy::stopRecording() to stop the
65 * (2) The recorder: ICamera.unlock() and ICamera.disconnect()
    [all...]
  /sdk/monkeyrunner/scripts/
monkey_recorder.py 17 from com.android.monkeyrunner.recorder import MonkeyRecorder as recorder namespace
20 recorder.start(device)
  /frameworks/base/media/libmediaplayerservice/
MediaRecorderClient.cpp 67 LOGE("recorder is not initialized");
81 LOGE("recorder is not initialized");
92 LOGE("recorder is not initialized");
106 LOGE("recorder is not initialized");
120 LOGE("recorder is not initialized");
131 LOGE("recorder is not initialized");
142 LOGE("recorder is not initialized");
153 LOGE("recorder is not initialized");
164 LOGE("recorder is not initialized");
175 LOGE("recorder is not initialized")
    [all...]
  /system/media/wilhelm/src/objects/
CAudioRecorder.c 22 /** \brief Hook called by Object::Realize when an audio recorder is realized */
37 /** \brief Hook called by Object::Resume when an audio recorder is resumed */
45 /** \brief Hook called by Object::Destroy when an audio recorder is destroyed */
58 /** \brief Hook called by Object::Destroy before an audio recorder is about to be destroyed */
  /external/freetype/src/pshinter/
pshrec.h 5 /* Postscript (Type1/Type2) hints recorder (specification). */
46 /***** GLYPH HINTS RECORDER INTERNALS *****/
143 /* initialize hints recorder */
148 /* finalize hints recorder */
152 /* initialize Type1 hints recorder interface */
156 /* initialize Type2 hints recorder interface */
  /packages/apps/Camera/src/com/android/camera/
EffectsRecorder.java 151 throw new RuntimeException("setCamera called on an already released recorder!");
164 throw new RuntimeException("setProfile called on an already released recorder!");
176 throw new RuntimeException("setOutputFile called on an already released recorder!");
190 throw new RuntimeException("setOutputFile called on an already released recorder!");
210 throw new RuntimeException("setMaxFileSize called on an already released recorder!");
226 throw new RuntimeException("setMaxDuration called on an already released recorder!");
239 throw new RuntimeException("setCaptureRate called on an already released recorder!");
256 throw new RuntimeException("setPreviewDisplay called on an already released recorder!");
284 throw new RuntimeException("setEffect called on an already released recorder!");
338 Filter recorder = mRunner.getGraph().getFilter("recorder") local
662 Filter recorder = mRunner.getGraph().getFilter("recorder"); local
714 Filter recorder = mRunner.getGraph().getFilter("recorder"); local
    [all...]
  /packages/apps/Browser/
Android.mk 22 # We need the sound recorder for the Media Capture API.
  /system/media/wilhelm/tests/examples/
slesTestRecBuffQueue.cpp 152 /* Objects this application uses: one audio recorder */
153 SLObjectItf recorder; local
155 /* Interfaces for the audio recorder */
184 /* Configuration of the recorder */
215 /* Create the audio recorder */
216 result = (*EngineItf)->CreateAudioRecorder(EngineItf, &recorder, &recSource, &recDest,
219 fprintf(stdout, "Recorder created\n");
222 result = (*recorder)->GetInterface(recorder, SL_IID_ANDROIDCONFIGURATION, (void*)&configItf);
225 /* Use the configuration interface to configure the recorder before it's realized *
    [all...]
  /packages/apps/SpeechRecorder/res/values/
strings.xml 19 <string name="app_name">Speech Recorder</string>
21 <string name="speechrecorderlabel">Speech Recorder</string>
  /frameworks/base/media/libmedia/
mediarecorder.cpp 36 LOGE("media recorder is not initialized yet");
57 LOGE("media recorder is not initialized yet");
82 LOGE("media recorder is not initialized yet");
112 LOGE("media recorder is not initialized yet");
120 LOGV("Call init() since the media recorder is not initialized yet");
147 LOGE("media recorder is not initialized yet");
151 LOGV("Call init() since the media recorder is not initialized yet");
180 LOGE("media recorder is not initialized yet");
206 LOGE("media recorder is not initialized yet");
236 LOGE("media recorder is not initialized yet")
    [all...]
  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
VUMeter.java 40 Recorder mRecorder;
66 public void setRecorder(Recorder recorder) {
67 mRecorder = recorder;
103 if (mRecorder != null && mRecorder.state() == Recorder.RECORDING_STATE)
  /external/freetype/include/freetype/internal/
pshints.h 71 /***** PUBLIC TYPE 1 HINTS RECORDER *****/
90 * This rewinds the recorder and prepare it for new input.
131 * A handle to the Type 1 hints recorder.
154 * A handle to the Type 1 hints recorder.
195 * A handle to the Type 1 hints recorder.
229 * A handle to the Type 1 hints recorder.
252 * A handle to the Type 1 hints recorder.
282 * A handle to the Type 1 hints recorder.
321 * A handle to the T1 Hints recorder.
358 /***** PUBLIC TYPE 2 HINTS RECORDER *****/
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaRecorderStopStateUnitTest.java 56 public void invokeMethodUnderTest(MediaRecorder recorder) {
57 // Wait for some time before stopping the media recorder.
66 recorder.stop();
MediaRecorderPrepareStateUnitTest.java 54 public void invokeMethodUnderTest(MediaRecorder recorder) {
56 recorder.prepare();
MediaRecorderResetStateUnitTest.java 53 public void invokeMethodUnderTest(MediaRecorder recorder) {
54 recorder.reset();
MediaRecorderSetAudioEncoderStateUnitTest.java 53 public void invokeMethodUnderTest(MediaRecorder recorder) {
54 recorder.setAudioEncoder(MediaRecorderStateUnitTestTemplate.AUDIO_ENCODER);
MediaRecorderSetAudioSourceStateUnitTest.java 53 public void invokeMethodUnderTest(MediaRecorder recorder) {
54 recorder.setAudioSource(MediaRecorderStateUnitTestTemplate.AUDIO_SOURCE);
MediaRecorderSetOutputFileStateUnitTest.java 50 public void invokeMethodUnderTest(MediaRecorder recorder) {
51 recorder.setOutputFile(MediaRecorderStateUnitTestTemplate.RECORD_OUTPUT_PATH);
MediaRecorderSetOutputFormatStateUnitTest.java 53 public void invokeMethodUnderTest(MediaRecorder recorder) {
54 recorder.setOutputFormat(MediaRecorderStateUnitTestTemplate.OUTPUT_FORMAT);
MediaRecorderStartStateUnitTest.java 53 public void invokeMethodUnderTest(MediaRecorder recorder) {
54 recorder.start();
  /external/chromium/net/base/
run_all_unittests.cc 17 base::StatisticsRecorder recorder; local
  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/
ActionListModel.java 16 package com.android.monkeyrunner.recorder;
20 import com.android.monkeyrunner.recorder.actions.Action;

Completed in 373 milliseconds

1 2 3 4 5 6