/frameworks/base/core/java/android/hardware/camera2/ |
CameraConstrainedHighSpeedCaptureSession.java | 25 * A constrained high speed capture session for a {@link CameraDevice}, used for capturing high 33 * An active high speed capture session is a specialized capture session that is only targeted at 55 * Any capture requests (repeating or non-repeating) submitted before the session is ready will be 56 * queued up and will begin capture once the session becomes ready. In case the session cannot be 58 * called, all queued capture requests are discarded. </p> 68 * but will still complete all of its in-progress capture requests as normal, before a newly created 75 * <p>Create a unmodifiable list of requests that is suitable for constrained high speed capture 96 * capture session to achieve high speed video recording. When only preview or recording 100 * <p>Submitting a request list created by this method to a normal capture session will resul [all...] |
/system/media/audio/include/system/ |
sound_trigger.h | 78 to capture */ 81 bool concurrent_capture; /* supports capture by other use cases while 83 bool trigger_in_event; /* returns the trigger capture in event */ 154 bool capture_available; /* it is possible to capture audio from this 160 for capture. A negative value is possible 162 capture */ 166 bool trigger_in_data; /* the opaque data is the capture of 169 event data or to use for capture of the 209 * configuration for sound trigger capture session passed to start_recognition() 212 audio_io_handle_t capture_handle; /* IO handle that will be used for capture [all...] |
/external/regex-re2/re2/ |
nfa.cc | 62 const char** capture; member in struct:re2::NFA::Thread 69 const char* cap_j; // if j>=0, set capture[j] = cap_j before processing ip 88 // to the workqueue q with associated capture info. 90 const char* p, const char** capture); 100 // Returns text version of capture information, for debugging. 101 string FormatCapture(const char** capture); 152 delete[] t->capture; 168 t->capture = new const char*[ncapture_]; 187 const char* p, const char** capture) { 204 capture[a.j] = a.cap_j [all...] |
/external/clang/lib/Sema/ |
SemaLambda.cpp | 28 /// enclosing lambda (to the current lambda) that is 'capture-ready' for 31 /// of the capture-ready lambda's LambdaScopeInfo. 35 /// lambda that is ready to capture the \p VarToCapture being referenced in 38 /// that is the lambda with the highest index that is 'capture-ready'. 40 /// A lambda 'L' is capture-ready for 'V' (var or this) if: 44 /// stack), can all capture or have already captured V. 45 /// If \p VarToCapture is 'null' then we are trying to capture 'this'. 47 /// Note that a lambda that is deemed 'capture-ready' still needs to be checked 48 /// for whether it is 'capture-capable' (see 50 /// capture [all...] |
/external/clang/include/clang/Sema/ |
ScopeInfo.h | 392 class Capture { 393 // There are three categories of capture: capturing 'this', capturing 395 // arbitrary initializer, and don't really capture in the traditional 398 // There are three ways to capture a local variable: 399 // - capture by copy in the C++11 sense, 400 // - capture by reference in the C++11 sense, and 401 // - __block capture. 402 // Lambdas explicitly specify capture by copy or capture by reference. 403 // For blocks, __block capture applies to variables with that annotation [all...] |
/device/google/marlin/ |
aanc_tuning_mixer.txt | 1 #ANC_TEST_P_PATH_MIC_STEREO Capture 3 !Capture 27 #ANC_TEST_S_PATH_MIC_STEREO Capture 29 !Capture 62 #ANC_TEST_E_PATH_MIC_STEREO Capture 64 !Capture
|
/device/huawei/angler/ |
aanc_tuning_mixer.txt | 1 #ANC_TEST_P_PATH_MIC_STEREO Capture 3 !Capture 29 #ANC_TEST_S_PATH_MIC_STEREO Capture 31 !Capture 63 #ANC_TEST_E_PATH_MIC_STEREO Capture 65 !Capture
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
video_file_frame_generator.py | 20 _capture: The openCV video capture. 21 _frame_count: The number of frames in the video capture. 24 _dimensions: The dimensions of the video capture.""" 43 raise frame_generator.FrameReadError('Not enough frames in capture.') 59 FrameReadError: Unexpectedly failed to read a frame from the capture.""" 70 'Failed to read frame from capture.')
|
/external/clang/test/CodeGenCXX/ |
cxx1y-init-captures.cpp | 47 // Initialize init-capture 'b(a)' by reference. 51 // Initialize init-capture 'c(a)' by copy. 63 // Capture outer 'c' by reference. 69 // Capture outer 'b' by copy. 86 // Load capture of 'b' 90 // Load capture of 'c'
|
/external/opencv3/samples/cpp/tutorial_code/objectDetection/ |
objectDetection2.cpp | 25 String window_name = "Capture - Face detection"; 31 VideoCapture capture; local 39 capture.open( -1 ); 40 if ( ! capture.isOpened() ) { printf("--(!)Error opening video capture\n"); return -1; } 42 while ( capture.read(frame) )
|
/external/webrtc/webrtc/modules/desktop_capture/ |
screen_capturer.h | 25 // Class used to capture video frames asynchronously. 27 // The full capture sequence is as follows: 30 // This is when pre-capture steps are executed, such as flagging the 36 // A screen capture is performed if needed. For example, Windows requires 37 // a capture to calculate the diff from the previous screen, whereas the 42 // Since data can be read while another capture action is happening.
|
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
CaptureSequencer.h | 40 * Manages the still image capture process for 53 // Begin still image capture 56 // Wait until current image capture completes; returns immediately if no 57 // capture is active. Returns TIMED_OUT if capture does not complete during 64 // Notifications about shutter (capture start)
|
/frameworks/base/packages/Shell/res/values-fr/ |
strings.xml | 26 <string name="bugreport_finished_pending_screenshot_text" product="watch" msgid="1474435374470177193">"Appuyer pour partager rapport de bug sans capture d\'écran ou attendre finalisation capture d\'écran"</string> 27 <string name="bugreport_finished_pending_screenshot_text" product="default" msgid="1474435374470177193">"Appuyer pour partager rapport de bug sans capture d\'écran ou attendre finalisation capture d\'écran"</string> 36 <string name="bugreport_screenshot_taken" msgid="5684211273096253120">"La capture d\'écran a bien été effectuée."</string> 37 <string name="bugreport_screenshot_failed" msgid="5853049140806834601">"Impossible d\'effectuer une capture d\'écran."</string>
|
/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/ |
BlockingCaptureCallback.java | 29 * A camera capture listener that implements blocking operations on state changes for a 30 * particular capture request. 92 * Create a blocking capture listener without forwarding the capture listener invocations 93 * to another capture listener. 100 * Create a blocking capture listener; forward original listener invocations
|
/packages/apps/Camera2/src/com/android/camera/one/config/ |
OneCameraFeatureConfig.java | 35 /** The camera API 2 support levels for capture module. */ 79 /** Whether the capture module should be used (instead of PhotoModule). */ 81 /** Determines the mode for regular capture on this device. */ 87 * during capture and processing, in megabytes. 109 * @return Whether CaptureModule should be used for photo capture. 136 * cameras during capture and processing, in megabytes.
|
/frameworks/base/media/java/android/media/audiofx/ |
Visualizer.java | 45 * <p>The length of the capture can be retrieved or specified by calling respectively 46 * {@link #getCaptureSize()} and {@link #setCaptureSize(int)} methods. The capture size must be a 48 * <p>In addition to the polling capture mode described above with {@link #getWaveForm(byte[])} and 51 * The rate at which the listener capture method is called as well as the type of data returned is 55 * When data capture is not needed any more, the Visualizer should be disabled. 91 * Defines a capture mode where amplification is applied based on the content of the captured 96 * Defines a capture mode where the playback volume will affect (scale) the range of the 178 * PCM and FFT capture listener registered by client 287 * Returns the capture size range. 288 * @return the mininum capture size is returned in first array element and the maximum in secon [all...] |
/cts/tests/tests/text/src/android/text/cts/ |
EmojiTest.java | 99 mBitmapA = ccanvas.capture(Character.toChars(comparedCodePoints[i][0])); 100 mBitmapB = ccanvas.capture(Character.toChars(comparedCodePoints[i][1])); 107 mBitmapA = cviewA.capture(Character.toChars(comparedCodePoints[i][0])); 109 mBitmapB = cviewB.capture(Character.toChars(comparedCodePoints[i][1])); 115 mBitmapA = cedittextA.capture(Character.toChars(comparedCodePoints[i][0])); 117 mBitmapB = cedittextB.capture(Character.toChars(comparedCodePoints[i][1])); 127 mBitmapA = cwebview.capture(Character.toChars(comparedCodePoints[i][0])); 128 mBitmapB = cwebview.capture(Character.toChars(comparedCodePoints[i][1])); 188 Bitmap capture(char c[]) { method in class:EmojiTest.CaptureCanvas 211 Bitmap capture(char c[]) method in class:EmojiTest.CaptureTextView 235 Bitmap capture(char c[]) { method in class:EmojiTest.CaptureEditText 261 Bitmap capture(char c[]) { method in class:EmojiTest.CaptureWebView [all...] |
/device/google/contexthub/firmware/inc/platform/stm32f4xx/ |
plat.h | 31 Stm32sleepDevTim4, /* input capture uses this, potentially */ 32 Stm32sleepDevTim5, /* input capture uses this, potentially */ 33 Stm32sleepDevTim9, /* input capture uses this, potentially */
|
/external/autotest/client/site_tests/audio_CrasLoopback/ |
audio_CrasLoopback.py | 17 """Verifies audio playback and capture function.""" 39 cras_utils.capture(noise_file, duration=1) 45 cras_utils.capture(recorded_file, duration=TEST_DURATION)
|
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/mac/ |
CocoaMouse.h | 46 /** @copydoc Object::capture */ 47 virtual void capture(); 71 - (void)capture;
|
/external/libpcap/ |
pcap_set_buffer_size.3pcap | 23 capture handle 35 sets the buffer size that will be used on a capture handle when 43 if called on a capture handle that has been activated.
|
pcap_set_immediate_mode.3pcap | 23 pcap_set_immediate_mode \- set immediate mode for a not-yet-activated capture 36 sets whether immediate mode should be set on a capture handle when 45 if called on a capture handle that has been activated.
|
pcap_set_promisc.3pcap | 23 capture handle 35 sets whether promiscuous mode should be set on a capture handle when 44 if called on a capture handle that has been activated.
|
pcap_set_rfmon.3pcap | 22 pcap_set_rfmon \- set monitor mode for a not-yet-activated capture 35 sets whether monitor mode should be set on a capture handle when 44 if called on a capture handle that has been activated.
|
pcap_set_snaplen.3pcap | 23 capture handle 35 sets the snapshot length to be used on a capture handle when the handle 42 if called on a capture handle that has been activated.
|