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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
builtins-ms.c 4 void capture(void *);
6 capture(_alloca(n));
8 // CHECK: call void @capture(i8* %[[arg]])
  /external/opencv3/modules/videoio/src/
cap_xine.cpp 99 static void icvYUY2toBGR( CvCaptureAVI_XINE * capture )
101 uint8_t * v = capture->xine_frame.data;
103 for ( int y = 0; y < capture->yuv_frame->height; y++ )
105 offset = y * capture->yuv_frame->widthStep;
107 for ( int x = 0; x < capture->yuv_frame->width; x++, offset += 3 )
109 capture->yuv_frame->imageData[ offset + 1 ] = v[ 3 ];
110 capture->yuv_frame->imageData[ offset + 2 ] = v[ 1 ];
113 capture->yuv_frame->imageData[ offset ] = v[ 2 ];
118 capture->yuv_frame->imageData[ offset ] = v[ 0 ];
124 cvCvtColor( capture->yuv_frame, capture->bgr_frame, CV_YCrCb2BGR )
764 CvCaptureAVI_XINE * capture = ( CvCaptureAVI_XINE* ) cvAlloc ( sizeof ( CvCaptureAVI_XINE ) ); local
836 CvCaptureAVI_XINE_CPP* capture = new CvCaptureAVI_XINE_CPP; local
    [all...]
cap_libv4l.cpp 29 These drivers should work with other V4L frame capture cards other then my bttv
30 driven frame capture card.
32 Re Written driver for standard V4L mode. Tested using LMLBT44 video capture card.
75 - cvRetrieveFrame should in turn wait for the end of frame capture, and should not
76 trigger the capture of the next frame (the user choses when to do it using GrabFrame)
98 mainloop_v4l2, read_image_v4l2 -> this methods are moved from official v4l2 capture.c example
101 autosetup_capture_mode_v4l -> autodetect capture modes for v4l
102 autosetup_capture_mode_v4l2 -> autodetect capture modes for v4l2
122 - Add capture control support (hue, saturation, brightness, contrast, gain)
123 - Get and change V4L capture controls (hue, saturation, brightness, contrast
1046 CvCaptureCAM_V4L * capture = (CvCaptureCAM_V4L*)cvAlloc(sizeof(CvCaptureCAM_V4L)); local
1912 CvCaptureCAM_V4L_CPP* capture = new CvCaptureCAM_V4L_CPP; local
    [all...]
cap_v4l.cpp 29 These drivers should work with other V4L frame capture cards other then my bttv
30 driven frame capture card.
32 Re Written driver for standard V4L mode. Tested using LMLBT44 video capture card.
75 - cvRetrieveFrame should in turn wait for the end of frame capture, and should not
76 trigger the capture of the next frame (the user choses when to do it using GrabFrame)
98 mainloop_v4l2, read_image_v4l2 -> this methods are moved from official v4l2 capture.c example
101 autosetup_capture_mode_v4l -> autodetect capture modes for v4l
102 autosetup_capture_mode_v4l2 -> autodetect capture modes for v4l2
122 - Add capture control support (hue, saturation, brightness, contrast, gain)
123 - Get and change V4L capture controls (hue, saturation, brightness, contrast
1129 CvCaptureCAM_V4L * capture = (CvCaptureCAM_V4L*)cvAlloc(sizeof(CvCaptureCAM_V4L)); local
2929 CvCaptureCAM_V4L_CPP* capture = new CvCaptureCAM_V4L_CPP; local
    [all...]
cap.cpp 71 static inline double icvGetCaptureProperty( const CvCapture* capture, int id )
73 return capture ? capture->getProperty(id) : 0;
85 CV_IMPL IplImage* cvQueryFrame( CvCapture* capture )
87 if(!capture)
89 if(!capture->grabFrame())
91 return capture->retrieveFrame(0);
95 CV_IMPL int cvGrabFrame( CvCapture* capture )
97 return capture ? capture->grabFrame() : 0
212 CvCapture *capture; local
533 Ptr<IVideoCapture> capture; local
584 Ptr<IVideoCapture> capture; local
    [all...]
cap_qt.cpp 90 static int icvOpenFile_QT_Movie (CvCapture_QT_Movie * capture, const char * filename);
91 static int icvClose_QT_Movie (CvCapture_QT_Movie * capture);
92 static double icvGetProperty_QT_Movie (CvCapture_QT_Movie * capture, int property_id);
93 static int icvSetProperty_QT_Movie (CvCapture_QT_Movie * capture, int property_id, double value);
94 static int icvGrabFrame_QT_Movie (CvCapture_QT_Movie * capture);
95 static const void * icvRetrieveFrame_QT_Movie (CvCapture_QT_Movie * capture, int);
107 CvCapture_QT_Movie * capture = 0; local
111 capture = (CvCapture_QT_Movie *) cvAlloc (sizeof (*capture));
112 memset (capture, 0, sizeof(*capture))
594 CvCapture_QT_Cam * capture = 0; local
855 CvCapture_QT_Cam * capture = (CvCapture_QT_Cam *) refCon; local
1492 CvCapture_QT_Movie_CPP* capture = new CvCapture_QT_Movie_CPP; local
1561 CvCapture_QT_Cam_CPP* capture = new CvCapture_QT_Cam_CPP; local
    [all...]
cap_dc1394.cpp 154 static void icvCloseCAM_DC1394( CvCaptureCAM_DC1394* capture );
156 static int icvGrabFrameCAM_DC1394( CvCaptureCAM_DC1394* capture );
157 static IplImage* icvRetrieveFrameCAM_DC1394( CvCaptureCAM_DC1394* capture, int );
159 static double icvGetPropertyCAM_DC1394( CvCaptureCAM_DC1394* capture, int property_id );
160 static int icvSetPropertyCAM_DC1394( CvCaptureCAM_DC1394* capture, int property_id, double value );
166 static unsigned int icvGetBestFrameRate( CvCaptureCAM_DC1394 * capture, int format, int mode);
167 static int icvResizeFrame(CvCaptureCAM_DC1394 * capture);
301 fprintf(stderr,"%s:%d: Failed to setup DMA capture with VIDEO1394\n",__FILE__,__LINE__);
312 fprintf(stderr,"%s:%d: Failed to setup DMA capture with VIDEO1394\n",__FILE__,__LINE__);
348 static void icvCloseCAM_DC1394( CvCaptureCAM_DC1394* capture ){
1104 CvCaptureCAM_DC1394_CPP* capture = new CvCaptureCAM_DC1394_CPP; local
    [all...]
  /external/opencv/otherlibs/highgui/
cvcap.cpp 64 CV_IMPL IplImage* cvQueryFrame( CvCapture* capture )
66 return capture ? capture->queryFrame() : 0;
70 CV_IMPL int cvGrabFrame( CvCapture* capture )
72 return capture ? capture->grabFrame() : 0;
75 CV_IMPL IplImage* cvRetrieveFrame( CvCapture* capture )
77 return capture ? capture->retrieveFrame() : 0;
80 CV_IMPL double cvGetCaptureProperty( CvCapture* capture, int id
    [all...]
  /external/webrtc/webrtc/modules/video_capture/windows/
video_capture_factory_windows.cc 31 RefCountImpl<VideoCaptureDS>* capture = new RefCountImpl<VideoCaptureDS>(id);
32 if (capture->Init(id, device_id) != 0) {
33 delete capture;
34 capture = NULL;
37 return capture;
  /external/opencv3/modules/videoio/misc/java/test/
VideoCaptureTest.java 13 private VideoCapture capture; field in class:VideoCaptureTest
21 capture = null;
28 capture = new VideoCapture();
29 isSucceed = capture.grab();
34 capture = new VideoCapture();
35 assertFalse(capture.isOpened());
39 capture = new VideoCapture();
40 assertNotNull(capture);
41 assertFalse(capture.isOpened());
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
AddListenerAction.java 27 private boolean capture; field in class:AddListenerAction
30 if (capture)
46 return capture;
49 public void setCapture (boolean capture) {
50 this.capture = capture;
RemoveListenerAction.java 27 private boolean capture; field in class:RemoveListenerAction
30 if (capture)
46 return capture;
49 public void setCapture (boolean capture) {
50 this.capture = capture;
  /external/clang/test/OpenMP/
atomic_capture_codegen.cpp 83 #pragma omp atomic capture
88 #pragma omp atomic capture
92 #pragma omp atomic capture
97 #pragma omp atomic capture
116 #pragma omp atomic capture
132 #pragma omp atomic capture
137 #pragma omp atomic capture
153 #pragma omp atomic capture
169 #pragma omp atomic capture
185 #pragma omp atomic capture
    [all...]
atomic_messages.c 198 // Test for atomic capture
199 #pragma omp atomic capture
200 // expected-error@+2 {{the statement for 'atomic capture' must be a compound statement of form '{v = x; x binop= expr;}', '{x binop= expr; v = x;}', '{v = x; x = x binop expr;}', '{v = x; x = expr binop x;}', '{x = x binop expr; v = x;}', '{x = expr binop x; v = x;}' or '{v = x; x = expr;}', '{v = x; x++;}', '{v = x; ++x;}', '{++x; v = x;}', '{x++; v = x;}', '{v = x; x--;}', '{v = x; --x;}', '{--x; v = x;}', '{x--; v = x;}' where x is an l-value expression with scalar type}}
203 #pragma omp atomic capture
204 // expected-error@+2 {{the statement for 'atomic capture' must be an expression statement of form 'v = ++x;', 'v = --x;', 'v = x++;', 'v = x--;', 'v = x binop= expr;', 'v = x = x binop expr' or 'v = x = expr binop x', where x and v are both l-value expressions with scalar type}}
207 #pragma omp atomic capture
208 // expected-error@+2 {{the statement for 'atomic capture' must be an expression statement of form 'v = ++x;', 'v = --x;', 'v = x++;', 'v = x--;', 'v = x binop= expr;', 'v = x = x binop expr' or 'v = x = expr binop x', where x and v are both l-value expressions with scalar type}}
211 #pragma omp atomic capture
212 // expected-error@+2 {{the statement for 'atomic capture' must be an expression statement of form 'v = ++x;', 'v = --x;', 'v = x++;', 'v = x--;', 'v = x binop= expr;', 'v = x = x binop expr' or 'v = x = expr binop x', where x and v are both l-value expressions with scalar type}}
215 #pragma omp atomic capture
    [all...]
atomic_messages.cpp 336 T capture() { function
338 // Test for atomic capture
339 #pragma omp atomic capture
340 // expected-error@+2 {{the statement for 'atomic capture' must be a compound statement of form '{v = x; x binop= expr;}', '{x binop= expr; v = x;}', '{v = x; x = x binop expr;}', '{v = x; x = expr binop x;}', '{x = x binop expr; v = x;}', '{x = expr binop x; v = x;}' or '{v = x; x = expr;}', '{v = x; x++;}', '{v = x; ++x;}', '{++x; v = x;}', '{x++; v = x;}', '{v = x; x--;}', '{v = x; --x;}', '{--x; v = x;}', '{x--; v = x;}' where x is an l-value expression with scalar type}}
343 #pragma omp atomic capture
344 // expected-error@+2 {{the statement for 'atomic capture' must be an expression statement of form 'v = ++x;', 'v = --x;', 'v = x++;', 'v = x--;', 'v = x binop= expr;', 'v = x = x binop expr' or 'v = x = expr binop x', where x and v are both l-value expressions with scalar type}}
347 #pragma omp atomic capture
348 // expected-error@+2 {{the statement for 'atomic capture' must be an expression statement of form 'v = ++x;', 'v = --x;', 'v = x++;', 'v = x--;', 'v = x binop= expr;', 'v = x = x binop expr' or 'v = x = expr binop x', where x and v are both l-value expressions with scalar type}}
351 #pragma omp atomic capture
352 // expected-error@+2 {{the statement for 'atomic capture' must be an expression statement of form 'v = ++x;', 'v = --x;', 'v = x++;', 'v = x--;', 'v = x bi (…)
508 int capture() { function
    [all...]
  /external/chromium-trace/catapult/netlog_viewer/netlog_viewer/
status_view.css 6 .capture-status-view {
19 #capture-status-view {
24 .capture-status-view-link,
25 .capture-status-view-link:visited,
26 .capture-status-view-link:active {
31 .capture-status-view-link:hover {
37 #capture-status-view-actions {
46 .capture-status-view-arrow {
51 .capture-status-view-arrow::after {
  /libcore/ojluni/src/main/java/sun/net/www/http/
HttpCaptureInputStream.java 30 * A Simple FilterInputStream subclass to capture HTTP traffic.
36 private HttpCapture capture = null; field in class:HttpCaptureInputStream
40 capture = cap;
46 capture.received(i);
53 capture.flush();
63 capture.received(b[i]);
72 capture.received(b[off+i]);
HttpCaptureOutputStream.java 30 * A Simple FilterOutputStream subclass to capture HTTP traffic.
36 private HttpCapture capture = null; field in class:HttpCaptureOutputStream
40 capture = cap;
45 capture.sent(b);
52 capture.sent(b);
60 capture.sent(b[i]);
68 capture.flush();
  /external/opencv3/samples/cpp/example_cmake/
example.cpp 16 VideoCapture capture; local
17 capture.open(0);
18 if(capture.isOpened())
20 cout << "Capture is opened" << endl;
23 capture >> image;
34 cout << "No capture" << endl;
  /external/testng/src/test/java/test/pholser/
Saboteur.java 17 Captor.instance().capture( "Saboteur.setUpFixture" );
22 Captor.instance().capture( "Saboteur.setUp" );
27 Captor.instance().capture( "Saboteur.tearDown" );
32 Captor.instance().capture( "Saboteur.tearDownFixture" );
  /system/bt/hci/include/
btsnoop.h 33 // Capture |packet| and dump it to the btsnoop logs. If |is_received| is
36 void (*capture)(const BT_HDR *packet, bool is_received); member in struct:btsnoop_t
  /external/guava/guava-tests/test/com/google/common/reflect/
TypeResolverTest.java 44 Type t1 = new TypeCapture<T>() {}.capture();
58 Type t = new TypeCapture<List<T>>() {}.capture();
64 Type t = new TypeCapture<T[]>() {}.capture();
90 Type t1 = new TypeCapture<T1>() {}.capture();
91 Type t2 = new TypeCapture<T2>() {}.capture();
96 Type t = new TypeCapture<T>() {}.capture();
98 .where(new TypeCapture<T[]>() {}.capture(), String[].class)
103 Type t = new TypeCapture<T>() {}.capture();
105 new TypeResolver().where(new TypeCapture<T[]>() {}.capture(), int[].class).resolveType(t));
109 Type t = new TypeCapture<T>() {}.capture();
    [all...]
  /external/webrtc/webrtc/base/
sigslottester.h.pump 20 // They are meant to be used in tests. Tests must provide "capture" pointers
29 // const std::string&, but capture-type is std::string. Capture type
31 // std::string capture;
32 // SigslotTester1<const std::string&, std::string> slot(&foo, &capture);
35 // EXPECT_EQ("hello", capture);
46 // - C1-C5 is the type of the variable to capture argument i. These should be
58 $for j , [[C$j* capture$j]])
60 $for j , [[capture$j[[]]_(capture$j)]]
    [all...]
  /external/opencv3/samples/cpp/
openni_capture.cpp 80 static float getMaxDisparity( VideoCapture& capture )
83 float b = (float)capture.get( CAP_OPENNI_DEPTH_GENERATOR_BASELINE ); // mm
84 float F = (float)capture.get( CAP_OPENNI_DEPTH_GENERATOR_FOCAL_LENGTH ); // pixels
191 VideoCapture capture; local
193 capture.open( filename );
196 capture.open( CAP_OPENNI2 );
197 if( !capture.isOpened() )
198 capture.open( CAP_OPENNI );
203 if( !capture.isOpened() )
205 cout << "Can not open a capture object." << endl
    [all...]
starter_video.cpp 10 * A starter sample for using OpenCV VideoCapture with capture devices, video files or image sequences
31 << "\tTo capture from a camera pass the device number. To find the device number, try ls /dev/video*" << endl
39 int process(VideoCapture& capture) {
48 capture >> frame;
53 char key = (char)waitKey(30); //delay N millis, usually long enough to display and capture input
80 VideoCapture capture(arg); //try to open string, this will attempt to open it as a video file or image sequence
81 if (!capture.isOpened()) //if this fails, try to open as a video camera, through the use of an integer param
82 capture.open(atoi(arg.c_str()));
83 if (!capture.isOpened()) {
88 return process(capture);
    [all...]

Completed in 4621 milliseconds

1 2 3 4 5 6 7 8 91011>>