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

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/components/translate/common/
translate_metrics_unittest.cc 159 MetricsRecorder recorder(
162 recorder.CheckLanguage(translate::UMA_CONTENT_LANGUAGE, 0, 0, 0);
164 recorder.CheckLanguage(translate::UMA_CONTENT_LANGUAGE, 1, 0, 0);
166 recorder.CheckLanguage(translate::UMA_CONTENT_LANGUAGE, 1, 0, 1);
168 recorder.CheckLanguage(translate::UMA_CONTENT_LANGUAGE, 1, 1, 1);
172 MetricsRecorder recorder(translate::GetMetricsName(translate::UMA_HTML_LANG));
174 recorder.CheckLanguage(translate::UMA_HTML_LANG, 0, 0, 0);
176 recorder.CheckLanguage(translate::UMA_HTML_LANG, 1, 0, 0);
178 recorder.CheckLanguage(translate::UMA_HTML_LANG, 1, 0, 1);
180 recorder.CheckLanguage(translate::UMA_HTML_LANG, 1, 1, 1)
    [all...]
  /external/chromium_org/sync/engine/
traffic_recorder_unittest.cc 21 TrafficRecorder recorder(kMaxMessages, kMaxMessageSize);
25 recorder.RecordClientToServerResponse(response);
27 EXPECT_EQ(recorder.records().size(), kMaxMessages);
38 TrafficRecorder recorder(kMaxMessages, kMaxMessageSize);
39 recorder.RecordClientToServerResponse(response);
41 TrafficRecorder::TrafficRecord record = recorder.records().front();
75 TestTrafficRecorder recorder(kMaxMessages, kMaxMessageSize);
76 recorder.set_time(3);
77 recorder.RecordClientToServerResponse(response);
80 TrafficRecorder::TrafficRecord record = recorder.records().front()
    [all...]
  /external/chromium_org/chrome/browser/translate/
translate_browser_metrics_unittest.cc 110 MetricsRecorder recorder(TranslateBrowserMetrics::GetMetricsName(
113 recorder.CheckInitiationStatus(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
116 recorder.CheckInitiationStatus(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
119 recorder.CheckInitiationStatus(1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0);
122 recorder.CheckInitiationStatus(1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0);
125 recorder.CheckInitiationStatus(1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0);
128 recorder.CheckInitiationStatus(1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0);
131 recorder.CheckInitiationStatus(1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0);
134 recorder.CheckInitiationStatus(1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0);
137 recorder.CheckInitiationStatus(1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0)
    [all...]
  /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/av/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...]
  /external/chromium_org/third_party/ocmock/OCMock/
OCMockObject.m 114 OCMockRecorder *recorder = [self getNewRecorder];
115 [recorders addObject:recorder];
116 return recorder;
122 OCMockRecorder *recorder = [self stub];
123 [expectations addObject:recorder];
124 return recorder;
130 OCMockRecorder *recorder = [self stub];
131 [rejections addObject:recorder];
132 return recorder;
166 OCMockRecorder *recorder = nil
    [all...]
  /frameworks/av/media/libmediaplayerservice/
MediaRecorderClient.cpp 64 ALOGE("recorder is not initialized");
78 ALOGE("recorder is not initialized");
89 ALOGE("recorder is not initialized");
103 ALOGE("recorder is not initialized");
117 ALOGE("recorder is not initialized");
128 ALOGE("recorder is not initialized");
139 ALOGE("recorder is not initialized");
150 ALOGE("recorder is not initialized");
161 ALOGE("recorder is not initialized");
172 ALOGE("recorder is not initialized")
    [all...]
  /frameworks/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/chromium_org/third_party/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 */
  /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 */
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediarecorder_unittest.cc 176 // Create media recorder.
177 talk_base::scoped_ptr<MediaRecorder> recorder(new MediaRecorder);
179 EXPECT_FALSE(recorder->EnableChannel(channel, true, true, SINK_PRE_CRYPTO));
185 // Add the channel to the recorder.
193 EXPECT_TRUE(recorder->AddChannel(static_cast<VideoChannel*>(channel),
196 EXPECT_TRUE(recorder->AddChannel(static_cast<VoiceChannel*>(channel),
201 EXPECT_TRUE(recorder->EnableChannel(channel, true, false, SINK_PRE_CRYPTO));
211 EXPECT_TRUE(recorder->EnableChannel(channel, false, true, SINK_PRE_CRYPTO));
219 EXPECT_TRUE(recorder->EnableChannel(channel, true, true, SINK_PRE_CRYPTO));
228 EXPECT_TRUE(recorder->EnableChannel(channel, true, true, SINK_PRE_CRYPTO))
    [all...]
  /packages/apps/LegacyCamera/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...]
  /external/guava/guava-tests/test/com/google/common/eventbus/
ReentrantEventsTest.java 72 EventRecorder recorder = new EventRecorder(); local
73 bus.register(recorder);
78 Lists.<Object>newArrayList(FIRST, SECOND), recorder.eventsReceived);
  /packages/apps/Browser/
Android.mk 22 # We need the sound recorder for the Media Capture API.
  /frameworks/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...]
  /frameworks/av/media/libmedia/
mediarecorder.cpp 35 ALOGE("media recorder is not initialized yet");
56 ALOGE("media recorder is not initialized yet");
81 ALOGE("media recorder is not initialized yet");
111 ALOGE("media recorder is not initialized yet");
119 ALOGV("Call init() since the media recorder is not initialized yet");
146 ALOGE("media recorder is not initialized yet");
150 ALOGV("Call init() since the media recorder is not initialized yet");
179 ALOGE("media recorder is not initialized yet");
205 ALOGE("media recorder is not initialized yet");
235 ALOGE("media recorder is not initialized yet")
    [all...]
  /external/chromium_org/chrome/browser/diagnostics/
sqlite_diagnostics.cc 98 scoped_refptr<ErrorRecorder> recorder(new ErrorRecorder);
105 recorder->AsWeakPtr(),
112 if (recorder->has_error()) {
114 recorder->FormatError());
119 if (recorder->has_error()) {
121 recorder->FormatError());
142 if (recorder->has_error()) {
144 recorder->FormatError());
  /packages/apps/SpeechRecorder/res/values/
strings.xml 19 <string name="app_name">Speech Recorder</string>
21 <string name="speechrecorderlabel">Speech Recorder</string>
  /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)
  /prebuilts/devtools/tools/lib/
monkeyrunner.jar 
  /packages/apps/Camera/src/com/android/camera/
EffectsRecorder.java 51 // The index of the current effects recorder.
294 Log.v(TAG, "Current effects recorder index is " + sEffectsRecorderIndex);
323 throw new RuntimeException("setCamera called on an already released recorder!");
336 throw new RuntimeException("setProfile called on an already released recorder!");
348 throw new RuntimeException("setOutputFile called on an already released recorder!");
362 throw new RuntimeException("setOutputFile called on an already released recorder!");
383 "setMaxFileSize called on an already released recorder!");
400 "setMaxDuration called on an already released recorder!");
414 "setCaptureRate called on an already released recorder!");
433 "setPreviewSurfaceTexture called on an already released recorder!");
515 Object recorder = getGraphFilter(mRunner, "recorder"); local
907 Object recorder = getGraphFilter(mRunner, "recorder"); local
959 Object recorder = getGraphFilter(mRunner, "recorder"); local
    [all...]
  /external/chromium_org/third_party/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...]
  /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...]

Completed in 2618 milliseconds

1 2 3 4 5 6 7 8 91011