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

1 2 3 4

  /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 184 /// A chunk of data that we actually have to capture in the block.
189 const BlockDecl::Capture *Capture; // null for 'this'
194 const BlockDecl::Capture *capture,
197 Capture(capture), Type(type) {}
201 if (!Capture)
204 info.Captures[Capture->getVariable()]
205 = CGBlockInfo::Capture::makeIndex(index)
592 CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
747 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
984 const CGBlockInfo::Capture &capture = BlockInfo->getCapture(variable); local
1185 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1226 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1338 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1512 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
crypto_module_password_dialog_view_unittest.cc 22 void Capture(const char* text) {
38 base::Bind(&CryptoModulePasswordDialogViewTest::Capture,
  /external/chromium_org/media/base/
audio_capturer_source.h 19 // captured audio. An implementation will periodically call Capture() on a
27 virtual void Capture(AudioBus* audio_source,
55 // Sets the capture volume, with range [0.0, 1.0] inclusive.
  /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/chromium_org/remoting/host/
ipc_video_frame_capturer.h 35 virtual void Capture(const webrtc::DesktopRegion& region) OVERRIDE;
screen_capturer_fake.h 30 virtual void Capture(const webrtc::DesktopRegion& rect) OVERRIDE;
ipc_video_frame_capturer.cc 39 void IpcVideoFrameCapturer::Capture(const webrtc::DesktopRegion& region) {
  /external/clang/include/clang/Sema/
ScopeInfo.h 333 class Capture {
334 // There are three categories of capture: capturing 'this', capturing
336 // arbitrary initializer, and don't really capture in the traditional
339 // There are three ways to capture a local variable:
340 // - capture by copy in the C++11 sense,
341 // - capture by reference in the C++11 sense, and
342 // - __block capture.
343 // Lambdas explicitly specify capture by copy or capture by reference.
344 // For blocks, __block capture applies to variables with that annotation
    [all...]
Initialization.h 118 /// \brief The source location at which the capture occurs.
151 struct C Capture;
181 /// \brief Create the initialization entity for a lambda capture.
185 Capture.Var = Var;
186 Capture.Location = Loc.getRawEncoding();
307 /// \brief Create the initialization entity for a lambda capture.
404 assert(getKind() == EK_LambdaCapture && "Not a lambda capture!");
405 return Capture.Var;
408 /// \brief Determine the location of the capture when initializing
411 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.
  /external/chromium_org/chrome/renderer/resources/extensions/
tab_capture_custom_bindings.js 5 // Custom binding for the Tab Capture API.
12 apiFunctions.setCustomCallback('capture',
  /external/chromium_org/content/renderer/media/
webrtc_audio_capturer.h 28 // This class manages the capture data flow by getting data from its
30 // It allows clients to inject their own capture data source by calling
47 // consuming audio for capture. |session_id| is passed to the browser to
109 virtual void Capture(media::AudioBus* audio_source,
114 // Reconfigures the capturer with a new buffer size and capture parameters.
142 // Buffers used for temporary storage during capture callbacks.
webaudio_capturer_source.cc 99 callback_->Capture(capture_bus_.get(), 0, 1.0);
  /external/chromium_org/chrome/browser/extensions/api/tab_capture/
tab_capture_api.cc 5 // Implements the Chrome Extensions Tab Capture API.
38 const char kCapturingSameTab[] = "Cannot capture a tab with an active stream.";
39 const char kFindingTabError[] = "Error finding tab to capture.";
40 const char kNoAudioOrVideo[] = "Capture failed. No audio or video requested.";
41 const char kPermissionError[] = "Tab Capture API flag is not enabled.";
54 scoped_ptr<api::tab_capture::Capture::Params> params =
55 TabCapture::Capture::Params::Create(*args_);
77 // Make sure either we have been granted permission to capture through an
119 // Device id we use for Tab Capture.
  /external/chromium_org/v8/test/mjsunit/regress/
regress-145201.js 46 // Capture:
54 // Capture:
  /external/clang/lib/Sema/
SemaLambda.cpp 443 // variable declaration of the form "auto init-capture;"
605 // Distinct capture names, for diagnostics.
619 // lambda-capture.
630 // If a lambda-capture includes a capture-default that is =, the
631 // lambda-capture shall not contain this [...].
652 assert(C->Id && "missing identifier for capture");
659 // lambda-capture.
670 // compound-statement, the identifier in the init-capture
679 // If a lambda-capture includes a capture-default that is &, the
    [all...]
  /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/chromium_org/content/browser/renderer_host/media/
desktop_capture_device_unittest.cc 66 virtual void Capture(const webrtc::DesktopRegion& region) OVERRIDE {
104 #define MAYBE_Capture Capture
176 // Capture first frame.
179 // Capture second frame.
  /external/chromium_org/remoting/webapp/
connection_stats.js 69 ', Capture: ' + formatStatNumber(stats.captureLatency, 'ms') +
  /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(); }
  /external/clang/lib/AST/
Stmt.cpp     [all...]

Completed in 676 milliseconds

1 2 3 4