/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...] |
/cts/suite/audio_quality/test_description/processing/ |
recording_thd.py | 24 # Input: host recording (mono), device recording (mono), 28 # host recording will be longer than device recording 30 # 1. match the start of device recording with host recording 31 # As the host recording starts eariler and longer than device recording, 33 # 2. calculate THD of host recording and client recording [all...] |
/external/chromium/base/ |
event_recorder.h | 23 // A class for recording and playing back keyboard and mouse input events. 27 // recording and playing, you should move the relevant windows 32 // be playing back events while already recording events. 34 // You might be recording globally, while recording or playing back 46 // Starts recording events. 51 // Stops recording. 54 // Is the EventRecorder currently recording. 76 // If the file already exists, it will be deleted before recording
|
/external/chromium_org/base/ |
event_recorder.h | 22 // A class for recording and playing back keyboard and mouse input events. 26 // recording and playing, you should move the relevant windows 31 // be playing back events while already recording events. 33 // You might be recording globally, while recording or playing back 45 // Starts recording events. 50 // Stops recording. 53 // Is the EventRecorder currently recording. 75 // If the file already exists, it will be deleted before recording
|
/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);
|
/development/samples/browseable/MediaRecorder/ |
_index.jd | 7 recording.</p>
|
/frameworks/av/include/camera/ |
ICameraRecordingProxy.h | 31 * allow applications using the camera during recording. 35 * access the camera directly during recording. So ICameraRecordingProxy is a 36 * proxy of ICamera, which allows the media recorder to start/stop the recording 37 * and release recording frames. ICameraRecordingProxyListener is an interface 38 * that allows the recorder to receive video frames during recording. 54 * camera service and starts the recording. The app owns the camera and can do 58 * recording. 63 * 3. Start recording 69 * 4. During recording 72 * 5. Stop recording [all...] |
/external/chromium_org/content/browser/resources/media/ |
dump_creator.js | 7 * Provides the UI to start and stop RTP recording, forwards the start/stop 32 RECORDING: 'recording...', 85 * Handles the event of toggling the rtp recording state. 96 this.status_ = this.StatusStrings_.RECORDING; 103 * Updates the UI based on the recording status. 110 'Stop Recording RTP Packets'; 113 'Start Recording RTP Packets';
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
TracingIntentHandler.java | 16 * Begin recording trace events. 25 * Stop recording trace events, and dump the data to the file
|
/external/chromium_org/third_party/skia/include/core/ |
SkTileGridPicture.h | 18 * structure rather than an R-Tree. The tile grid has lower recording 43 * @param width recording canvas width in device pixels 44 * @param height recording canvas height in device pixels
|
SkPicture.h | 92 be faithfully recorded, but the recording canvas' current clip will 93 only see the path's bounds. This speeds up the recording process 95 effect for recording is that calling getTotalClip() or related 103 recording time (often ~2x; likely more for very complex pictures), 119 This flag disables all the picture recording optimizations (i.e., 130 @param width the base width for the picture, as if the recording 132 @param height the base width for the picture, as if the recording 134 @param recordFlags optional flags that control recording. 139 /** Returns the recording canvas if one is active, or NULL if recording i [all...] |
/external/skia/include/core/ |
SkTileGridPicture.h | 18 * structure rather than an R-Tree. The tile grid has lower recording 43 * @param width recording canvas width in device pixels 44 * @param height recording canvas height in device pixels
|
SkPicture.h | 92 be faithfully recorded, but the recording canvas' current clip will 93 only see the path's bounds. This speeds up the recording process 95 effect for recording is that calling getTotalClip() or related 103 recording time (often ~2x; likely more for very complex pictures), 119 This flag disables all the picture recording optimizations (i.e., 130 @param width the base width for the picture, as if the recording 132 @param height the base width for the picture, as if the recording 134 @param recordFlags optional flags that control recording. 139 /** Returns the recording canvas if one is active, or NULL if recording i [all...] |
/packages/apps/SoundRecorder/res/values/ |
strings.xml | 21 <!-- Screen title before and during recording --> 23 <!-- Screen title after recording --> 25 <!-- Screen title while playing back a recording --> 27 <!-- Label shown during recording --> 28 <string name="recording">Recording</string> 29 <!-- Label shown when the recording is stopped for a reason other than the user stopping it (e.g. the sd card was removed) --> 30 <string name="recording_stopped">Recording stopped</string> 33 <!-- label shown when the recording has reached maximum allowed file size --> 44 <!-- button to accept the current recording and return it to the caller -- [all...] |
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/ |
CameraRecordingStream.java | 37 * Camera video recording class. It takes frames produced by camera and encoded 72 * @param size Size of recording stream. 127 * @param detach Detach the recording surface from the outputSurfaces. 132 // Can detach the surface in CONFIGURED and RECORDING state 136 Log.w(TAG, "Can not detach surface when recording stream is in IDLE state"); 143 Log.w(TAG, "Can only add surface when recording stream is in CONFIGURED state"); 149 * Update capture request with configuration required for recording stream. 152 * for recording specific camera settings. 153 * @param detach Detach the recording surface from the capture request. 158 // Can detach the surface in CONFIGURED and RECORDING stat [all...] |
/developers/samples/android/media/MediaRecorder/MediaRecorderSample/src/main/java/com/example/android/mediarecorder/ |
MainActivity.java | 63 * The capture button controls all user interaction. When recording, the button click 64 * stops recording, releases {@link android.media.MediaRecorder} and {@link android.hardware.Camera}. When not recording, 65 * it prepares the {@link android.media.MediaRecorder} and starts recording. 73 // stop recording and release camera 74 mMediaRecorder.stop(); // stop the recording 78 // inform the user that recording has stopped 135 // We need to make sure that our preview and recording video size are supported by the 143 // Use the same size for recording profile. 207 // now you can start recording [all...] |
/development/samples/browseable/MediaRecorder/src/com.example.android.mediarecorder/ |
MainActivity.java | 63 * The capture button controls all user interaction. When recording, the button click 64 * stops recording, releases {@link android.media.MediaRecorder} and {@link android.hardware.Camera}. When not recording, 65 * it prepares the {@link android.media.MediaRecorder} and starts recording. 73 // stop recording and release camera 74 mMediaRecorder.stop(); // stop the recording 78 // inform the user that recording has stopped 135 // We need to make sure that our preview and recording video size are supported by the 143 // Use the same size for recording profile. 207 // now you can start recording [all...] |
/packages/apps/Camera/res/values/ |
strings.xml | 31 <!-- label for the 'video recording application shown in the top level 'all applications' --> 52 <!-- button in review mode indicating that the photo taking, video recording, and panorama saving session should be canceled [CHAR LIMIT=10] --> 59 <string name="time_lapse_title">Time lapse recording</string> 115 time lapse recording. Appears at top of the dialog. [CHAR LIMIT=30] --> 291 <string name="video_snapshot_hint">Touch to take photo while recording.</string> 293 <!-- Announcement telling users video recording has just started [CHAR LIMIT=NONE] --> 294 <string name="video_recording_started">Video recording has started.</string> 295 <!-- Announcement telling users video recording has just stopped [CHAR LIMIT=NONE] --> 296 <string name="video_recording_stopped">Video recording has stopped.</string> 340 <!-- The button in review mode indicating that the photo taking, video recording, and panorama saving session should be canceled [CHAR LIMIT = NONE] -- [all...] |
/external/chromium_org/base/metrics/ |
histogram_snapshot_manager.h | 20 // histograms for recording either to disk or for transmission (such as from 33 // recording, or to set a flag in each recorded histogram. 52 // |histogram_flattener_| handles the logistics of recording the histogram
|
/cts/suite/audio_quality/lib/include/audio/ |
AudioHardware.h | 54 * options are : local or remote, playback or recording 62 * prepare playback or recording 76 * For record, it does not have much meaning as the last recording will always 82 * Wait for the playback / recording to complete. return true when successfully finished.
|
AudioRecordingLocal.h | 41 // unit recording samples 43 // unit recording sizes
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebSpeechInputController.h | 59 // Stops audio recording and performs recognition with the audio recorded until now 61 // wants to stop recording audio as soon as they finished speaking. Otherwise, the speech 62 // recording 'endpointer' should detect silence in the input and stop recording automatically.
|
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
StreamingProcessor.h | 38 * Management and processing for preview and recording streams 79 // Callback for new recording frames from HAL 81 // Callback from stagefright which returns used recording frames 108 // Recording-related members
|
StreamingProcessor.cpp | 228 ALOGE("%s: Camera %d: Too many recording buffers requested: %d, max %d", 235 ALOGV("%s: Camera %d: New recording buffer count from encoder: %d", 240 ALOGV("%s: Camera %d: Resetting recording heap and consumer", 244 ALOGE("%s: Camera %d: Setting recording buffer count when " 245 "recording stream is already active!", __FUNCTION__, 279 ALOGE("%s: Camera %d: Unable to create default recording request:" 287 ALOGE("%s: Camera %d: Unable to update common entries of recording " 317 ALOGV("%s: Camera %d: Creating recording consumer with %d + 1 " 339 ALOGE("%s: Camera %d: Error querying recording output stream info: " 346 // TODO: Should wait to be sure previous recording has finishe [all...] |
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/ |
MediaEncoderFilter.java | 54 /** Recording state. When set to false, recording will stop, or will not 56 * When switched back to true, recording will restart. This allows a single 58 * recording settings can be updated while the graph is running. 60 @GenerateFieldPort(name = "recording", hasDefault = true) 79 * recording events. 86 * recording errors. 91 /** Media recording done callback, which needs to implement OnRecordingDoneListener. 92 * Set this to finalize media upon completion of media recording. 146 /** The maximum filesize (in bytes) of the recording session [all...] |