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

1 2 3 4 5 6

  /external/opencv3/samples/wp8/OcvImageManipulation/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
pch.h 9 #include <Windows.Phone.Media.Capture.h>
10 #include <Windows.Phone.Media.Capture.Native.h
  /external/v8/testing/
gmock-support.h 17 class Capture {
19 Capture() : value_(), has_value_(false) {}
41 explicit CaptureEqMatcher(Capture<T>* capture) : capture_(capture) {}
61 Capture<T>* capture_;
76 // CaptureEq(capture) captures the value passed in during matching as long as it
79 inline Matcher<T> CaptureEq(Capture<T>* capture) {
80 return MakeMatcher(new internal::CaptureEqMatcher<T>(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/webrtc/webrtc/modules/desktop_capture/
desktop_capturer.h 36 // |frame|. If capture has failed for any reason |frame| is set to NULL
50 // Captures next frame. |region| specifies region of the capture target that
54 // the top left corner of the capture target. Pending capture operations are
56 virtual void Capture(const DesktopRegion& region) = 0;
59 // Capture calls. Used to exclude the screenshare notification window for
window_capturer_null.cc 33 void Capture(const DesktopRegion& region) override;
70 void WindowCapturerNull::Capture(const DesktopRegion& region) {
cropping_window_capturer.cc 34 void CroppingWindowCapturer::Capture(const DesktopRegion& region) {
43 screen_capturer_->Capture(region);
45 window_capturer_->Capture(region);
81 window_capturer_->Capture(DesktopRegion());
86 LOG(LS_WARNING) << "ScreenCapturer failed to capture a frame";
screen_capturer_mock_objects.h 25 MOCK_METHOD1(Capture, void(const DesktopRegion& region));
screen_capturer_mac_unittest.cc 71 // Depending on the capture method, the screen may be flipped or not, so
77 TEST_F(ScreenCapturerMacTest, Capture) {
91 capturer_->Capture(DesktopRegion());
94 capturer_->Capture(DesktopRegion());
mouse_cursor_monitor.h 36 // Capture only shape of the mouse cursor, but not position.
39 // Capture both, mouse cursor shape and position.
46 // Called in response to Capture() when the cursor shape has changed. Must
50 // Called in response to Capture(). |position| indicates cursor position
81 // changed since the last call (or when Capture() is called for the first
84 virtual void Capture() = 0;
window_capturer_unittest.cc 54 // Verify we can capture a window.
57 // exist. Ideally it should create a test window and capture from it, but there
61 TEST_F(WindowCapturerTest, Capture) {
66 // Verify that we can select and capture each window.
71 capturer_->Capture(DesktopRegion());
74 // If we failed to capture a window make sure it no longer exists.
mouse_cursor_monitor_unittest.cc 71 capturer->Capture();
110 capturer->Capture();
125 capturer->Capture();
cropping_window_capturer.h 21 // WindowCapturer implementation that uses a screen capturer to capture the
32 void Capture(const DesktopRegion& region) override;
41 // intercept the capture result.
50 // Returns true if it is OK to capture the whole screen and crop to the
desktop_and_cursor_composer.h 36 void Capture(const DesktopRegion& region) override;
screen_capturer_unittest.cc 74 TEST_F(ScreenCapturerTest, Capture) {
85 capturer_->Capture(DesktopRegion());
117 capturer_->Capture(DesktopRegion());
135 capturer_->Capture(DesktopRegion());
desktop_and_cursor_composer.cc 139 void DesktopAndCursorComposer::Capture(const DesktopRegion& region) {
141 mouse_monitor_->Capture();
142 desktop_capturer_->Capture(region);
  /external/opencv3/samples/winrt/ImageManipulations/
AdvancedCapture.xaml.cpp 116 void AdvancedCapture::Failed(Windows::Media::Capture::MediaCapture ^currentCaptureObject, Windows::Media::Capture::MediaCaptureFailedEventArgs^ currentFailure)
132 auto mediaCapture = ref new Windows::Media::Capture::MediaCapture();
134 auto settings = ref new Windows::Media::Capture::MediaCaptureInitializationSettings();
167 mediaCapture->Failed += ref new Windows::Media::Capture::MediaCaptureFailedEventHandler(this, &AdvancedCapture::Failed);
289 Windows::Media::Capture::VideoDeviceCharacteristic charecteristic = mediaCapture->MediaCaptureSettings->VideoDeviceCharacteristic;
291 if((charecteristic != Windows::Media::Capture::VideoDeviceCharacteristic::AllStreamsIdentical) &&
292 (charecteristic != Windows::Media::Capture::VideoDeviceCharacteristic::PreviewPhotoStreamsIdentical) &&
293 (charecteristic != Windows::Media::Capture::VideoDeviceCharacteristic::RecordPhotoStreamsIdentical))
295 Windows::Media::MediaProperties::IMediaEncodingProperties ^props = mediaCapture->VideoDeviceController->GetMediaStreamProperties(Windows::Media::Capture::MediaStreamType::Photo)
    [all...]
AdvancedCapture.xaml.h 52 void Failed(Windows::Media::Capture::MediaCapture ^ mediaCapture, Windows::Media::Capture::MediaCaptureFailedEventArgs ^ args);
76 Windows::Media::Capture::VideoRotation VideoRotationLookup(
79 Platform::Agile<Windows::Media::Capture::MediaCapture> m_mediaCaptureMgr;
  /external/easymock/src/org/easymock/
Capture.java 23 * Will contain what was captured by the <code>capture()</code> matcher. Knows
24 * if something was captured or not (allows to capture a null value).
29 public class Capture<T> implements Serializable {
40 public Capture() {
45 * Constructor allowing to select the capture type
48 * capture type
50 public Capture(CaptureType type) {
55 * Will reset capture to a "nothing captured yet" state
123 throw new IllegalArgumentException("Unknown capture type: " + type);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/mock/
Mocks.java 19 import static org.easymock.EasyMock.capture;
31 import org.easymock.Capture;
51 final Capture<IClasspathEntry[]> capturedEntries = new Capture<IClasspathEntry[]>();
52 Capture<IPath> capturedOutput = new Capture<IPath>();
67 javaProject.setRawClasspath(capture(capturedEntries), isA(IProgressMonitor.class)); method
70 javaProject.setRawClasspath(capture(capturedEntries), capture(capturedOutput), method
74 final Capture<String> capturedCompliance = new Capture<String>()
103 javaProject.setOption(eq(JavaCore.COMPILER_COMPLIANCE), capture(capturedCompliance)); method
105 javaProject.setOption(eq(JavaCore.COMPILER_SOURCE), capture(capturedSource)); method
108 capture(capturedTarget)); method
    [all...]
  /external/clang/lib/CodeGen/
CGBlocks.h 161 class Capture {
192 static Capture makeIndex(unsigned index, CharUnits offset) {
193 Capture v;
199 static Capture makeConstant(llvm::Value *value) {
200 Capture v;
226 llvm::DenseMap<const VarDecl*, Capture> Captures;
254 const Capture &getCapture(const VarDecl *var) const {
257 Capture &getCapture(const VarDecl *var) {
258 llvm::DenseMap<const VarDecl*, Capture>::iterator
  /external/opencv3/modules/videoio/src/
cap_winrt_video.hpp 55 Platform::Agile<Windows::Media::Capture::MediaCapture> m_capture;
  /external/webrtc/webrtc/modules/desktop_capture/win/
screen_capturer_win_gdi.h 37 void Capture(const DesktopRegion& region) override;
51 // Capture the current cursor shape.
64 // GDI resources used for screen capture.
  /external/clang/include/clang/Sema/
ScopeInfo.h 392 class Capture {
393 // There are three categories of capture: capturing 'this', capturing
395 // arbitrary initializer, and don't really capture in the traditional
398 // There are three ways to capture a local variable:
399 // - capture by copy in the C++11 sense,
400 // - capture by reference in the C++11 sense, and
401 // - __block capture.
402 // Lambdas explicitly specify capture by copy or capture by reference.
403 // For blocks, __block capture applies to variables with that annotation
    [all...]
  /external/webrtc/tools/cpu/
cpu_mon.py 24 def Capture(self, sample_count):
47 snapshot.Capture(sample_count)
53 print 'How many seconds to capture per snapshot (enter for 60)?'
  /external/v8/test/unittests/compiler/
control-flow-optimizer-unittest.cc 13 using testing::Capture;
59 Capture<Node*> switch_capture;
90 Capture<Node*> switch_capture;
116 Capture<Node*> branch1_capture, branch2_capture;

Completed in 5289 milliseconds

1 2 3 4 5 6