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

1 2 3 4 5 6 7 8 9

  /external/clang/test/CodeGen/
builtins-ms.c 4 void capture(void *);
6 capture(_alloca(n));
8 // CHECK: call void @capture(i8* %[[arg]])
  /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, int index);
124 struct XRayTraceCapture* capture, int index);
128 struct XRayTraceCapture* capture,
137 void XRayCheckGuards(struct XRayTraceCapture* capture) {
138 assert(capture->guard0 == XRAY_GUARD_VALUE_0x12345678);
139 assert(capture->guard1 == XRAY_GUARD_VALUE_0x12345678);
140 assert(capture->guard2 == XRAY_GUARD_VALUE_0x87654321);
141 assert(capture->guard3 == XRAY_GUARD_VALUE_0x12345678);
146 struct XRayTraceCapture* capture, int index) {
149 index = capture->buffer_size - 1
333 struct XRayTraceCapture* capture = g_xray_capture; local
359 struct XRayTraceCapture* capture = g_xray_capture; local
418 struct XRayTraceCapture* capture = g_xray_capture; local
450 struct XRayTraceCapture* capture = g_xray_capture; local
723 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 29 void XRayTraceReport(struct XRayTraceCapture* capture,
40 struct XRaySymbolTable* symbols = XRayGetSymbolTable(capture);
55 total = XRayFrameGetTotalTicks(capture, frame);
56 start = XRayFrameGetTraceStartIndex(capture, frame);
57 end = XRayFrameGetTraceEndIndex(capture, frame);
60 if (!XRayTraceIsAnnotation(capture, index)) {
63 struct XRayTraceBufferEntry* e = XRayTraceGetEntry(capture, index);
75 XRayTraceCopyToString(capture, annotation_index, annotation);
84 index = XRayTraceNextEntry(capture, index);
102 void XRayFrameReport(struct XRayTraceCapture* capture, FILE* f)
    [all...]
xray_priv.h 119 struct XRayTraceCapture* capture);
121 XRAY_NO_INSTRUMENT void XRayCheckGuards(struct XRayTraceCapture* capture);
124 struct XRayTraceCapture* capture, int index);
126 struct XRayTraceCapture* capture, int i);
128 struct XRayTraceCapture* capture, int i);
130 struct XRayTraceCapture* capture, int index);
132 struct XRayTraceCapture* capture, char* src);
134 struct XRayTraceCapture* capture, int index, char* dst);
136 struct XRayTraceCapture* capture, int index);
138 struct XRayTraceCapture* capture, int index)
    [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/third_party/webrtc/modules/video_capture/windows/
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/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/third_party/webrtc/base/
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)]]
    [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/third_party/webrtc/video_engine/test/libvietest/testbed/
tb_capture_device.cc 48 int error = ViE.capture->AllocateCaptureDevice(*vcpm_, captureId);
62 EXPECT_EQ(0, ViE.capture->StartCapture(captureId));
67 EXPECT_EQ(0, ViE.capture->StopCapture(captureId));
68 EXPECT_EQ(0, ViE.capture->ReleaseCaptureDevice(captureId));
75 EXPECT_EQ(0, ViE.capture->ConnectCaptureDevice(captureId, videoChannel));
80 EXPECT_EQ(0, ViE.capture->DisconnectCaptureDevice(videoChannel));
tb_interfaces.cc 19 capture(NULL),
40 capture = webrtc::ViECapture::GetInterface(video_engine);
41 EXPECT_TRUE(capture != NULL);
65 EXPECT_EQ(0, capture->Release());
66 capture = NULL;
  /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/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);
99 void capture(X &x) { function in namespace:rdar14468891
100 [x]() {}(); // expected-error{{by-copy capture of value of abstract type 'rdar14468891::X'}}
108 auto& y = param; // expected-error{{by-copy capture of variable 'param' with incomplete type 'const rdar15560464::X'}}
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
vie_autotest_capture.cc 122 ViETest::Log("Number of capture devices %d",
125 << "This test requires a capture device (i.e. a webcam)";
143 ViETest::Log("Found capture device %s\nUnique name %s",
155 ViETest::Log("Capture capability %d (of %u)", cap_index + 1,
169 // Capture Capability Functions are not supported on WEBRTC_MAC.
191 EXPECT_EQ(0, video_engine.capture->AllocateCaptureDevice(
207 // This tests that the capture device properly aligns to a
220 EXPECT_EQ(0, video_engine.capture->StartCapture(
230 << "Should capture at least some frames";
236 EXPECT_EQ(0, video_engine.capture->StopCapture
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
MyanmarTest.java 47 Bitmap bitmapA = cviewA.capture(textA);
49 Bitmap bitmapB = cviewB.capture(textB);
54 Bitmap bitmapC = cviewC.capture(textC);
70 Bitmap capture(String text) { method in class:MyanmarTest.CaptureTextView
EmojiTest.java 75 mBitmapA = ccanvas.capture(Character.toChars(comparedCodePoints[i][0]));
76 mBitmapB = ccanvas.capture(Character.toChars(comparedCodePoints[i][1]));
82 mBitmapA = cviewA.capture(Character.toChars(comparedCodePoints[i][0]));
84 mBitmapB = cviewB.capture(Character.toChars(comparedCodePoints[i][1]));
89 mBitmapA = cedittextA.capture(Character.toChars(comparedCodePoints[i][0]));
91 mBitmapB = cedittextB.capture(Character.toChars(comparedCodePoints[i][1]));
100 mBitmapA = cwebview.capture(Character.toChars(comparedCodePoints[i][0]));
101 mBitmapB = cwebview.capture(Character.toChars(comparedCodePoints[i][1]));
160 Bitmap capture(char c[]) { method in class:EmojiTest.CaptureCanvas
182 Bitmap capture(char c[]) method in class:EmojiTest.CaptureTextView
205 Bitmap capture(char c[]) { method in class:EmojiTest.CaptureEditText
231 Bitmap capture(char c[]) { method in class:EmojiTest.CaptureWebView
    [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/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:blink::WebFileChooserParams
  /external/chromium_org/v8/testing/
gmock-support.h 13 class Capture {
15 Capture() : value_(), has_value_(false) {}
37 explicit CaptureEqMatcher(Capture<T>* capture) : capture_(capture) {}
57 Capture<T>* capture_;
63 // CaptureEq(capture) captures the value passed in during matching as long as it
66 Matcher<T> CaptureEq(Capture<T>* capture) {
67 return MakeMatcher(new internal::CaptureEqMatcher<T>(capture));
    [all...]
  /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/chromium_org/third_party/webrtc/video_engine/test/libvietest/include/
tb_interfaces.h 39 webrtc::ViECapture* capture; member in class:TbInterfaces
  /cts/libs/deviceutillegacy/src/android/webkit/cts/
WebViewOnUiThread.java 249 public Boolean capture() {
258 public Boolean capture() {
267 public Boolean capture() {
276 public Boolean capture() {
535 public String capture() {
544 public WebSettings capture() {
553 public WebBackForwardList capture() {
562 public Bitmap capture() {
571 public String capture() {
580 public Integer capture() {
    [all...]

Completed in 740 milliseconds

1 2 3 4 5 6 7 8 9