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

1 2

  /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/WebKit/Tools/TestResultServer/
appengine_config.py 31 from google.appengine.ext.appstats import recording namespace
32 app = recording.appstats_wsgi_middleware(app)
  /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/native_client_sdk/src/libraries/xray/
xray.c 82 bool recording; member in struct:XRayTraceCapture
217 assert(!capture->recording);
224 assert(!capture->recording);
234 assert(!capture->recording);
328 if (capture && capture->recording) {
354 if (capture && capture->recording) {
416 if (capture->recording) {
448 if (capture->recording) {
485 assert(!capture->recording);
503 assert(!capture->recording);
    [all...]
  /external/chromium_org/chrome/browser/media/
chrome_webrtc_audio_quality_browsertest.cc 68 // 4. In pavucontrol, go to the recording tab.
73 // Verify the recording with aplay (should have recorded what you played
81 // 2. In the recording tab, right-click in an empty space in the pane with the
86 // checkbox. Ensure the mix device is the default recording device.
91 // the recording.
166 // Starts the recording program for the specified duration. Returns true
171 << "Tried to record, but is already recording.";
222 // Joins the recording program. Returns true on success.
422 base::FilePath recording = CreateTemporaryWaveFile(); local
428 ASSERT_TRUE(recorder.StartRecording(kRecordingTimeSeconds, recording, true))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
heapProfiler.css 269 #heap-recording-view .heap-snapshot-view {
281 #heap-recording-overview-grid .resources-dividers-label-bar {
285 #heap-recording-overview-container {
289 .heap-recording-overview-canvas {
  /external/chromium_org/media/audio/win/
audio_low_latency_input_win.cc 333 bool recording = true; local
338 while (recording && !error) {
349 recording = false;
441 if (recording && error) {
  /packages/apps/Camera2/src/com/android/camera/
VideoUI.java 68 // recording is stopped in capture intent.
456 // Do not allow navigation to filmstrip during video recording
580 public void showRecordingUI(boolean recording) {
581 mRecordingStarted = recording;
582 mMenuButton.setVisibility(recording ? View.GONE : View.VISIBLE);
583 mOnScreenIndicators.setVisibility(recording ? View.GONE : View.VISIBLE);
584 if (recording) {
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
fakeaudiocapturemodule.cc 206 // No recording device, just dropping audio. Return success.
300 bool FakeAudioCaptureModule::Recording() const {
477 // No recording device, just dropping audio. Stereo can be dropped just
484 // No recording device, just dropping audio. Stereo can be dropped just
496 // Keep thing simple. No stereo recording.
525 // Stereo recording not supported. However, WebRTC ADM returns kChannelBoth
700 bool recording; local
704 recording = recording_;
711 if (recording) {
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
metrics.js 79 * Complete the time interval recording.
  /external/chromium_org/content/browser/resources/media/
webrtc_internals.js 248 * Delegates to dumpCreator to update the recording status.
250 * RTP recording.
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
hangoutpubsubclient.h 42 // presenter state, recording state, mute state, and remote mute.
120 bool recording, std::string* task_id_out = NULL);
hangoutpubsubclient.cc 38 // presenter state, recording state, mute state, and remote mute.
466 bool recording, std::string* task_id_out) {
467 recording_state_client_->Publish(nick_, recording, task_id_out);
  /device/asus/flo/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_dual_test.c 65 * a. start recording
66 * b. stop recording
74 uint16_t recording; member in struct:test_case_params
841 for (m = 0; m < params.recording; m++) {
    [all...]
  /external/chromium_org/tools/metrics/actions/
extract_actions.py 325 print >>sys.stderr, 'WARNING: This line is marked for recording ' + \
  /hardware/qcom/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_dual_test.c 65 * a. start recording
66 * b. stop recording
74 uint16_t recording; member in struct:test_case_params
841 for (m = 0; m < params.recording; m++) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContext.cpp 544 RecordingState recording = m_recordingStateStack.last(); local
545 ASSERT(recording.m_displayList->picture()->getRecordingCanvas());
546 recording.m_displayList->picture()->endRecording();
549 m_canvas = recording.m_savedCanvas;
551 return recording.m_displayList.release();
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java 767 private void testJpegThumbnailSizeByCamera(boolean recording,
780 if (!recording) mCamera.startPreview();
790 if (!recording)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
ResearchLogger.java 582 new LogStatement("UserFeedback", false, false, "contents", "accountName", "recording");
585 String recording = ""; local
587 // Try to read recording from recently written json file
596 recording = Charset.defaultCharset().decode(buffer).toString();
598 Log.e(TAG, "Could not find recording file", e);
600 Log.e(TAG, "Error reading recording file", e);
606 Log.e(TAG, "Error closing recording file", e);
615 feedbackContents, accountName, recording);
    [all...]
  /packages/apps/Camera/src/com/android/camera/
VideoModule.java 115 * An unpublished intent flag requesting to start recording straight away
116 * and return as soon as recording is stopped.
147 // recording is stopped in capture intent.
178 // (or is recording into.)
650 // for preview during recording. When the recording is done, we switch
677 // mode and recording is stopped. It'll be re-enabled when
734 // Read time lapse recording interval.
    [all...]
  /external/chromium_org/v8/src/
regexp.js 378 // Property of the builtins object for recording the result of the last
  /external/v8/src/
regexp.js 379 // Property of the builtins object for recording the result of the last
  /external/blktrace/btreplay/doc/
btreplay.tex 175 on the recording system, we wrap CPU IDs. This \emph{may} result in an
215 machine must be the same as on the recording machine.
  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
SoundRecorder.java 54 * Calculates remaining recording time based on available disk space and
55 * optionally a maximum recording file size.
71 // State for tracking file size of recording.
116 * Returns how long (in seconds) we can continue recording.
146 // If we have a recording file set, we calculate a second estimate
176 * Is there any point of trying to start recording?
215 // not a dialog. This happens when a recording
353 * Make sure we're not recording music playing in the background, ask
672 * Called when we're in recording state. Find out how much longer we can
673 * go on recording. If it's under 5 minutes, we display a count-down in
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
VideoCamera.java 132 * An unpublished intent flag requesting to start recording straight away
133 * and return as soon as recording is stopped.
159 // recording is stopped in capture intent.
204 // (or is recording into.)
255 // The orientation compenstaion when we start recording.
442 // want to allow recording before that happens. The shutter button
564 // Do not rotate the icons during recording because the video
565 // orientation is fixed after recording.
670 // mode and recording is stopped. It'll be re-enabled when
771 // Read time lapse recording interval
    [all...]

Completed in 642 milliseconds

1 2