Searched defs:Capture (Results 1 - 25 of 30) sorted by relevance

12

/external/easymock/src/org/easymock/
H A DCapture.java29 public class Capture<T> implements Serializable { class in inherits:Serializable
40 public Capture() { method in class:Capture
50 public Capture(CaptureType type) { method in class:Capture
/external/webrtc/tools/cpu/
H A Dcpu_mon.py24 def Capture(self, sample_count): member in class:CpuSnapshot
47 snapshot.Capture(sample_count)
/external/v8/testing/
H A Dgmock-support.h17 class Capture { class in namespace:testing
19 Capture() : value_(), has_value_(false) {} function in class:testing::Capture
41 explicit CaptureEqMatcher(Capture<T>* capture) : capture_(capture) {}
61 Capture<T>* capture_;
79 inline Matcher<T> CaptureEq(Capture<T>* capture) {
/external/webrtc/webrtc/modules/desktop_capture/
H A Dwindow_capturer_null.cc33 void Capture(const DesktopRegion& region) override;
70 void WindowCapturerNull::Capture(const DesktopRegion& region) { function in class:webrtc::__anon30905::WindowCapturerNull
H A Dcropping_window_capturer.cc34 void CroppingWindowCapturer::Capture(const DesktopRegion& region) { function in class:webrtc::CroppingWindowCapturer
43 screen_capturer_->Capture(region);
45 window_capturer_->Capture(region);
81 window_capturer_->Capture(DesktopRegion());
H A Ddesktop_and_cursor_composer.cc139 void DesktopAndCursorComposer::Capture(const DesktopRegion& region) { function in class:webrtc::DesktopAndCursorComposer
141 mouse_monitor_->Capture();
142 desktop_capturer_->Capture(region);
H A Dmouse_cursor_monitor_win.cc30 void Capture() override;
83 void MouseCursorMonitorWin::Capture() { function in class:webrtc::MouseCursorMonitorWin
H A Dwindow_capturer_win.cc93 void Capture(const DesktopRegion& region) override;
152 void WindowCapturerWin::Capture(const DesktopRegion& region) { function in class:webrtc::__anon30906::WindowCapturerWin
H A Dmouse_cursor_monitor_x11.cc67 void Capture() override;
130 void MouseCursorMonitorX11::Capture() { function in class:webrtc::MouseCursorMonitorX11
H A Dscreen_capturer_x11.cc47 void Capture(const DesktopRegion& region) override;
61 // Capture screen pixels to the current buffer in the queue. In the DAMAGE
235 void ScreenCapturerLinux::Capture(const DesktopRegion& region) { function in class:webrtc::__anon30901::ScreenCapturerLinux
341 // Capture the damaged portions of the desktop.
H A Dwindow_capturer_x11.cc101 void Capture(const DesktopRegion& region) override;
280 void WindowCapturerLinux::Capture(const DesktopRegion& region) { function in class:webrtc::__anon30907::WindowCapturerLinux
/external/webrtc/webrtc/modules/desktop_capture/win/
H A Dscreen_capturer_win_gdi.cc73 void ScreenCapturerWinGdi::Capture(const DesktopRegion& region) { function in class:webrtc::ScreenCapturerWinGdi
H A Dscreen_capturer_win_magnifier.cc84 void ScreenCapturerWinMagnifier::Capture(const DesktopRegion& region) { function in class:webrtc::ScreenCapturerWinMagnifier
128 fallback_capturer_->Capture(region);
/external/swiftshader/src/D3D8/
H A DDirect3DStateBlock8.cpp60 if(type == D3DSBT_ALL) // Capture remaining states
182 long Direct3DStateBlock8::Capture() function in class:D3D8::Direct3DStateBlock8
/external/clang/lib/CodeGen/
H A DCGBlocks.h161 class Capture { class in class:clang::CodeGen::CGBlockInfo
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
H A DCGBlocks.cpp195 const BlockDecl::Capture *Capture; // null for 'this' member in struct:__anon1549::BlockLayoutChunk
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)});
224 if (chunk.Capture && chunk.Capture->isByRef())
385 info.Captures[variable] = CGBlockInfo::Capture
[all...]
H A DCGDebugInfo.cpp1007 // For C++11 Lambdas a Field will be the same as a Capture, but the Capture
3342 const BlockDecl::Capture *Capture; member in struct:__anon1568::BlockLayoutChunk
3400 chunk.Capture = nullptr;
3407 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
3416 chunk.Capture = &capture;
3427 const BlockDecl::Capture *capture = i->Capture;
/external/swiftshader/src/D3D9/
H A DDirect3DStateBlock9.cpp72 if(type == D3DSBT_ALL) // Capture remaining states
323 long Direct3DStateBlock9::Capture() function in class:D3D9::Direct3DStateBlock9
/external/clang/include/clang/Sema/
H A DInitialization.h158 struct C Capture; member in union:clang::InitializedEntity::__anon1325
193 Capture.VarID = VarID;
194 Capture.Location = Loc.getRawEncoding();
422 return Capture.VarID->getName();
428 return SourceLocation::getFromRawEncoding(Capture.Location);
H A DScopeInfo.h410 class Capture { class in class:clang::sema::CapturingScopeInfo
451 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested, function in class:clang::sema::CapturingScopeInfo::Capture
461 Capture(IsThisCapture, bool IsNested, SourceLocation Loc, function in class:clang::sema::CapturingScopeInfo::Capture
528 SmallVector<Capture, 4> Captures;
541 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc,
547 Captures.push_back(Capture(/*Var*/ nullptr, /*isBlock*/ false,
563 Capture &getCXXThisCapture() {
578 Capture &getCapture(VarDecl *Var) {
583 const Capture &getCapture(VarDecl *Var) const {
880 Captures.push_back(Capture(Captur
[all...]
/external/clang/lib/AST/
H A DStmt.cpp959 CapturedStmt::Capture::Capture(SourceLocation Loc, VariableCaptureKind Kind, function in class:CapturedStmt::Capture
987 CapturedStmt::Capture::getCaptureKind() const {
991 VarDecl *CapturedStmt::Capture::getCapturedVar() const {
997 CapturedStmt::Capture *CapturedStmt::getStoredCaptures() const {
1000 // Offset of the first Capture object.
1001 unsigned FirstCaptureOffset = llvm::alignTo(Size, llvm::alignOf<Capture>());
1003 return reinterpret_cast<Capture *>(
1009 ArrayRef<Capture> Captures,
1027 // Copy all Capture object
[all...]
/external/clang/lib/Sema/
H A DSemaLambda.cpp1374 Sema &S, LambdaScopeInfo::Capture &Capture,
1378 assert(Capture.isVariableCapture() && "not a variable capture");
1380 auto *Var = Capture.getVariable();
1381 SourceLocation Loc = Capture.getLocation();
1529 LambdaScopeInfo::Capture From = LSI->Captures[I];
1705 BlockDecl::Capture Capture(/*Variable=*/CapVar, /*ByRef=*/false,
1707 Block->setCaptures(Context, Capture, /*CapturesCXXThis=*/false);
1373 performLambdaVarCaptureInitialization( Sema &S, LambdaScopeInfo::Capture &Capture, FieldDecl *Field, SmallVectorImpl<VarDecl *> &ArrayIndexVars, SmallVectorImpl<unsigned> &ArrayIndexStarts) argument
H A DSemaOpenMP.cpp167 void addLoopControlVariable(ValueDecl *D, VarDecl *Capture);
531 void DSAStackTy::addLoopControlVariable(ValueDecl *D, VarDecl *Capture) { argument
535 std::make_pair(D, LCDeclInfo(Stack.back().LCVMap.size() + 1, Capture)));
4373 tryBuildCapture(Sema &SemaRef, Expr *Capture,
4376 return ExprResult(Capture);
4377 if (Capture->isEvaluatable(SemaRef.Context, Expr::SE_AllowSideEffects))
4379 Capture->IgnoreImpCasts(), Capture->getType(), Sema::AA_Converting,
4381 auto I = Captures.find(Capture);
4383 return buildCapture(SemaRef, Capture,
[all...]
/external/clang/include/clang/AST/
H A DDeclCXX.h528 typedef LambdaCapture Capture; typedef in struct:clang::CXXRecordDecl::LambdaDefinitionData
559 /// \brief The Default Capture.
580 Capture *Captures;
H A DStmt.h2019 class Capture { class in class:clang::CapturedStmt
2032 Capture(SourceLocation Loc, VariableCaptureKind Kind,
2079 CapturedStmt(Stmt *S, CapturedRegionKind Kind, ArrayRef<Capture> Captures,
2091 Capture *getStoredCaptures() const;
2098 ArrayRef<Capture> Captures,
2135 typedef Capture *capture_iterator;
2136 typedef const Capture *const_capture_iterator;

Completed in 1717 milliseconds

12