HomeSort by relevance Sort by last modified time
    Searched refs:recording (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/jsilver/src/com/google/streamhtmlparser/util/
CharacterRecorder.java 21 * whether recording is currently enabled.
24 * supplied character to the recording buffer but only if
25 * recording is in progress. This is useful in our
27 * as the caller logic to enable/disable recording is decoupled from the logic
28 * of recording.
38 * <li>There is a size limit to the recording buffer as set in
41 * recording is currently enabled.
54 * This is where characters provided for recording are stored. Given
60 /** Holds whether we are currently recording characters or not. */
61 private boolean recording; field in class:CharacterRecorder
    [all...]
  /external/chromium_org/third_party/skia/tests/
RecordingTest.cpp 15 EXPERIMENTAL::SkRecording recording(1920, 1080);
18 recording.canvas()->clipRect(SkRect::MakeWH(320, 240));
20 SkAutoTDelete<const EXPERIMENTAL::SkPlayback> playback(recording.releasePlayback());
25 // Here's another recording we never call releasePlayback().
  /external/skia/tests/
RecordingTest.cpp 15 EXPERIMENTAL::SkRecording recording(1920, 1080);
18 recording.canvas()->clipRect(SkRect::MakeWH(320, 240));
20 SkAutoTDelete<const EXPERIMENTAL::SkPlayback> playback(recording.releasePlayback());
25 // Here's another recording we never call releasePlayback().
  /cts/suite/audio_quality/test/
AudioHardwareTest.cpp 34 android::sp<AudioHardware> recording = AudioHardware::createAudioHw(true, false); local
35 ASSERT_TRUE(recording.get() != NULL);
43 android::sp<AudioHardware> recording = AudioHardware::createAudioHw(false, false, testCase); local
44 ASSERT_TRUE(recording.get() != NULL);
  /external/chromium_org/third_party/webrtc/tools/loopback_test/
stat_tracker.js 30 var recording = true;
55 recording = false;
64 if (!recording) return;
  /cts/suite/audio_quality/test_description/processing/
playback_sample.py 20 # Input: host recording (mono),
61 def calc_freq(recording, samplingRate):
62 #This would calculate the frequency of recording, but is skipped in this sample test for brevity
  /external/chromium_org/native_client_sdk/src/libraries/xray/
xray.c 82 bool recording; member in struct:XRayTraceCapture
223 assert(!capture->recording);
230 assert(!capture->recording);
240 assert(!capture->recording);
334 if (capture && capture->recording) {
360 if (capture && capture->recording) {
422 if (capture->recording) {
454 if (capture->recording) {
491 assert(!capture->recording);
509 assert(!capture->recording);
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/
page_set_archive_info_unittest.py 87 new_temp_recording = os.path.join(self.tmp_dir, 'recording.wpr')
102 new_temp_recording = os.path.join(self.tmp_dir, 'recording.wpr')
162 # Add a recording for all the pages.
163 new_temp_recording = os.path.join(self.tmp_dir, 'recording.wpr')
174 # Expected name for the recording (decided by PageSetArchiveInfo).
  /external/skia/tools/
bench_playback.cpp 53 EXPERIMENTAL::SkRecording recording(src.width(), src.height());
54 src.draw(recording.canvas());
55 return recording.releasePlayback();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
heapProfiler.css 140 #heap-recording-view .heap-snapshot-view {
152 #heap-recording-overview-grid .resources-dividers-label-bar {
156 #heap-recording-overview-container {
160 .heap-recording-overview-canvas {
  /external/chromium_org/components/gcm_driver/
fake_gcm_driver.cc 63 bool recording) {
fake_gcm_driver.h 38 bool recording) OVERRIDE;
gcm_driver_android.h 61 bool recording) OVERRIDE;
fake_gcm_client.h 56 virtual void SetRecording(bool recording) OVERRIDE;
gcm_driver.h 117 // Enables/disables GCM activity recording, and then returns the stats.
119 bool recording) = 0;
gcm_driver_desktop.cc 77 void SetGCMRecording(bool recording);
295 void GCMDriverDesktop::IOWorker::SetGCMRecording(bool recording) {
300 gcm_client_->SetRecording(recording);
592 bool recording) {
600 recording));
gcm_client.h 277 // Enables or disables internal activity recording.
278 virtual void SetRecording(bool recording) = 0;
gcm_driver_android.cc 138 bool recording) {
gcm_driver_desktop.h 79 bool recording) OVERRIDE;
  /external/chromium_org/chrome/browser/media/
chrome_webrtc_audio_quality_browsertest.cc 66 // 4. In pavucontrol, go to the recording tab.
71 // Verify the recording with aplay (should have recorded what you played
89 // a recording of the video (note; if you play back on the target machine
94 // 2. In the recording tab, right-click in an empty space in the pane with the
99 // checkbox. Ensure the mix device is the default recording device.
104 // the recording.
146 // Starts the recording program for the specified duration. Returns true
151 << "Tried to record, but is already recording.";
217 // Joins the recording program. Returns true on success.
432 base::FilePath recording = CreateTemporaryWaveFile() local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
VideoUI.java 52 // recording is stopped in capture intent.
190 public void showRecordingUI(boolean recording) {
191 mRecordingStarted = recording;
192 if (recording) {
257 * Shows or hides video recording hints.
259 * @param show shows video recording hints when true, hides it otherwise.
  /external/lldb/test/
lldbtest.py 201 class recording(StringIO.StringIO): class in inherits:StringIO.StringIO
203 A nice little context manager for recording the debugger interactions into
267 with recording(test, traceAlways) as sbuf:
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
gcm_internals_ui.cc 128 // Enables/disables GCM activity recording through gcm profile service.
243 bool recording = false; local
244 if (!args->GetBoolean(0, &recording)) {
261 // Get fresh stats after changing recording setting.
266 recording); local
  /external/chromium_org/cc/resources/
picture.cc 105 // Instead of recording a trace event for object creation here, we wait for
217 scoped_ptr<EXPERIMENTAL::SkRecording> recording; local
228 // Already setup for normal recording.
242 recording.reset(new EXPERIMENTAL::SkRecording(layer_rect_.width(),
244 canvas = skia::SharePtr(recording->canvas());
266 if (recording) {
270 playback_.reset(recording->releasePlayback());
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
fakeaudiocapturemodule.cc 199 // No recording device, just dropping audio. Return success.
293 bool FakeAudioCaptureModule::Recording() const {
458 // No recording device, just dropping audio. Stereo can be dropped just
465 // No recording device, just dropping audio. Stereo can be dropped just
477 // Keep thing simple. No stereo recording.
506 // Stereo recording not supported. However, WebRTC ADM returns kChannelBoth
681 bool recording; local
685 recording = recording_;
692 if (recording) {

Completed in 1280 milliseconds

1 2 3