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

1 2 3 4 5 6 7 8 91011>>

  /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/chromium_org/native_client_sdk/src/libraries/xray/
xray.c 122 struct XRayTraceCapture* capture,
131 void XRayCheckGuards(struct XRayTraceCapture* capture) {
132 assert(capture->guard0 == XRAY_GUARD_VALUE_0x12345678);
133 assert(capture->guard1 == XRAY_GUARD_VALUE_0x12345678);
134 assert(capture->guard2 == XRAY_GUARD_VALUE_0x87654321);
135 assert(capture->guard3 == XRAY_GUARD_VALUE_0x12345678);
140 struct XRayTraceCapture* capture, int index) {
143 index = capture->buffer_size - 1;
149 struct XRayTraceCapture* capture, int index) {
151 if (index >= capture->buffer_size
327 struct XRayTraceCapture* capture = g_xray_capture; local
353 struct XRayTraceCapture* capture = g_xray_capture; local
412 struct XRayTraceCapture* capture = g_xray_capture; local
444 struct XRayTraceCapture* capture = g_xray_capture; local
717 struct XRayTraceCapture* capture; local
    [all...]
xray.h 46 XRAY_NO_INSTRUMENT void XRayShutdown(struct XRayTraceCapture* capture);
47 XRAY_NO_INSTRUMENT void XRayStartFrame(struct XRayTraceCapture* capture);
48 XRAY_NO_INSTRUMENT void XRayEndFrame(struct XRayTraceCapture* capture);
50 struct XRayTraceCapture* capture, uint32_t filter);
51 XRAY_NO_INSTRUMENT void XRaySaveReport(struct XRayTraceCapture* capture,
55 XRAY_NO_INSTRUMENT void XRayReport(struct XRayTraceCapture* capture,
62 struct XRayTraceCapture* capture);
90 inline void XRayShutdown(struct XRayTraceCapture* capture) {}
91 inline void XRayStartFrame(struct XRayTraceCapture* capture) {}
92 inline void XRayEndFrame(struct XRayTraceCapture* capture) {}
    [all...]
report.c 28 void XRayTraceReport(struct XRayTraceCapture* capture,
39 struct XRaySymbolTable* symbols = XRayGetSymbolTable(capture);
54 total = XRayFrameGetTotalTicks(capture, frame);
55 start = XRayFrameGetTraceStartIndex(capture, frame);
56 end = XRayFrameGetTraceEndIndex(capture, frame);
59 if (!XRayTraceIsAnnotation(capture, index)) {
62 struct XRayTraceBufferEntry* e = XRayTraceGetEntry(capture, index);
73 XRayTraceCopyToString(capture, annotation_index, annotation);
82 index = XRayTraceNextEntry(capture, index);
96 void XRayFrameReport(struct XRayTraceCapture* capture, FILE* f)
    [all...]
xray_priv.h 120 XRAY_NO_INSTRUMENT void XRayCheckGuards(struct XRayTraceCapture* capture);
123 struct XRayTraceCapture* capture, int index);
125 struct XRayTraceCapture* capture, int i);
127 struct XRayTraceCapture* capture, int i);
129 struct XRayTraceCapture* capture, int index);
131 struct XRayTraceCapture* capture, char* src);
133 struct XRayTraceCapture* capture, int index, char* dst);
135 struct XRayTraceCapture* capture, int index);
137 struct XRayTraceCapture* capture, int index);
139 XRAY_NO_INSTRUMENT void XRayFrameMakeLabel(struct XRayTraceCapture* capture,
    [all...]
browser.c 57 void XRayBrowserTraceReport(struct XRayTraceCapture* capture) {
61 struct XRaySymbolTable* symbols = XRayGetSymbolTable(capture);
63 int32_t thread_id = XRayGetSavedThreadID(capture);
65 int head = XRayFrameGetHead(capture);
66 int frame = XRayFrameGetTail(capture);
70 capture, frame);
72 capture, frame);
81 int start = XRayFrameGetTraceStartIndex(capture, frame);
82 int end = XRayFrameGetTraceEndIndex(capture, frame);
96 for(i = start; i != end; i = XRayTraceNextEntry(capture, i))
    [all...]
  /external/chromium_org/media/video/capture/
video_capture_proxy.cc 5 #include "media/video/capture/video_capture_proxy.h"
16 media::VideoCapture* capture) {
18 state.started = capture->CaptureStarted();
19 state.width = capture->CaptureWidth();
20 state.height = capture->CaptureHeight();
21 state.frame_rate = capture->CaptureFrameRate();
39 void VideoCaptureHandlerProxy::OnStarted(VideoCapture* capture) {
43 capture,
44 GetState(capture)));
47 void VideoCaptureHandlerProxy::OnStopped(VideoCapture* capture) {
    [all...]
video_capture_proxy.h 10 #include "media/video/capture/video_capture.h"
19 // process, the VideoCaptureImpl calls its handler on a "Video Capture" thread,
23 // Since the VideoCapture is living on the "Video Capture" thread, querying its
48 virtual void OnStarted(VideoCapture* capture) OVERRIDE;
49 virtual void OnStopped(VideoCapture* capture) OVERRIDE;
50 virtual void OnPaused(VideoCapture* capture) OVERRIDE;
51 virtual void OnError(VideoCapture* capture, int error_code) OVERRIDE;
52 virtual void OnRemoved(VideoCapture* capture) OVERRIDE;
54 VideoCapture* capture,
57 VideoCapture* capture,
    [all...]
video_capture.h 6 // capture devices.
15 #include "media/video/capture/video_capture_types.h"
50 // Notify client that video capture has been started.
51 virtual void OnStarted(VideoCapture* capture) = 0;
53 // Notify client that video capture has been stopped.
54 virtual void OnStopped(VideoCapture* capture) = 0;
56 // Notify client that video capture has been paused.
57 virtual void OnPaused(VideoCapture* capture) = 0;
59 // Notify client that video capture has hit some error |error_code|.
60 virtual void OnError(VideoCapture* capture, int error_code) = 0
    [all...]
  /external/chromium_org/chrome/browser/resources/net_internals/
status_view.css 6 .capture-status-view {
18 #capture-status-view {
23 .capture-status-view-link,
24 .capture-status-view-link:visited,
25 .capture-status-view-link:active {
30 .capture-status-view-link:hover {
36 #capture-status-view-actions {
45 .capture-status-view-arrow {
50 .capture-status-view-arrow::after {
  /external/chromium_org/content/renderer/media/
rtc_video_capture_delegate.cc 52 void RtcVideoCaptureDelegate::OnStarted(media::VideoCapture* capture) {
56 void RtcVideoCaptureDelegate::OnStopped(media::VideoCapture* capture) {
59 void RtcVideoCaptureDelegate::OnPaused(media::VideoCapture* capture) {
63 void RtcVideoCaptureDelegate::OnError(media::VideoCapture* capture,
69 this, capture));
72 void RtcVideoCaptureDelegate::OnRemoved(media::VideoCapture* capture) {
77 this, capture));
86 media::VideoCapture* capture,
91 this, capture, buf));
95 media::VideoCapture* capture,
    [all...]
rtc_video_capture_delegate.h 12 #include "media/video/capture/video_capture.h"
20 // from Chrome's video capture implementation.
46 virtual void OnStarted(media::VideoCapture* capture) OVERRIDE;
47 virtual void OnStopped(media::VideoCapture* capture) OVERRIDE;
48 virtual void OnPaused(media::VideoCapture* capture) OVERRIDE;
49 virtual void OnError(media::VideoCapture* capture, int error_code) OVERRIDE;
50 virtual void OnRemoved(media::VideoCapture* capture) OVERRIDE;
52 media::VideoCapture* capture,
55 media::VideoCapture* capture,
58 media::VideoCapture* capture,
    [all...]
  /external/easymock/src/org/easymock/internal/matchers/
Captures.java 20 import org.easymock.Capture;
28 private final Capture<T> capture; field in class:Captures
32 public Captures(Capture<T> captured) {
33 this.capture = captured;
37 buffer.append("capture(").append(capture).append(")");
52 capture.setValue(potentialValue);
  /external/littlemock/src/com/google/testing/littlemock/
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
  /external/chromium_org/content/renderer/pepper/
pepper_video_capture_host.h 13 #include "media/video/capture/video_capture.h"
14 #include "media/video/capture/video_capture_types.h"
39 void OnInitialized(media::VideoCapture* capture, bool succeeded);
42 virtual void OnStarted(media::VideoCapture* capture) OVERRIDE;
43 virtual void OnStopped(media::VideoCapture* capture) OVERRIDE;
44 virtual void OnPaused(media::VideoCapture* capture) OVERRIDE;
45 virtual void OnError(media::VideoCapture* capture, int error_code) OVERRIDE;
46 virtual void OnRemoved(media::VideoCapture* capture) OVERRIDE;
48 media::VideoCapture* capture,
51 media::VideoCapture* capture,
    [all...]
pepper_platform_video_capture.cc 15 #include "media/video/capture/video_capture_proxy.h"
120 void PepperPlatformVideoCapture::OnStarted(VideoCapture* capture) {
122 handler_->OnStarted(capture);
125 void PepperPlatformVideoCapture::OnStopped(VideoCapture* capture) {
127 handler_->OnStopped(capture);
130 void PepperPlatformVideoCapture::OnPaused(VideoCapture* capture) {
132 handler_->OnPaused(capture);
135 void PepperPlatformVideoCapture::OnError(VideoCapture* capture,
138 handler_->OnError(capture, error_code);
141 void PepperPlatformVideoCapture::OnRemoved(VideoCapture* capture) {
    [all...]
pepper_platform_video_capture.h 14 #include "media/video/capture/video_capture.h"
15 #include "media/video/capture/video_capture_types.h"
54 virtual void OnStarted(VideoCapture* capture) OVERRIDE;
55 virtual void OnStopped(VideoCapture* capture) OVERRIDE;
56 virtual void OnPaused(VideoCapture* capture) OVERRIDE;
57 virtual void OnError(VideoCapture* capture, int error_code) OVERRIDE;
58 virtual void OnRemoved(VideoCapture* capture) OVERRIDE;
59 virtual void OnBufferReady(VideoCapture* capture,
62 VideoCapture* capture,
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/delegation/
import.rb 21 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("whatevs"
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/chromium_org/content/public/common/
file_chooser_params.h 50 // See http://www.w3.org/TR/html-media-capture for more information.
52 bool capture; member in struct:content::FileChooserParams
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
commit_unittest.py 40 capture = OutputCapture()
54 capture.assert_outputs(self, step.run, [state], expected_logs=expected_logs)
62 capture.assert_outputs(self, step.run, [state], expected_logs=expected_logs)
65 self.assertRaises(ScriptError, capture.assert_outputs, self, step.run, [state])
  /external/chromium_org/third_party/WebKit/public/web/
WebFileChooserParams.h 67 // See http://www.w3.org/TR/html-media-capture/ for the semantics of the
68 // capture attribute. If |useMediaCapture| is true, the media types
70 // environment using a media capture mechanism. |capture| is deprecated and
72 WebString capture; member in struct:WebKit::WebFileChooserParams
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p14.cpp 3 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/chromium_org/ppapi/generators/
idl_log.py 24 self.capture = False
31 if self.capture:
37 if self.capture:
43 if self.capture: self.log.append(msg)
50 self.capture = enable
  /external/chromium_org/third_party/re2/re2/
nfa.cc 62 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[a.j] = a.cap_j
    [all...]
  /external/regex-re2/re2/
nfa.cc 62 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[a.j] = a.cap_j
    [all...]

Completed in 1058 milliseconds

1 2 3 4 5 6 7 8 91011>>