HomeSort by relevance Sort by last modified time
    Searched refs:capture (Results 76 - 100 of 299) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/content/renderer/pepper/
pepper_audio_input_host.cc 129 bool capture) {
132 if (capture)
  /external/llvm/utils/lit/lit/
Util.py 15 return int(capture(['sysctl', '-n', 'hw.ncpu']))
43 def capture(args, env=None): function
45 """capture(command) - Run the given command (or argv list) in a shell and
  /packages/apps/Browser/tests/src/com/android/browser/
TestWebChromeClient.java 200 public void openFileChooser(ValueCallback<Uri> uploadFile, String acceptType, String capture) {
201 mWrappedClient.openFileChooser(uploadFile, acceptType, capture);
  /frameworks/av/services/camera/libcameraservice/common/
CameraDeviceBase.h 55 * Submit request for capture. The CameraDevice takes ownership of the
58 virtual status_t capture(CameraMetadata &request) = 0;
203 * Trigger pre-capture metering. The latest ID used in a trigger pre-capture
  /frameworks/base/core/java/android/hardware/camera2/
CameraDevice.java 26 * Android device, allowing for fine-grain control of image capture and
60 * Create a request suitable for still image capture. Specifically, this
62 * commonly be used with the {@link #capture} method.
79 * Create a request suitable for still image capture while recording
82 * with the {@link #capture} method while a request based on
90 * Create a request suitable for zero shutter lag still capture. This means
100 * A basic template for direct application control of capture
103 * quality. The manual capture parameters (exposure, sensitivity, and so on)
136 * the camera device for each capture request. A given request may use all
138 * can be submitted to the camera with {@link #capture capture}
317 public int capture(CaptureRequest request, CaptureListener listener, Handler handler) method in interface:CameraDevice
    [all...]
  /hardware/libhardware/tests/camera2/
CameraFrameTests.cpp 109 ALOGV("Submitting capture request %d", i);
111 ASSERT_EQ(OK, mDevice->capture(tmpRequest));
115 ALOGV("Reading capture request %d", i);
  /external/easymock/src/org/easymock/internal/
Invocation.java 156 public void addCapture(Captures<Object> capture, Object value) {
157 capture.setPotentialValue(value);
158 currentCaptures.add(capture);
  /external/chromium_org/media/video/capture/linux/
video_capture_device_linux.cc 5 #include "media/video/capture/linux/video_capture_device_linux.h"
122 // Test if this is a V4L2 capture device.
127 // This is a V4L2 video capture device
269 // Test if this is a V4L2 capture device.
274 // This is not a V4L2 video capture device.
277 SetErrorState("This is not a V4L2 video capture device");
317 // Set capture framerate in the form of capture interval.
323 // Now check if the device is able to accept a capture framerate set.
324 if (streamparm.parm.capture.capability & V4L2_CAP_TIMEPERFRAME)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_functools.py 20 def capture(*args, **kw): function
21 """capture all positional and keyword arguments"""
33 p = self.thetype(capture, 1, 2, a=10, b=20)
40 p = self.thetype(capture, 1, 2, a=10, b=20)
42 self.assertEqual(p.func, capture)
83 p = self.thetype(capture)
86 p = self.thetype(capture, 1, 2)
93 p = self.thetype(capture)
96 p = self.thetype(capture, a=1)
105 p = self.thetype(capture, *args
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_functools.py 20 def capture(*args, **kw): function
21 """capture all positional and keyword arguments"""
33 p = self.thetype(capture, 1, 2, a=10, b=20)
40 p = self.thetype(capture, 1, 2, a=10, b=20)
42 self.assertEqual(p.func, capture)
83 p = self.thetype(capture)
86 p = self.thetype(capture, 1, 2)
93 p = self.thetype(capture)
96 p = self.thetype(capture, a=1)
105 p = self.thetype(capture, *args
    [all...]
  /external/littlemock/tests/com/google/testing/littlemock/
LittleMockTest.java 589 verify(mFoo).add(mCaptureString.capture());
596 doReturn("hello").when(mFoo).lookup(mCaptureString.capture());
604 doNothing().when(mFoo).add(mCaptureString.capture());
605 doNothing().when(mFoo).getResultLater(mCaptureCallback.capture());
616 // createCapture().capture() into a method expecting an int, because the capture
618 // capture method, then auto-unboxed into an int when being passed to the underlying
620 // It's not like you need to anyway - there's no point / need to capture a primitive,
625 verify(mBar).mixedArguments(mCaptureInteger.capture(), mCaptureString.capture());
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
base_unittest.py 332 capture = OutputCapture()
333 capture.capture_output()
335 _, _, logs = capture.restore_output()
341 capture = OutputCapture()
342 capture.capture_output()
344 _, _, logs = capture.restore_output()
  /external/clang/lib/CodeGen/
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...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
Parser.java 60 private boolean capture = false; field in class:Parser
197 * Turns on data capture; this is used to create test streams that represent "live" data and
201 capture = true;
206 * Turns off data capture; writes the captured data to a specified file.
508 * Read an int from the input stream, and capture it if necessary for debugging. Seems a small
517 if (capture) {
  /pdk/apps/CameraITS/service/src/com/android/camera2/its/
ItsService.java 61 public static final String ACTION_CAPTURE = "com.android.camera2.its.CAPTURE";
110 void onCaptureAvailable(Image capture);
163 // Create a thread to receive capture results and process them
340 // to an [x0,y0,x1,y1] region in sensor coords. The capture request region
390 // Keep issuing capture requests until 3A has converged.
402 // If not converged yet, issue another capture request.
405 // Baseline capture request for 3A.
444 mCamera.capture(req.build(), mCaptureResultListener, mResultHandler);
463 // Parse the JSON to get the list of capture requests.
469 // Capture full-frame images. Use the reported JPEG size rather than the senso
    [all...]
  /frameworks/base/core/java/android/webkit/
WebChromeClient.java 378 * @param capture The value of the 'capture' attribute of the input tag
382 public void openFileChooser(ValueCallback<Uri> uploadFile, String acceptType, String capture) {
  /packages/apps/Browser/src/com/android/browser/
WebViewController.java 96 void openFileChooser(ValueCallback<Uri> uploadMsg, String acceptType, String capture);
  /external/antlr/antlr-3.4/runtime/Python/tests/
t052import.py 26 def capture(self, t): member in class:T.parserClass.TParser
53 def capture(self, t): member in class:T.lexerClass.TLexer
137 def capture(self, t):
138 self.gM1.capture(t)
142 a : B { self.capture("S.a") } ;
195 def capture(self, t):
196 self.gM2.capture(t)
198 a[x] returns [y] : B {self.capture("S.a"); $y="1000";} ;
208 s : label=a[3] {self.capture($label.y);} ;
230 def capture(self, t)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
channelmanager.cc 126 explicit CaptureParams(bool c) : capture(c), result(CR_FAILURE) {}
128 bool capture; member in struct:cricket::CaptureParams
577 CaptureResult ChannelManager::SetVideoCapture(bool capture) {
579 CaptureParams capture_params(capture);
583 capturing_ = capture;
588 CaptureResult ChannelManager::SetVideoCapture_w(bool capture) {
591 return media_engine_->SetVideoCapture(capture);
710 p->result = SetVideoCapture_w(p->capture);
filemediaengine.h 100 virtual CaptureResult SetVideoCapture(bool capture) { return CR_SUCCESS; }
  /external/chromium_org/ui/android/java/src/org/chromium/ui/
SelectFileDialog.java 50 * Creates and starts an intent based on the passed fileTypes and capture value.
52 * @param capture The capture value as described in http://www.w3.org/TR/html-media-capture/
56 private void selectFile(String[] fileTypes, boolean capture, WindowAndroid window) {
58 mCapture = capture;
68 // Quick check - if the |capture| parameter is set and |fileTypes| has the appropriate MIME
117 * Get a file for the image capture in the CAPTURE_IMAGE_DIRECTORY directory.
193 // specified, we will fallback to a generic chooser (unless a capture parameter has been
  /frameworks/base/tests/TtsTests/src/com/android/speech/tts/
TextToSpeechTests.java 94 LittleMock.verify(delegate, LittleMock.times(1)).onSynthesizeText(req.capture(),
116 LittleMock.verify(delegate, LittleMock.times(1)).onSynthesizeText(req2.capture(),
  /hardware/samsung_slsi/exynos5/libcamera2/
ExynosCameraHWInterface2.cpp 134 /* Set up for capture */
    [all...]
  /cts/tests/tests/admin/src/android/admin/cts/
DeviceAdminActivationTest.java 157 resultCodeCaptor.capture(),
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
functional.rb 204 def capture( *args ) method in class:ANTLR3.Test.CaptureOutput

Completed in 820 milliseconds

1 2 34 5 6 7 8 91011>>