Searched refs:capture (Results 1 - 25 of 85) sorted by relevance

1234

/external/opencv/otherlibs/highgui/
H A Dcvcap.cpp64 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...]
H A Dcvcap_socket.cpp47 // capture video from a socket connection
213 LOGV("You haven't opened the socket capture yet!");
296 CVCapture_Socket* capture = new CVCapture_Socket; local
297 if ( capture-> open(address, port, width, height) )
298 return capture;
300 delete capture;
H A Dhighgui.h167 /* "black box" capture structure */
175 CVAPI(int) cvGrabFrame( CvCapture* capture ); variable
181 CVAPI(IplImage*) cvRetrieveFrame( CvCapture* capture ); variable
185 CVAPI(IplImage*) cvQueryFrame( CvCapture* capture ); variable
188 CVAPI(void) cvReleaseCapture( CvCapture** capture ); variable
208 /* retrieve or set capture properties */
209 CVAPI(double) cvGetCaptureProperty( CvCapture* capture, int property_id );
210 CVAPI(int) cvSetCaptureProperty( CvCapture* capture, int property_id, double value );
/external/chromium/chrome/browser/resources/shared/js/
H A Devent_tracker.js38 * capture: boolean}}
48 * @param {boolean} capture Whether to invoke during the capture phase.
50 add: function(node, eventType, listener, capture) {
55 capture: capture
58 node.addEventListener(eventType, listener, capture);
92 h.node.removeEventListener(h.eventType, h.listener, h.capture);
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Dupdatechangelogswithreview_unittest.py37 capture = OutputCapture()
40 capture.assert_outputs(self, step._guess_reviewer_from_bug, [75], expected_stderr=expected_stderr)
43 capture = OutputCapture()
48 capture.assert_outputs(self, step.run, [{}])
H A Dclosebugforlanddiff_unittest.py37 capture = OutputCapture()
40 capture.assert_outputs(self, step.run, [{"commit_text" : "Mock commit text"}], expected_stderr=expected_stderr)
H A Dsuggestreviewers_unittest.py42 capture = OutputCapture()
46 capture.assert_outputs(self, step.run, [{"bug_id": "123"}], expected_stdout=expected_stdout, expected_stderr=expected_stderr)
H A Dpreparechangelog_unittest.py40 capture = OutputCapture()
49 capture.assert_outputs(self, step.run, [state])
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp14.cpp3 template<typename T> void capture(const T&);
17 (void)[nc] { }; // expected-error{{capture of variable 'nc' as type 'NonCopyable' calls private copy constructor}}
19 ncr.foo(); // expected-error{{capture of variable 'ncr' as type 'NonCopyable' calls private copy constructor}}
49 capture(array[0]);
63 capture(a);
64 capture(b);
/external/easymock/src/org/easymock/internal/matchers/
H A DCaptures.java28 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 DArgumentCaptor.java22 * 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
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/delegation/
H A Dimport.rb21 def capture(t) method in class:TestImportedGrammars
22 @didr_master.capture(t)
25 a : B { capture("S.a") } ;
53 def capture(t) method in class:TestImportedGrammars
54 @master_2.capture(t)
57 a[x] returns [y] : B {capture("S.a"); $y="1000";} ;
66 s : label=a[3] {capture($label.y)} ;
84 def capture(t) method in class:TestImportedGrammars
85 @master_3.capture(t)
89 capture("whatev
118 def capture(t) method
131 def capture(t) method
162 def capture(t) method
175 def capture(t) method
209 def capture(t) method
237 def capture(t) method
265 def capture(t) method
290 def capture(t) method
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
H A Dscope-003.js54 var self = this; // capture a reference to the global object;
66 capture(this.toString());
71 capture(this.toString());
96 function capture(val) function
/external/regex-re2/re2/
H A Dnfa.cc62 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[
186 AddToThreadq(Threadq* q, int id0, int flag, const char* p, const char** capture) argument
378 FormatCapture(const char** capture) argument
[all...]
/external/webkit/Source/WebCore/platform/
H A DFileChooser.h54 virtual String capture() = 0;
86 String capture() const { return m_client ? m_client->capture() : String(); } function in class:WebCore::FileChooser
/external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/
H A DScreenshotAppState.java28 private boolean capture = false; field in class:ScreenshotAppState
54 capture = true;
80 if (capture){
81 capture = false;
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt026actions.py16 def capture(self, t): member in class:t026actions.parserClass.TParser
36 def capture(self, t): member in class:t026actions.lexerClass.TLexer
/external/webkit/Source/WebCore/bindings/gobject/
H A DGObjectEventListener.cpp34 GObjectEventListener::GObjectEventListener(GObject* object, EventTarget* target, const char* domEventName, GCallback handler, bool capture, void* userData) argument
40 , m_capture(capture)
/external/chromium/base/memory/
H A Dlinked_ptr.h84 explicit linked_ptr(T* ptr = NULL) { capture(ptr); }
113 capture(ptr);
150 void capture(T* ptr) { function in class:linked_ptr
/external/llvm/utils/Target/ARM/
H A Danalyze-match-table.py49 from lit.Util import capture namespace
50 llvm_obj_root = capture(["llvm-config", "--obj-root"])
/external/webkit/Source/JavaScriptCore/yarr/
H A DYarrInterpreter.h163 ByteTerm(Type type, unsigned subpatternId, ByteDisjunction* parenthesesInfo, bool capture, int inputPos) argument
165 , m_capture(capture)
184 ByteTerm(Type type, unsigned subpatternId, bool capture, bool invert, int inputPos) argument
186 , m_capture(capture)
304 bool capture() function in struct:JSC::Yarr::ByteTerm
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h142 explicit linked_ptr(T* ptr = NULL) { capture(ptr); }
170 capture(ptr);
198 void capture(T* ptr) { function in class:testing::internal::linked_ptr
/external/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h142 explicit linked_ptr(T* ptr = NULL) { capture(ptr); }
170 capture(ptr);
198 void capture(T* ptr) { function in class:testing::internal::linked_ptr
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-linked_ptr.h142 explicit linked_ptr(T* ptr = NULL) { capture(ptr); }
170 capture(ptr);
198 void capture(T* ptr) { function in class:testing::internal::linked_ptr
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h142 explicit linked_ptr(T* ptr = NULL) { capture(ptr); }
170 capture(ptr);
207 void capture(T* ptr) { function in class:testing::internal::linked_ptr

Completed in 1607 milliseconds

1234