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

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t052importS1.g 6 this.capture = function(t) {
7 this.gt052importM1.capture(t);
11 a : B { this.capture("S.a") } ;
t052importS2.g 6 this.capture = function(t) {
7 this.gt052importM2.capture(t);
10 a[x] returns [y] : B {this.capture("S.a"); $y="1000";} ;
t052importS3.g 6 this.capture = function(t) {
7 this.gt052importM3.capture(t);
10 this.capture("foo");
t052importS4.g 6 this.capture = function(t) {
7 this.gt052importM4.capture(t);
10 a : b {this.capture("S.a");} ;
t052importS5.g 7 this.capture = function(t) {
8 this.gt052importM5.capture(t);
11 x : A {this.capture("S.x ");} ;
t052importS6.g 6 this.capture = function(t) {
7 this.gt052importM6.capture(t);
10 a : b { this.capture("S.a") } ;
t052importS7.g 6 this.capture = function(t) {
7 this.gt052importM7.capture(t);
10 A : 'a' {this.capture("S.A ");} ;
t052importS8.g 6 this.capture = function(t) {
7 this.gt052importM8.capture(t);
10 A : 'a' {this.capture("S.A");} ;
t052importT4.g 6 this.capture = function(t) {
7 this.gt052importM4.capture(t);
10 a : B {this.capture("T.a");} ; // hidden by S.a
t052importT5.g 7 this.capture = function(t) {
8 this.gt052importM5.capture(t);
11 y : A {this.capture("T.y");} ;
t049treeparsereWalker.g 7 a : ID INT+ PERIOD {this.capture("alt 1");}
8 | ID INT+ SEMI {this.capture("alt 2");}
t052importM8.g 6 A : 'a' {this.capture("M.A ");} ;
t049treeparsercWalker.g 7 b : ID INT {this.capture($ID+" "+$INT+"\n");}
8 | ^(ID INT) {this.capture("^("+$ID+" "+$INT+")");}
  /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_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_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...]
  /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/antlr/antlr-3.4/runtime/Python/tests/
t026actions.g 12 self.capture('init;')
15 self.capture('after;')
20 self.capture('catch;')
24 self.capture('finally;')
32 self.capture('action;')
33 self.capture('\%r \%r \%r \%r \%r \%r \%r \%r;' \% ($text, $type, $line, $pos, $index, $channel, $start, $stop))
35 self.capture(self.foobar)
  /external/easymock/src/org/easymock/
CaptureType.java 19 * Defines how arguments will be captured by a <tt>Capture</tt> object
21 * @see Capture
25 * Do not capture anything
30 * Will capture the argument of the first matching call
35 * Will capture the argument of the last matching call
40 * Will capture, in order, the arguments of each matching calls
  /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/clang/test/CodeGen/
builtins-ms.c 4 void capture(void *);
6 capture(_alloca(n));
8 // CHECK: call void @capture(i8* %[[arg]])
  /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/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...]

Completed in 1259 milliseconds

1 2 3 4 5 6 7 8 91011>>