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

1 2 3

  /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/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
CGBlocks.cpp 182 /// A chunk of data that we actually have to capture in the block.
187 const BlockDecl::Capture *Capture; // null for 'this'
192 const BlockDecl::Capture *capture,
195 Capture(capture), Type(type) {}
199 if (!Capture)
202 info.Captures[Capture->getVariable()]
203 = CGBlockInfo::Capture::makeIndex(index)
595 CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
750 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
967 const CGBlockInfo::Capture &capture = BlockInfo->getCapture(variable); local
1159 const CGBlockInfo::Capture &capture = blockInfo.getCapture(self); local
1185 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1226 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1336 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1508 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
    [all...]
  /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/clang/include/clang/Sema/
ScopeInfo.h 327 class Capture {
328 // There are two categories of capture: capturing 'this', and capturing
329 // local variables. There are three ways to capture a local variable:
330 // capture by copy in the C++11 sense, capture by reference
331 // in the C++11 sense, and __block capture. Lambdas explicitly specify
332 // capture by copy or capture by reference. For blocks, __block capture
340 // and misc bits descibing the capture
    [all...]
Initialization.h 108 /// \brief The source location at which the capture occurs.
137 struct C Capture;
167 /// \brief Create the initialization entity for a lambda capture.
171 Capture.Var = Var;
172 Capture.Location = Loc.getRawEncoding();
284 /// \brief Create the initialization entity for a lambda capture.
365 assert(getKind() == EK_LambdaCapture && "Not a lambda capture!");
366 return Capture.Var;
369 /// \brief Determine the location of the capture when initializing
372 assert(getKind() == EK_LambdaCapture && "Not a lambda capture!");
    [all...]
  /packages/apps/Browser/
Android.mk 22 # We need the sound recorder for the Media Capture API.
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/i18n/
messages.properties 39 DeviceView_Screen_Capture=Screen Capture
40 DeviceView_Screen_Capture_Tooltip=Screen Capture
  /external/android-mock/src/com/google/android/testing/mocking/
AndroidMock.java 18 import org.easymock.Capture;
2359 public static <T> T capture(Capture<T> captured) { method in class:AndroidMock
2374 public static int capture(Capture<Integer> captured) { method in class:AndroidMock
2389 public static long capture(Capture<Long> captured) { method in class:AndroidMock
2404 public static float capture(Capture<Float> captured) { method in class:AndroidMock
2419 public static double capture(Capture<Double> captured) { method in class:AndroidMock
2434 public static byte capture(Capture<Byte> captured) { method in class:AndroidMock
2449 public static char capture(Capture<Character> captured) { method in class:AndroidMock
    [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 530 // lambda-capture.
541 // If a lambda-capture includes a capture-default that is =, the
542 // lambda-capture shall not contain this [...].
563 assert(C->Id && "missing identifier for capture");
566 // If a lambda-capture includes a capture-default that is &, the
567 // identifiers in the lambda-capture shall not be preceded by &.
568 // If a lambda-capture includes a capture-default that is =, [...
    [all...]
  /external/v8/src/
liveobjectlist.h 57 // The LiveObjectList is both a mechanism for tracking a live capture of
72 // The lol comes with utility functions to capture, dump, summarize, and diff
90 static MaybeObject* Capture();
274 inline static MaybeObject* Capture() { return HEAP->undefined_value(); }
  /frameworks/base/services/tests/servicestests/src/com/android/server/
NetworkPolicyManagerServiceTest.java 42 import static org.easymock.EasyMock.capture;
84 import org.easymock.Capture;
208 final Capture<IProcessObserver> processObserver = new Capture<IProcessObserver>();
209 mActivityManager.registerProcessObserver(capture(processObserver)); method
213 final Capture<INetworkManagementEventObserver> networkObserver = new Capture<
215 mNetworkManager.registerObserver(capture(networkObserver)); method
868 capture(tag.capture), anyInt(), method
950 public Capture<T> capture = new Capture<T>() { field in class:NetworkPolicyManagerServiceTest.FutureCapture
    [all...]
NetworkStatsServiceTest.java 44 import static org.easymock.EasyMock.capture;
76 import org.easymock.Capture;
150 final Capture<INetworkManagementEventObserver> networkObserver = new Capture<
152 mNetManager.registerObserver(capture(networkObserver)); method
302 final Capture<INetworkManagementEventObserver> networkObserver = new Capture<
304 mNetManager.registerObserver(capture(networkObserver)); method
    [all...]
  /external/clang/tools/libclang/
IndexBody.cpp 149 bool TraverseLambdaCapture(LambdaExpr::Capture C) {
  /external/quake/quake/src/WinQuake/
quake-rogue.spec.sh 67 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/v8/test/mjsunit/
string-match.js 61 assertEquals(captures[i - 1], RegExp["$" + i], name + "-capture-" + i);
108 testMatch("Capture-Nonglobal", stringSample3, re_multicap,
113 // Global regexp (also check that capture from before are cleared)
129 testMatch("Capture-Global", stringSample, re_cap,
arguments-read-and-assignment.js 75 // Capture parameters in nested contexts.
85 "capture value returned");
91 "capture value ignored");
97 "capture to boolean");
103 "capture short-circuit boolean or true");
109 "capture short-circuit boolean and false");
121 "deep nested capture");
  /external/android-mock/tests/com/google/android/testing/mocking/
AndroidMockTest.java 29 import org.easymock.Capture;
    [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.h 179 kRegexpBadNamedCapture, // bad named capture
353 // removed. The result will capture exactly the same
370 // or NULL if the regexp contains no named capture groups.
375 // names or NULL if the regexp contains no named capture groups. The
391 static Regexp* Capture(Regexp* sub, ParseFlags flags, int cap);
551 struct { // Capture
  /dalvik/dx/etc/
dx.bat 56 REM Capture all arguments that are not -J options.
  /external/clang/lib/AST/
ExprCXX.cpp 801 LambdaExpr::Capture::Capture(SourceLocation Loc, bool Implicit,
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
Surface.cpp 214 RECT scissorRect = {0}; // Scissoring is disabled for flipping, but we need this to capture and restore the old rectangle
237 mPreFlipState->Capture();
263 hr = mPreFlipState->Capture();
  /external/clang/include/clang/AST/
Decl.h     [all...]

Completed in 3348 milliseconds

1 2 3