HomeSort by relevance Sort by last modified time
    Searched full:capture (Results 76 - 100 of 3047) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webrtc/webrtc/modules/video_capture/mac/qtkit/
video_capture_qtkit_info.h 38 * Returns the available capture devices.
39 * deviceNumber -[in] index of capture device
40 * deviceNameUTF8 - friendly name of the capture device
41 * deviceUniqueIdUTF8 - unique name of the capture device if it exist.
77 * Display OS /capture device specific settings dialog
  /external/clang/test/CodeGenCXX/
captured-statements.cpp 34 // CHECK-1: %[[Capture:struct\.anon[\.0-9]*]] = type { %struct.TestClass*, %struct.Foo* }
39 // CHECK-1: getelementptr inbounds %[[Capture]], %[[Capture]]* %{{[^,]*}}, i32 0, i32 0
40 // CHECK-1: getelementptr inbounds %[[Capture]], %[[Capture]]* %{{[^,]*}}, i32 0, i32 1
42 // CHECK-1: call void @[[HelperName:[\.A-Za-z0-9_]+]](%[[Capture]]*
48 // CHECK-1: getelementptr inbounds %[[Capture]], %[[Capture]]* {{[^,]*}}, i32 0, i32 0
53 // CHECK-1: getelementptr inbounds %[[Capture]], %[[Capture]]* {{[^,]*}}, i32 0, i32
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/
package.html 23 per the request, and then outputs one capture result metadata packet,
41 <p>To capture or stream images from a camera device, the application
43 android.hardware.camera2.CameraCaptureSession camera capture session}
60 {@link android.graphics.SurfaceTexture}). Capture of JPEG images or
74 capture parameters needed by a camera device to capture a single
76 should be used as targets for this capture. The CameraDevice has a
84 capture session either for a one-shot {@link
85 android.hardware.camera2.CameraCaptureSession#capture capture} or fo
    [all...]
CaptureFailure.java 25 * A report of failed capture for a single image capture from the image sensor.
29 * to determine the specific nature of the failed capture.</p>
45 * The capture has failed due to a {@link CameraCaptureSession#abortCaptures} call from the
78 * Get the request associated with this failed capture.
82 * the {@code failed capture}'s {@code getRequest()} will return that {@code request}.
86 * <code><pre>cameraDevice.capture(someRequest, new CaptureCallback() {
95 * @return The request associated with this failed capture. Never {@code null}.
103 * Get the frame number associated with this failed capture.
105 * <p>Whenever a request has been processed, regardless of failed capture or success
    [all...]
CameraCaptureSession.java 29 * A configured capture session for a {@link CameraDevice}, used for capturing images from the
36 * reprocessable capture session. Once created, the session is active until a new session is
39 * <p>All capture sessions can be used for capturing images from the camera but only reprocessable
40 * capture sessions can reprocess images captured from the camera in the same session previously.
54 * <p>Any capture requests (repeating or non-repeating) submitted before the session is ready will
55 * be queued up and will begin capture once the session becomes ready. In case the session cannot be
57 * capture requests are discarded.</p>
65 * but will still complete all of its in-progress capture requests as normal, before a newly
113 * used as a target of a capture request in the first session, prepare cannot be called on it
189 * for the lifetime of the capture session, to minimize latency of captures and to reduc
337 public abstract int capture(@NonNull CaptureRequest request, method in class:CameraCaptureSession
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/
OneCameraImpl.java 108 /** Set the total capture result once it's been received. */
115 * Returns whether the capture is complete (which is the case once the
116 * image and capture result are both present.
125 /** If true, will write data about each capture request to disk. */
151 * <li>{@link #CAPTURE}</li>
157 /** Capture request (purely for logging). */
158 CAPTURE,
174 /** Keep PictureCallback for last requested capture. */
208 if (request.getTag() == RequestTag.CAPTURE
242 if (request.getTag() == RequestTag.CAPTURE) {
    [all...]
  /art/test/955-lambda-smali/smali/
CaptureVariables.smali 27 # Test boolean capture
29 capture-variable v2, "Z"
34 # Test byte capture
36 capture-variable v2, "B"
41 # Test char capture
43 capture-variable v2, "C"
48 # Test short capture
50 capture-variable v2, "S"
55 # Test int capture
57 capture-variable v2, "I
    [all...]
  /external/libpcap/
pcap_set_tstamp_type.3pcap.in 24 capture device
45 will give a list of the time stamp types supported by a given capture
53 supported by the capture device,
56 capture device,
58 if called on a capture handle that has been activated, and
60 if the capture device doesn't support setting the time stamp type.
  /external/opencv3/samples/cpp/
polar_transforms.cpp 17 CvCapture* capture = 0; local
25 capture = cvCaptureFromCAM( argc == 2 ? argv[1][0] - '0' : 0 );
27 capture = cvCaptureFromAVI( argv[1] );
28 if( !capture )
48 frame = cvQueryFrame( capture );
76 cvReleaseCapture( &capture );
  /external/opencv3/samples/cpp/tutorial_code/objectDetection/
objectDetection.cpp 20 String window_name = "Capture - Face detection";
25 VideoCapture capture; local
33 capture.open( -1 );
34 if ( ! capture.isOpened() ) { printf("--(!)Error opening video capture\n"); return -1; }
36 while ( capture.read(frame) )
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_capturer.h 36 // |frame|. If capture has failed for any reason |frame| is set to NULL
50 // Captures next frame. |region| specifies region of the capture target that
54 // the top left corner of the capture target. Pending capture operations are
56 virtual void Capture(const DesktopRegion& region) = 0;
59 // Capture calls. Used to exclude the screenshare notification window for
mouse_cursor_monitor.h 36 // Capture only shape of the mouse cursor, but not position.
39 // Capture both, mouse cursor shape and position.
46 // Called in response to Capture() when the cursor shape has changed. Must
50 // Called in response to Capture(). |position| indicates cursor position
81 // changed since the last call (or when Capture() is called for the first
84 virtual void Capture() = 0;
window_capturer_unittest.cc 54 // Verify we can capture a window.
57 // exist. Ideally it should create a test window and capture from it, but there
61 TEST_F(WindowCapturerTest, Capture) {
66 // Verify that we can select and capture each window.
71 capturer_->Capture(DesktopRegion());
74 // If we failed to capture a window make sure it no longer exists.
  /frameworks/base/core/java/android/hardware/camera2/utils/
SubmitInfo.java 23 * The status information returned for a successful capture request submission.
25 * Includes the request ID for the newly submitted capture request, and the
27 * requests), or of the request(s) just submitted (for single-shot capture).
80 * Return the request ID for the submitted capture request/burst.
90 * Return the last frame number for the submitted capture request/burst.
96 * For a single-shot capture, this is the last frame number of _this_
  /packages/apps/Camera2/src/com/android/camera/one/v2/initialization/
CaptureSessionCreator.java 31 * Asynchronously creates capture sessions.
38 * @param device The device on which to create the capture session.
39 * @param cameraHandler The handler on which to process capture session
48 * Asynchronously creates a capture session, returning a future to it.
50 * @param surfaces The set of output surfaces for the camera capture
52 * @return A Future for the camera capture session.
  /external/webrtc/webrtc/modules/video_capture/
video_capture.h 27 // Returns the available capture devices.
28 // deviceNumber - Index of capture device.
29 // deviceNameUTF8 - Friendly name of the capture device.
30 // deviceUniqueIdUTF8 - Unique name of the capture device if it exist.
67 // Display OS /capture device specific settings dialog
99 // Register capture data callback
103 // Remove capture data callback
106 // Register capture callback.
109 // Remove capture callback.
112 // Start capture devic
    [all...]
video_capture_config.h 25 enum {kMaxCaptureDelay = 270}; // Max capture delay allowed in the precompiled capture delay values.
video_capture_impl.h 36 * Create a video capture module object
38 * id - unique identifier of this video capture module object
45 * Create a video capture module object used for external capture.
47 * id - unique identifier of this video capture module object
112 int32_t _captureDelay; // Current capture delay. May be changed of platform dependent parts.
126 int32_t _setCaptureDelay; // The currently used capture delay
133 // capture module.
  /platform_testing/libraries/base-app-helpers/src/android/platform/test/helpers/
AbstractGoogleCameraHelper.java 57 * Setup expectation: in Camera mode with the capture button present.
59 * This method will capture a photo and block until the transaction is complete.
64 * Setup expectation: in Video mode with the capture button present.
66 * This method will capture a video of length timeInMs and block until the transaction is
74 * 1. in Video mode with the capture button present.
77 * This method will capture a video of length videoTime, and take a picture at snapshotStartTime.
127 * This method will set front video capture resolution to one of the following:
139 * This method will set back video capture resolution to one of the following:
153 * This method will set video capture framerate to one of the following:
161 * Setup expectation: in Camera mode with the capture button present
    [all...]
  /external/v8/test/mjsunit/
regexp-global.js 29 // Test that an optional capture is cleared between two matches.
31 str = str.replace(/(\w)?X/g, function(match, capture) {
32 assertTrue(match.indexOf(capture) >= 0 ||
33 capture === undefined);
34 return capture ? capture.toLowerCase() : "-";
40 str = str.replace(/\b/g, function(match, capture) {
47 str = str.replace(/(?=(\w+))\b/g, function(match, capture) {
48 return capture.length;
80 //Test that an optional capture is cleared between two matches
    [all...]
  /external/libcxx/cmake/Modules/
CodeCoverage.cmake 26 message(STATUS "Capture Directories: ${CAPTURE_DIRS}")
30 COMMAND ${CODE_COVERAGE_LCOV} --capture ${CAPTURE_DIRS} -o test_coverage.info
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/iphone/
iPhoneAccelerometer.h 29 /** @copydoc Object::capture */
30 virtual void capture();
  /external/llvm/test/Transforms/SafeStack/AArch64/
abi.ll 14 call void @Capture(i8* %a)
20 declare void @Capture(i8*)
  /external/webrtc/webrtc/base/objc/
RTCCameraPreviewView.h 22 /** The capture session being rendered in the view. Capture session
  /packages/apps/DevCamera/src/com/android/devcamera/
LoggingCallbacks.java 67 Log.v(TAG, "Capture session callback onConfigured("+session+")");
73 Log.v(TAG, "Capture session callback onConfigureFailed("+session+")");
80 Log.v(TAG, "Capture session callback onReady("+session+")");
88 Log.v(TAG, "Capture session callback onActive("+session+")");
96 Log.v(TAG, "Capture session callback onClosed("+session+")");
106 Log.v(TAG, "Capture started.");
114 Log.v(TAG, "Capture progressed.");
122 Log.v(TAG, "Capture completed.");

Completed in 1037 milliseconds

1 2 34 5 6 7 8 91011>>