Home
last modified time | relevance | path

Searched refs:Capture (Results 1 – 25 of 290) sorted by relevance

12345678910>>...12

/external/skia/src/core/
DSkTextBlobTrace.h31 class Capture {
33 Capture();
34 ~Capture();
44 Capture(const Capture&) = delete;
45 Capture& operator=(const Capture&) = delete;
DSkTextBlobTrace.cpp80 SkTextBlobTrace::Capture::Capture() : fTypefaceSet(new SkRefCntSet) { in Capture() function in SkTextBlobTrace::Capture
84 SkTextBlobTrace::Capture::~Capture() = default;
86 void SkTextBlobTrace::Capture::capture(const SkGlyphRunList& glyphRunList, const SkPaint& paint) { in capture()
97 void SkTextBlobTrace::Capture::dump(SkWStream* dst) const { in dump()
/external/pcre/dist2/testdata/
Dtestoutput12-3221 Capture group count = 0
33 Capture group count = 0
45 Capture group count = 0
57 Capture group count = 0
69 Capture group count = 0
81 Capture group count = 0
93 Capture group count = 0
105 Capture group count = 0
117 Capture group count = 0
129 Capture group count = 0
[all …]
Dtestoutput250 Capture group count = 1
55 Capture group count = 0
72 Capture group count = 0
88 Capture group count = 0
94 Capture group count = 0
100 Capture group count = 0
106 Capture group count = 1
111 Capture group count = 0
162 Capture group count = 0
168 Capture group count = 0
[all …]
Dtestoutput10254 Capture group count = 0
267 Capture group count = 0
280 Capture group count = 0
293 Capture group count = 0
306 Capture group count = 0
319 Capture group count = 0
332 Capture group count = 0
345 Capture group count = 0
358 Capture group count = 0
371 Capture group count = 0
[all …]
Dtestoutput12-1621 Capture group count = 0
33 Capture group count = 0
46 Capture group count = 0
58 Capture group count = 0
70 Capture group count = 0
83 Capture group count = 0
96 Capture group count = 0
109 Capture group count = 0
121 Capture group count = 0
133 Capture group count = 0
[all …]
Dtestoutput1510 Capture group count = 1
27 Capture group count = 1
120 Capture group count = 0
140 Capture group count = 1
153 Capture group count = 1
163 Capture group count = 1
176 Capture group count = 1
189 Capture group count = 1
199 Capture group count = 1
306 Capture group count = 0
[all …]
/external/clang/lib/CodeGen/
DCGBlocks.h161 class Capture {
192 static Capture makeIndex(unsigned index, CharUnits offset) { in makeIndex()
193 Capture v; in makeIndex()
199 static Capture makeConstant(llvm::Value *value) { in makeConstant()
200 Capture v; in makeConstant()
226 llvm::DenseMap<const VarDecl*, Capture> Captures;
254 const Capture &getCapture(const VarDecl *var) const { in getCapture()
257 Capture &getCapture(const VarDecl *var) { in getCapture()
258 llvm::DenseMap<const VarDecl*, Capture>::iterator in getCapture()
/external/llvm-project/clang/lib/CodeGen/
DCGBlocks.h160 class Capture {
200 static Capture makeIndex(unsigned index, CharUnits offset, in makeIndex()
202 Capture v; in makeIndex()
209 static Capture makeConstant(llvm::Value *value) { in makeConstant()
210 Capture v; in makeConstant()
242 llvm::DenseMap<const VarDecl*, Capture> Captures;
266 const Capture &getCapture(const VarDecl *var) const { in getCapture()
269 Capture &getCapture(const VarDecl *var) { in getCapture()
270 llvm::DenseMap<const VarDecl*, Capture>::iterator in getCapture()
DCGBlocks.cpp85 const BlockDecl::Capture *CI;
86 const CGBlockInfo::Capture *Capture; member
92 const BlockDecl::Capture &CI, in BlockCaptureManagedEntity()
93 const CGBlockInfo::Capture &Capture) in BlockCaptureManagedEntity()
95 DisposeFlags(DisposeFlags), CI(&CI), Capture(&Capture) {} in BlockCaptureManagedEntity()
98 return Capture->getOffset() < Other.Capture->getOffset(); in operator <()
139 Name += llvm::to_string(E.Capture->getOffset().getQuantity()); in getBlockDescriptorName()
344 const BlockDecl::Capture *Capture; // null for 'this' member
350 const BlockDecl::Capture *capture, in BlockLayoutChunk()
353 Capture(capture), Type(type), FieldType(fieldType) {} in BlockLayoutChunk()
[all …]
/external/llvm-project/clang/test/SemaCXX/
Dcxx1z-constexpr-lambdas.cpp320 int Capture = 42; in fn() local
321 return [=]() constexpr { return Capture; }(); in fn()
328 int Capture = 42; in tfn() local
329 return [=]() constexpr { return Capture; }(); in tfn()
335 int Capture = 42; in gfn() local
336 return [=](auto P) constexpr { return Capture + P; }(58); in gfn()
342 int Capture = 42; in OtherCaptures() local
344 auto Inner = [&](auto O) constexpr { return O(58) + Capture; }; in OtherCaptures()
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
DUncountedLambdaCapturesChecker.cpp71 void reportBug(const LambdaCapture &Capture, VarDecl *CapturedVar, in reportBug() argument
78 if (Capture.isExplicit()) { in reportBug()
90 printQuotedQualifiedName(Os, Capture.getCapturedVar()); in reportBug()
93 PathDiagnosticLocation BSLoc(Capture.getLocation(), BR->getSourceManager()); in reportBug()
/external/webrtc/modules/audio_device/include/
Dtest_audio_device_unittest.cc157 EXPECT_TRUE(reader->Capture(&buffer)); in TEST()
159 EXPECT_TRUE(reader->Capture(&buffer)); in TEST()
176 capturer->Capture(&recording_buffer); in TEST()
177 capturer->Capture(&recording_buffer); in TEST()
185 capturer->Capture(&recording_buffer); in TEST()
186 capturer->Capture(&recording_buffer); in TEST()
/external/easymock/src/org/easymock/internal/matchers/
DCaptures.java20 import org.easymock.Capture;
28 private final Capture<T> capture;
32 public Captures(Capture<T> captured) { in Captures()
/external/llvm-project/clang/include/clang/Sema/
DScopeInfo.h517 class Capture {
576 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested, in Capture() function
586 Capture(IsThisCapture, bool IsNested, SourceLocation Loc, in Capture() function
594 Capture(IsVLACapture, const VariableArrayType *VLA, bool IsNested, in Capture() function
672 SmallVector<Capture, 4> Captures;
685 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc, in addCapture()
692 Captures.push_back(Capture(Capture::VLACapture, VLAType, in addVLATypeCapture()
703 Capture &getCXXThisCapture() { in getCXXThisCapture()
718 Capture &getCapture(VarDecl *Var) { in getCapture()
723 const Capture &getCapture(VarDecl *Var) const { in getCapture()
[all …]
/external/clang/include/clang/Sema/
DScopeInfo.h410 class Capture {
451 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested, in Capture() function
461 Capture(IsThisCapture, bool IsNested, SourceLocation Loc, in Capture() function
528 SmallVector<Capture, 4> Captures;
541 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc, in addCapture()
547 Captures.push_back(Capture(/*Var*/ nullptr, /*isBlock*/ false, in addVLATypeCapture()
563 Capture &getCXXThisCapture() { in getCXXThisCapture()
578 Capture &getCapture(VarDecl *Var) { in getCapture()
583 const Capture &getCapture(VarDecl *Var) const { in getCapture()
880 Captures.push_back(Capture(Capture::ThisCapture, isNested, Loc, QualType(), in addThisCapture()
/external/webrtc/test/testsupport/
Dcopy_to_file_audio_capturer_unittest.cc40 TEST_F(CopyToFileAudioCapturerTest, Capture) { in TEST_F() argument
42 ASSERT_TRUE(capturer_->Capture(&expected_buffer)); in TEST_F()
52 wav_file_capturer->Capture(&actual_buffer); in TEST_F()
/external/tensorflow/tensorflow/python/util/
Dstack_trace.h59 static StackTrace Capture(int limit) { in Capture() function
127 int Capture(int limit) { in Capture() function
131 stack_traces_[index] = StackTrace::Capture(limit); in Capture()
167 return ManagedStackTrace(stack_trace_manager->Capture(limit), in GetStackTrace()
/external/easymock/src/org/easymock/
DCapture.java29 public class Capture<T> implements Serializable { class
40 public Capture() { in Capture() method in Capture
50 public Capture(CaptureType type) { in Capture() method in Capture
/external/llvm/test/Transforms/SafeStack/X86/
Dssp.ll15 ; CHECK: call void @Capture
16 call void @Capture(i8* %a)
30 declare void @Capture(i8*)
/external/llvm-project/llvm/test/Transforms/SafeStack/X86/
Dssp.ll15 ; CHECK: call void @Capture
16 call void @Capture(i8* %a)
30 declare void @Capture(i8*)
/external/llvm/test/DebugInfo/X86/
Ddw_op_minus.ll7 ; void Capture(int *);
10 ; Capture(buf);
30 call void @Capture(i32* %arraydecay), !dbg !20
38 declare void @Capture(i32*)
74 ; RCX is clobbered in call @Capture, but there is a spilled copy.
/external/llvm-project/llvm/test/DebugInfo/X86/
Ddw_op_minus.mir7 # void Capture(int *);
10 # Capture(buf);
21 # RCX is clobbered in call @Capture, but there is a spilled copy.
44 call void @Capture(i32* %arraydecay), !dbg !17
52 declare void @Capture(i32*)
111 …CALL64pcrel32 @Capture, csr_64, implicit $rsp, implicit $ssp, implicit killed $rdi, implicit-def $…
/external/webrtc/modules/desktop_capture/
Dmouse_cursor_monitor_unittest.cc70 capturer->Capture(); in TEST_F()
108 capturer->Capture(); in TEST_F()
123 capturer->Capture(); in TEST_F()
/external/rust/crates/anyhow/src/
Dbacktrace.rs89 struct Capture { struct
233 Inner::Captured(LazilyResolvedCapture::new(Capture { in create()
304 capture: UnsafeCell<Capture>,
308 fn new(capture: Capture) -> Self { in new()
315 fn force(&self) -> &Capture { in force() argument
332 unsafe impl Sync for LazilyResolvedCapture where Capture: Sync {}
334 impl Capture { implementation

12345678910>>...12