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

1 2 3

  /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);
  /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/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/webrtc/webrtc/modules/desktop_capture/
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";
window_capturer_null.cc 33 void Capture(const DesktopRegion& region) override;
70 void WindowCapturerNull::Capture(const DesktopRegion& region) {
desktop_and_cursor_composer.cc 139 void DesktopAndCursorComposer::Capture(const DesktopRegion& region) {
141 mouse_monitor_->Capture();
142 desktop_capturer_->Capture(region);
mouse_cursor_monitor_win.cc 30 void Capture() override;
83 void MouseCursorMonitorWin::Capture() {
mouse_cursor_monitor_x11.cc 67 void Capture() override;
130 void MouseCursorMonitorX11::Capture() {
window_capturer_win.cc 93 void Capture(const DesktopRegion& region) override;
152 void WindowCapturerWin::Capture(const DesktopRegion& region) {
screen_capturer_x11.cc 47 void Capture(const DesktopRegion& region) override;
61 // Capture screen pixels to the current buffer in the queue. In the DAMAGE
65 // differences between this and the previous capture.
110 // Invalid region from the previous capture. This is used to synchronize the
235 void ScreenCapturerLinux::Capture(const DesktopRegion& region) {
341 // Capture the damaged portions of the desktop.
355 // Doing full-screen polling, or this is the first capture after a
356 // screen-resolution change. In either case, need a full-screen capture.
392 // capture the entire desktop. Note that encoder may be reading from the
window_capturer_x11.cc 101 void Capture(const DesktopRegion& region) override;
280 void WindowCapturerLinux::Capture(const DesktopRegion& region) {
290 // Without the Xcomposite extension we capture when the whole window is
  /external/webrtc/webrtc/modules/desktop_capture/win/
screen_capturer_win_gdi.cc 73 void ScreenCapturerWinGdi::Capture(const DesktopRegion& region) {
87 // Make sure the GDI capture resources are up-to-date.
176 // So we can continue capture screen bits, just from the wrong desktop.
208 // Create GDI device contexts to capture from the desktop into memory.
screen_capturer_win_magnifier.cc 84 void ScreenCapturerWinMagnifier::Capture(const DesktopRegion& region) {
107 // So we can continue capture screen bits, just from the wrong desktop.
128 fallback_capturer_->Capture(region);
  /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
CGBlocks.cpp 190 /// A chunk of data that we actually have to capture in the block.
195 const BlockDecl::Capture *Capture; // null for 'this'
200 const BlockDecl::Capture *capture,
203 Capture(capture), Type(type) {}
207 if (!Capture) {
211 info.Captures.insert({Capture->getVariable(),
212 CGBlockInfo::Capture::makeIndex(index, offset)})
589 CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
763 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1002 const CGBlockInfo::Capture &capture = BlockInfo->getCapture(variable); local
1224 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1265 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1376 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1549 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
    [all...]
CGDebugInfo.cpp 3226 const BlockDecl::Capture *capture = i->Capture; local
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 948 CapturedStmt::Capture::Capture(SourceLocation Loc, VariableCaptureKind Kind,
953 assert(!Var && "'this' capture cannot have a variable!");
970 "Variable-length array type capture cannot have a variable!");
975 CapturedStmt::Capture *CapturedStmt::getStoredCaptures() const {
978 // Offset of the first Capture object.
980 llvm::RoundUpToAlignment(Size, llvm::alignOf<Capture>());
982 return reinterpret_cast<Capture *>(
988 ArrayRef<Capture> Captures,
    [all...]
  /external/regex-re2/re2/
compile.cc 158 Frag Capture(Frag a, int n);
448 Frag Compiler::Capture(Frag a, int n) {
830 return Capture(child_frags[0], re->cap());
889 *pre = Regexp::Capture(sub, re->parse_flags(), re->cap());
937 *pre = Regexp::Capture(sub, re->parse_flags(), re->cap());
    [all...]
regexp.cc 266 Regexp* Regexp::Capture(Regexp* sub, ParseFlags flags, int cap) {
475 "invalid named capture group",
529 // Walker class to build map of named capture groups and their indices.
573 // Walker class to build map from capture group indices to their names.
  /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...]
Initialization.h 125 /// \brief The source location at which the capture occurs.
158 struct C Capture;
188 /// \brief Create the initialization entity for a lambda capture.
193 Capture.VarID = VarID;
194 Capture.Location = Loc.getRawEncoding();
317 /// \brief Create the initialization entity for a lambda capture.
418 /// \brief For a lambda capture, return the capture's name.
420 assert(getKind() == EK_LambdaCapture && "Not a lambda capture!");
421 return Capture.VarID->getName()
    [all...]
  /external/clang/include/clang/AST/
ExprCXX.h     [all...]
DeclCXX.h 531 typedef LambdaCapture Capture;
562 /// \brief The Default Capture.
583 Capture *Captures;
    [all...]
Stmt.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 145 /// \brief Class used to capture the result of searching for an existing
    [all...]

Completed in 755 milliseconds

1 2 3