Searched refs:Capture (Results 1 - 25 of 39) sorted by relevance

12

/external/easymock/src/org/easymock/internal/matchers/
H A DCaptures.java20 import org.easymock.Capture;
28 private final Capture<T> capture;
32 public Captures(Capture<T> captured) {
/external/clang/lib/CodeGen/
H A DCGBlocks.h137 class Capture { class in class:clang::CodeGen::CGBlockInfo
158 static Capture makeIndex(unsigned index) {
159 Capture v;
164 static Capture makeConstant(llvm::Value *value) {
165 Capture v;
187 llvm::DenseMap<const VarDecl*, Capture> Captures;
206 const Capture &getCapture(const VarDecl *var) const {
209 Capture &getCapture(const VarDecl *var) {
210 llvm::DenseMap<const VarDecl*, Capture>::iterator
H A DCGBlocks.cpp168 const BlockDecl::Capture *Capture; // null for 'this' member in struct:__anon16::BlockLayoutChunk
172 const BlockDecl::Capture *capture,
174 : Alignment(align), Size(size), Capture(capture), Type(type) {}
178 if (!Capture)
181 info.Captures[Capture->getVariable()]
182 = CGBlockInfo::Capture::makeIndex(index);
348 info.Captures[variable] = CGBlockInfo::Capture::makeConstant(constant);
531 CGBlockInfo::Capture &capture = blockInfo.getCapture(variable);
685 const CGBlockInfo::Capture
[all...]
H A DCGDebugInfo.cpp787 // For C++11 Lambdas a Field will be the same as a Capture, but the Capture
795 const LambdaExpr::Capture C = *I;
2470 const BlockDecl::Capture *Capture; member in struct:__anon27::BlockLayoutChunk
2526 chunk.Capture = 0;
2534 const BlockDecl::Capture &capture = *i;
2536 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
2545 chunk.Capture = &capture;
2555 const BlockDecl::Capture *captur
[all...]
/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
H A DEasyMock.java1460 public static <T> T capture(Capture<T> captured) {
1467 * name clash: capture(org.easymock.Capture<java.lang.Long>) and
1468 * <T>capture(org.easymock.Capture<T>) have the same erasure
1476 // public static int capture(Capture<Integer> captured) {
1487 // public static long capture(Capture<Long> captured) {
1498 // public static float capture(Capture<Float> captured) {
1509 // public static double capture(Capture<Double> captured) {
1520 // public static byte capture(Capture<Byte> captured) {
1531 // public static char capture(Capture<Character> captured) {
/external/clang/include/clang/Sema/
H A DScopeInfo.h159 class Capture { class in class:clang::sema::CapturingScopeInfo
192 Capture(VarDecl *Var, bool block, bool byRef, bool isNested, function in class:clang::sema::CapturingScopeInfo::Capture
200 Capture(IsThisCapture, bool isNested, SourceLocation Loc, function in class:clang::sema::CapturingScopeInfo::Capture
246 SmallVector<Capture, 4> Captures;
259 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc,
266 Captures.push_back(Capture(Capture::ThisCapture, isNested, Loc, CaptureType,
275 Capture &getCXXThisCapture() {
287 Capture &getCapture(VarDecl *Var) {
292 const Capture
[all...]
H A DInitialization.h132 } Capture; member in union:clang::InitializedEntity::__anon3391
166 Capture.Var = Var;
167 Capture.Location = Loc.getRawEncoding();
353 return Capture.Var;
360 return SourceLocation::getFromRawEncoding(Capture.Location);
/external/android-mock/src/com/google/android/testing/mocking/
H A DAndroidMock.java18 import org.easymock.Capture;
2351 * {@link org.easymock.Capture} allows for capturing of the incoming value. Use
2352 * {@link org.easymock.Capture#getValue()} to retrieve the captured value.
2356 * {@link org.easymock.Capture#getValue()}
2359 public static <T> T capture(Capture<T> captured) {
2367 * {@link org.easymock.Capture} allows for capturing of the incoming value. Use
2368 * {@link org.easymock.Capture#getValue()} to retrieve the captured value.
2371 * {@link org.easymock.Capture#getValue()}
2374 public static int capture(Capture<Integer> captured) {
2382 * {@link org.easymock.Capture} allow
[all...]
/external/v8/src/
H A Dliveobjectlist.h90 static MaybeObject* Capture();
274 inline static MaybeObject* Capture() { return HEAP->undefined_value(); }
/external/clang/lib/Sema/
H A DSemaLambda.cpp725 llvm::SmallVector<LambdaExpr::Capture, 4> Captures;
751 LambdaScopeInfo::Capture From = LSI->Captures[I];
757 Captures.push_back(LambdaExpr::Capture(From.getLocation(),
768 Captures.push_back(LambdaExpr::Capture(From.getLocation(), IsImplicit,
944 BlockDecl::Capture Capture(/*Variable=*/CapVar, /*ByRef=*/false,
946 Block->setCaptures(Context, &Capture, &Capture + 1,
/external/clang/tools/libclang/
H A DIndexBody.cpp138 bool TraverseLambdaCapture(LambdaExpr::Capture C) {
H A DCIndexCodeCompletion.cpp718 CaptureCompletionResults Capture(Opts, *Results, &TU);
726 Capture,
/external/quake/quake/src/WinQuake/
H A Dquake-rogue.spec.sh67 And, a much enhanced version of Capture the Flag!
68 Capture the Flag. You've seen it on the Internet; now it's in your hands.
/external/android-mock/tests/com/google/android/testing/mocking/
H A DAndroidMockTest.java29 import org.easymock.Capture;
833 AndroidMock.expect(mockMap.get(AndroidMock.capture(new Capture<Byte>()))).andReturn(null);
834 AndroidMock.expect(mockMap.get(AndroidMock.capture(new Capture<Character>()))).andReturn(null);
835 AndroidMock.expect(mockMap.get(AndroidMock.capture(new Capture<Double>()))).andReturn(null);
836 AndroidMock.expect(mockMap.get(AndroidMock.capture(new Capture<Float>()))).andReturn(null);
837 AndroidMock.expect(mockMap.get(AndroidMock.capture(new Capture<Integer>()))).andReturn(null);
838 AndroidMock.expect(mockMap.get(AndroidMock.capture(new Capture<Long>()))).andReturn(null);
839 AndroidMock.expect(mockMap.get(AndroidMock.capture(new Capture<String>()))).andReturn(null);
/external/regex-re2/re2/
H A Dcompile.cc157 Frag Capture(Frag a, int n);
447 Frag Compiler::Capture(Frag a, int n) { function in class:re2::Compiler
829 return Capture(child_frags[0], re->cap());
888 *pre = Regexp::Capture(sub, re->parse_flags(), re->cap());
936 *pre = Regexp::Capture(sub, re->parse_flags(), re->cap());
H A Dregexp.h390 static Regexp* Capture(Regexp* sub, ParseFlags flags, int cap);
550 struct { // Capture
/external/clang/lib/AST/
H A DExprCXX.cpp771 LambdaExpr::Capture::Capture(SourceLocation Loc, bool Implicit, function in class:LambdaExpr::Capture
795 LambdaCaptureKind LambdaExpr::Capture::getCaptureKind() const {
805 ArrayRef<Capture> Captures,
833 Data.Captures = (Capture *)Context.Allocate(sizeof(Capture) * NumCaptures);
834 Capture *ToCapture = Data.Captures;
866 ArrayRef<Capture> Captures,
934 "Capture index out-of-range");
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
H A DSurface.cpp237 mPreFlipState->Capture();
263 hr = mPreFlipState->Capture();
/external/clang/include/clang/AST/
H A DDecl.h3078 class Capture {
3093 Capture(VarDecl *variable, bool byRef, bool nested, Expr *copy)
3129 Capture *Captures;
3187 typedef const Capture *capture_iterator;
3188 typedef const Capture *capture_const_iterator;
3204 const Capture *begin,
3205 const Capture *end,
H A DDeclCXX.h564 typedef LambdaExpr::Capture Capture; typedef in struct:clang::CXXRecordDecl::LambdaDefinitionData
601 Capture *Captures;
1002 typedef const LambdaExpr::Capture* capture_const_iterator;
H A DExprCXX.h1130 /// \brief Flag used by the Capture class to indicate that the given
1134 /// \brief Flag used by the Capture class to indciate that the
1176 class Capture { class in class:clang::LambdaExpr
1198 Capture(SourceLocation Loc, bool Implicit,
1254 ArrayRef<Capture> Captures,
1296 ArrayRef<Capture> Captures,
1317 typedef const Capture *capture_iterator;
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DBlit.cpp532 hr = mSavedStateBlock->Capture();
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp968 SmallVector<BlockDecl::Capture, 16> captures;
977 captures.push_back(BlockDecl::Capture(decl, byRef, nested, copyExpr));
1127 typedef LambdaExpr::Capture Capture; typedef
1136 = (Capture*)Reader.Context.Allocate(sizeof(Capture)*Lambda.NumCaptures);
1137 Capture *ToCapture = Lambda.Captures;
1144 *ToCapture++ = Capture(Loc, IsImplicit, Kind, Var, EllipsisLoc);
H A DASTWriter.cpp4408 LambdaExpr::Capture &Capture = Lambda.Captures[I]; local
4409 AddSourceLocation(Capture.getLocation(), Record);
4410 Record.push_back(Capture.isImplicit());
4411 Record.push_back(Capture.getCaptureKind()); // FIXME: stable!
4412 VarDecl *Var = Capture.capturesVariable()? Capture.getCapturedVar() : 0;
4414 AddSourceLocation(Capture.isPackExpansion()? Capture.getEllipsisLoc()

Completed in 812 milliseconds

12