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

123

/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/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/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/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)
H A DGObjectEventListener.h63 GObjectEventListener(GObject*, EventTarget*, const char* domEventName, GCallback handler, bool capture, void* userData);
/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);
207 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
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dmediaengine.h114 // Sets the default (maximum) codec/resolution and encoder option to capture
139 virtual CaptureResult SetVideoCapture(bool capture) = 0;
218 virtual CaptureResult SetVideoCapture(bool capture) { argument
219 return video_.SetCapture(capture);
324 CaptureResult SetCapture(bool capture) { return CR_SUCCESS; } argument
H A Dchannelmanager.h144 CaptureResult SetVideoCapture(bool capture);
182 CaptureResult SetVideoCapture_w(bool capture);
/external/libpcap/packaging/
H A Dpcap.spec4 Summary: packet capture library
15 Packet-capture library LIBPCAP 0.9.4
/external/android-mock/src/com/google/android/testing/mocking/
H A DAndroidMock.java2349 * Expect any {@code Object} as a parameter to the mocked method, but capture it for later use.
2359 public static <T> T capture(Capture<T> captured) { method in class:AndroidMock
2360 return EasyMock.capture(captured);
2364 * Expect any {@code int/Integer} as a parameter to the mocked method, but capture it for later
2374 public static int capture(Capture<Integer> captured) { method in class:AndroidMock
2375 return EasyMock.capture(captured);
2379 * Expect any {@code long/Long} as a parameter to the mocked method, but capture it for later
2389 public static long capture(Capture<Long> captured) { method in class:AndroidMock
2390 return EasyMock.capture(captured);
2394 * Expect any {@code float/Float} as a parameter to the mocked method, but capture i
2404 public static float capture(Capture<Float> captured) { method in class:AndroidMock
2419 public static double capture(Capture<Double> captured) { method in class:AndroidMock
2434 public static byte capture(Capture<Byte> captured) { method in class:AndroidMock
2449 public static char capture(Capture<Character> captured) { method in class:AndroidMock
[all...]
/external/llvm/utils/lit/lit/
H A DUtil.py15 return int(capture(['sysctl', '-n', 'hw.ncpu']))
42 def capture(args, env=None): function
44 """capture(command) - Run the given command (or argv list) in a shell and
/external/easymock/src/org/easymock/internal/
H A DInvocation.java156 public void addCapture(Captures<Object> capture, Object value) { argument
157 capture.setPotentialValue(value);
158 currentCaptures.add(capture);

Completed in 968 milliseconds

123