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

1 2 3 4 5 6

  /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/chromium_org/third_party/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 virtual void Capture(const DesktopRegion& region) OVERRIDE;
70 void WindowCapturerNull::Capture(const DesktopRegion& region) {
screen_capturer_mac_unittest.cc 73 // Depending on the capture method, the screen may be flipped or not, so
79 TEST_F(ScreenCapturerMacTest, Capture) {
93 capturer_->Capture(DesktopRegion());
96 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 59 // Verify we can capture a window.
62 // exist. Ideally it should create a test window and capture from it, but there
66 TEST_F(WindowCapturerTest, Capture) {
71 // Verify that we can select and capture each window.
76 capturer_->Capture(DesktopRegion());
79 // If we failed to capture a window make sure it no longer exists.
mouse_cursor_monitor_unittest.cc 69 capturer->Capture();
107 capturer->Capture();
120 capturer->Capture();
desktop_and_cursor_composer.h 36 virtual void Capture(const DesktopRegion& region) OVERRIDE;
screen_capturer_mock_objects.h 26 MOCK_METHOD1(Capture, void(const DesktopRegion& region));
screen_capturer_unittest.cc 76 TEST_F(ScreenCapturerTest, Capture) {
89 capturer_->Capture(DesktopRegion());
123 capturer_->Capture(DesktopRegion());
141 capturer_->Capture(DesktopRegion());
  /external/clang/lib/CodeGen/
CGBlocks.h 152 class Capture {
173 static Capture makeIndex(unsigned index) {
174 Capture v;
179 static Capture makeConstant(llvm::Value *value) {
180 Capture v;
206 llvm::DenseMap<const VarDecl*, Capture> Captures;
233 const Capture &getCapture(const VarDecl *var) const {
236 Capture &getCapture(const VarDecl *var) {
237 llvm::DenseMap<const VarDecl*, Capture>::iterator
  /external/chromium_org/chrome/browser/ui/views/
crypto_module_password_dialog_view_unittest.cc 22 void Capture(const std::string& text) {
38 base::Bind(&CryptoModulePasswordDialogViewTest::Capture,
  /external/chromium_org/media/base/
audio_capturer_source.h 19 // captured audio. An implementation will periodically call Capture() on a
27 virtual void Capture(const AudioBus* audio_source,
56 // Sets the capture volume, with range [0.0, 1.0] inclusive.
  /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/chromium_org/remoting/host/
screen_capturer_fake.h 30 virtual void Capture(const webrtc::DesktopRegion& rect) OVERRIDE;
shaped_screen_capturer.cc 38 void ShapedScreenCapturer::Capture(const webrtc::DesktopRegion& region) {
39 screen_capturer_->Capture(region);
ipc_video_frame_capturer.h 35 virtual void Capture(const webrtc::DesktopRegion& region) OVERRIDE;
shaped_screen_capturer.h 28 virtual void Capture(const webrtc::DesktopRegion& region) OVERRIDE;
shaped_screen_capturer_unittest.cc 26 virtual void Capture(const webrtc::DesktopRegion& region) OVERRIDE {
94 capturer.Capture(webrtc::DesktopRegion());
  /external/chromium_org/chrome/common/extensions/docs/server2/
test_util.py 18 class Capture(object):
22 cf = Capture()
  /external/chromium_org/third_party/webrtc/video_engine/
vie_capture_impl.cc 106 LOG(LS_INFO) << "External capture device allocated: " << capture_id;
118 LOG(LS_INFO) << "External capture device, by module, allocated: "
128 ViECapturer* vie_capture = is.Capture(capture_id);
139 LOG(LS_INFO) << "Connect capture id " << capture_id
143 ViECapturer* vie_capture = is.Capture(capture_id);
157 LOG(LS_ERROR) << "Can't connect capture device to a receive device.";
163 LOG(LS_ERROR) << "Channel already connected to capture device.";
203 ViECapturer* vie_capture = is.Capture(frame_provider->Id());
219 ViECapturer* vie_capture = is.Capture(capture_id);
239 ViECapturer* vie_capture = is.Capture(capture_id)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
screen_capturer_win_gdi.h 39 virtual void Capture(const DesktopRegion& region) OVERRIDE;
55 // Capture the current cursor shape.
74 // GDI resources used for screen capture.
  /external/chromium_org/content/renderer/media/webrtc/
webrtc_local_audio_track_adapter_unittest.cc 77 track_->Capture(data.get(), base::TimeDelta(), 255, false, false);
84 track_->Capture(data.get(), base::TimeDelta(), 255, false, false);
  /packages/apps/Browser/
Android.mk 22 # We need the sound recorder for the Media Capture API.

Completed in 564 milliseconds

1 2 3 4 5 6