/external/clang/test/CodeGen/ |
H A D | builtins-ms.c | 4 void capture(void *); 6 capture(_alloca(n)); 8 // CHECK: call void @capture(i8* %[[arg]])
|
/external/opencv3/modules/videoio/src/ |
H A D | 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 233 icvOpenAVI_XINE( CvCaptureAVI_XINE* capture, const char* filename ) argument 329 icvRetrieveFrameAVI_XINE( CvCaptureAVI_XINE* capture, int ) argument 399 icvOldSeekFrameAVI_XINE( CvCaptureAVI_XINE* capture, int f ) argument 468 icvSeekFrameAVI_XINE( CvCaptureAVI_XINE* capture, int f ) argument 522 icvSeekTimeAVI_XINE( CvCaptureAVI_XINE* capture, int t ) argument 573 icvSeekRatioAVI_XINE( CvCaptureAVI_XINE* capture, double ratio ) argument 631 icvGetPropertyAVI_XINE( CvCaptureAVI_XINE* capture, int property_id ) argument 714 icvSetPropertyAVI_XINE( CvCaptureAVI_XINE* capture, int property_id, double value ) argument 764 CvCaptureAVI_XINE * capture = ( CvCaptureAVI_XINE* ) cvAlloc ( sizeof ( CvCaptureAVI_XINE ) ); local 836 CvCaptureAVI_XINE_CPP* capture = new CvCaptureAVI_XINE_CPP; local [all...] |
H A D | 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 control 419 try_init_v4l(CvCaptureCAM_V4L* capture, char *deviceName) argument 463 try_init_v4l2(CvCaptureCAM_V4L* capture, char *deviceName) argument 513 v4l2_free_ranges(CvCaptureCAM_V4L* capture) argument 531 v4l2_add_ctrl_range(CvCaptureCAM_V4L* capture, v4l2_control* ctrl) argument 544 v4l2_get_ctrl_default(CvCaptureCAM_V4L* capture, __u32 id) argument 554 v4l2_get_ctrl_min(CvCaptureCAM_V4L* capture, __u32 id) argument 564 v4l2_get_ctrl_max(CvCaptureCAM_V4L* capture, __u32 id) argument 575 v4l2_scan_controls(CvCaptureCAM_V4L* capture) argument 665 _capture_V4L2(CvCaptureCAM_V4L *capture, char *deviceName) argument 873 _capture_V4L(CvCaptureCAM_V4L *capture, char *deviceName) argument 1046 CvCaptureCAM_V4L * capture = (CvCaptureCAM_V4L*)cvAlloc(sizeof(CvCaptureCAM_V4L)); local 1095 read_frame_v4l2(CvCaptureCAM_V4L* capture) argument 1144 mainloop_v4l2(CvCaptureCAM_V4L* capture) argument 1184 icvGrabFrameCAM_V4L(CvCaptureCAM_V4L* capture) argument 1275 icvRetrieveFrameCAM_V4L( CvCaptureCAM_V4L* capture, int) argument 1356 icvGetPropertyCAM_V4L(CvCaptureCAM_V4L* capture, int property_id ) argument 1497 icvSetVideoSize( CvCaptureCAM_V4L* capture, int w, int h) argument 1613 icvSetControl(CvCaptureCAM_V4L* capture, int property_id, double value) argument 1740 icvSetPropertyCAM_V4L(CvCaptureCAM_V4L* capture, int property_id, double value) argument 1912 CvCaptureCAM_V4L_CPP* capture = new CvCaptureCAM_V4L_CPP; local [all...] |
H A D | 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 control 419 try_palette_v4l2(CvCaptureCAM_V4L* capture, unsigned long colorspace) argument 443 try_init_v4l(CvCaptureCAM_V4L* capture, char *deviceName) argument 487 try_init_v4l2(CvCaptureCAM_V4L* capture, char *deviceName) argument 544 autosetup_capture_mode_v4l2(CvCaptureCAM_V4L* capture) argument 611 autosetup_capture_mode_v4l(CvCaptureCAM_V4L* capture) argument 649 v4l2_scan_controls(CvCaptureCAM_V4L* capture) argument 793 _capture_V4L2(CvCaptureCAM_V4L *capture, char *deviceName) argument 989 _capture_V4L(CvCaptureCAM_V4L *capture, char *deviceName) argument 1129 CvCaptureCAM_V4L * capture = (CvCaptureCAM_V4L*)cvAlloc(sizeof(CvCaptureCAM_V4L)); local 1175 read_frame_v4l2(CvCaptureCAM_V4L* capture) argument 1223 mainloop_v4l2(CvCaptureCAM_V4L* capture) argument 1265 icvGrabFrameCAM_V4L(CvCaptureCAM_V4L* capture) argument 2108 icvRetrieveFrameCAM_V4L( CvCaptureCAM_V4L* capture, int) argument 2293 icvGetPropertyCAM_V4L(CvCaptureCAM_V4L* capture, int property_id ) argument 2485 icvSetVideoSize( CvCaptureCAM_V4L* capture, int w, int h) argument 2592 icvSetControl(CvCaptureCAM_V4L* capture, int property_id, double value) argument 2775 icvSetPropertyCAM_V4L( CvCaptureCAM_V4L* capture, int property_id, double value ) argument 2929 CvCaptureCAM_V4L_CPP* capture = new CvCaptureCAM_V4L_CPP; local [all...] |
H A D | cap.cpp | 71 static inline double icvGetCaptureProperty( const CvCapture* capture, int id ) argument 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 100 cvRetrieveFrame( CvCapture* capture, int idx ) argument 105 cvGetCaptureProperty( CvCapture* capture, int id ) argument 110 cvSetCaptureProperty( CvCapture* capture, int id, double value ) argument 115 cvGetCaptureDomain( CvCapture* capture) argument 212 CvCapture *capture; local 533 Ptr<IVideoCapture> capture; local 584 Ptr<IVideoCapture> capture; local [all...] |
H A D | 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, 132 icvOpenFile_QT_Movie(CvCapture_QT_Movie * capture, const char * filename) argument 238 icvClose_QT_Movie(CvCapture_QT_Movie * capture) argument 261 icvGetProperty_QT_Movie(CvCapture_QT_Movie * capture, int property_id) argument 328 icvSetProperty_QT_Movie(CvCapture_QT_Movie * capture, int property_id, double value) argument 438 icvGrabFrame_QT_Movie(CvCapture_QT_Movie * capture) argument 481 icvRetrieveFrame_QT_Movie(CvCapture_QT_Movie * capture, int) argument 594 CvCapture_QT_Cam * capture = 0; local 609 icvGetProperty_QT_Cam(CvCapture_QT_Cam * capture, int property_id) argument 616 icvSetProperty_QT_Cam(CvCapture_QT_Cam * capture, int property_id, double value) argument 632 icvOpenCamera_QT(CvCapture_QT_Cam * capture, const int index) argument 786 icvClose_QT_Cam(CvCapture_QT_Cam * capture) argument 806 icvGrabFrame_QT_Cam(CvCapture_QT_Cam * capture) argument 825 icvRetrieveFrame_QT_Cam(CvCapture_QT_Cam * capture, int) argument 855 CvCapture_QT_Cam * capture = (CvCapture_QT_Cam *) refCon; local 912 icvOpenCamera_QT(CvCapture_QT_Cam * capture, const int index) argument 1029 icvClose_QT_Cam(CvCapture_QT_Cam * capture) argument 1056 icvGrabFrame_QT_Cam(CvCapture_QT_Cam * capture) argument 1076 icvRetrieveFrame_QT_Cam(CvCapture_QT_Cam * capture, int) argument 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...] |
H A D | 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 ){ 379 icvRetrieveFrameCAM_DC1394( CvCaptureCAM_DC1394* capture, int ) argument 455 icvGetPropertyCAM_DC1394( CvCaptureCAM_DC1394* capture, int property_id ) argument 511 icvResizeFrame(CvCaptureCAM_DC1394 * capture) argument 585 icvSetConvertRGB(CvCaptureCAM_DC1394 * capture, int convert) argument 616 icvSetModeCAM_DC1394( CvCaptureCAM_DC1394 * capture, int mode ) argument 674 icvGetBestFrameRate( CvCaptureCAM_DC1394 * capture, int format, int mode ) argument 692 icvSetFrameRateCAM_DC1394( CvCaptureCAM_DC1394 * capture, double value ) argument 777 icvSetFeatureCAM_DC1394( CvCaptureCAM_DC1394* capture, int feature_id, int val) argument 854 icvSetPropertyCAM_DC1394( CvCaptureCAM_DC1394* capture, int property_id, double value ) argument 1104 CvCaptureCAM_DC1394_CPP* capture = new CvCaptureCAM_DC1394_CPP; local [all...] |
/external/opencv/otherlibs/highgui/ |
H A D | 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, in argument 85 cvSetCaptureProperty( CvCapture* capture, int id, double value ) argument [all...] |
/external/webrtc/webrtc/modules/video_capture/windows/ |
H A D | 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/ |
H A D | 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/ |
H A D | AddListenerAction.java | 27 private boolean capture; field in class:AddListenerAction 30 if (capture) 46 return capture; 49 public void setCapture (boolean capture) { argument 50 this.capture = capture;
|
H A D | RemoveListenerAction.java | 27 private boolean capture; field in class:RemoveListenerAction 30 if (capture) 46 return capture; 49 public void setCapture (boolean capture) { argument 50 this.capture = capture;
|
/external/clang/test/OpenMP/ |
H A D | 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...] |
H A D | 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...] |
H A D | 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' mus 508 int capture() { function [all...] |
/external/chromium-trace/catapult/netlog_viewer/netlog_viewer/ |
H A D | 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 {
|
/external/opencv3/samples/cpp/example_cmake/ |
H A D | example.cpp | 16 VideoCapture capture; local 17 capture.open(0); 18 if(capture.isOpened()) 23 capture >> image; 34 cout << "No capture" << endl;
|
/external/testng/src/test/java/test/pholser/ |
H A D | 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" );
|
/external/guava/guava-tests/test/com/google/common/reflect/ |
H A D | 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/ |
H A D | 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)]] { 70 *capture [all...] |
/external/opencv3/samples/cpp/ |
H A D | 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 objec [all...] |
H A D | 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) { argument 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...] |
H A D | intelperc_capture.cpp | 107 static void printStreamProperties(VideoCapture &capture) argument 109 size_t profilesCount = (size_t)capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_INTELPERC_PROFILE_COUNT); 111 cout << " Brightness = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_BRIGHTNESS) << endl; 112 cout << " Contrast = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_CONTRAST) << endl; 113 cout << " Saturation = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_SATURATION) << endl; 114 cout << " Hue = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_HUE) << endl; 115 cout << " Gamma = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_GAMMA) << endl; 116 cout << " Sharpness = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_SHARPNESS) << endl; 117 cout << " Gain = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_GAIN) << endl; 118 cout << " Backligh = " << capture 155 imshowImage(const char *winname, Mat &image, VideoCapture &capture) argument 227 imshowDepth(const char *winname, Mat &depth, VideoCapture &capture) argument 291 VideoCapture capture; local [all...] |
/external/easymock/src/org/easymock/internal/matchers/ |
H A D | Captures.java | 28 private final Capture<T> capture;
field in class:Captures 33 this.capture = captured;
37 buffer.append("capture(").append(capture).append(")");
52 capture.setValue(potentialValue);
|
/external/littlemock/src/com/google/testing/littlemock/ |
H A D | ArgumentCaptor.java | 22 * Simple capture object for use in tests. 26 * @param <T> the type we are going to capture 35 /** Use this argument captor to perform the capture. */ 36 public T capture(); method in interface:ArgumentCaptor
|