/cts/tests/tests/hardware/src/android/hardware/camera2/cts/ |
ImageReaderTest.java | 52 * <p>JPEG: used for JPEG still capture, also mandatory format. </p> 242 // Only verify single image for still capture 245 mCamera.capture(request, null, null); 270 if (VERBOSE) Log.v(TAG, "Stopping capture and waiting for idle"); 308 * 1. capture result timestamp against the image timestamp (need
|
/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/antlr/antlr-3.4/runtime/Python/tests/ |
t058rewriteAST.py | 18 def capture(self, t): member in class:TestRewriteAST.parserClass.TParser 45 def capture(self, t): member in class:TestRewriteAST.lexerClass.TLexer [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);
|
/external/opencv/otherlibs/highgui/ |
highgui.h | 167 /* "black box" capture structure */ 175 CVAPI(int) cvGrabFrame( CvCapture* capture ); variable 181 CVAPI(IplImage*) cvRetrieveFrame( CvCapture* capture ); variable 185 CVAPI(IplImage*) cvQueryFrame( CvCapture* capture ); variable 188 CVAPI(void) cvReleaseCapture( CvCapture** capture ); variable 208 /* retrieve or set capture properties */ 209 CVAPI(double) cvGetCaptureProperty( CvCapture* capture, int property_id ); 210 CVAPI(int) cvSetCaptureProperty( CvCapture* capture, int property_id, double value );
|
/frameworks/base/core/java/android/ddm/ |
DdmHandleViewDebug.java | 56 /** Capture View Layers. */ 65 /** Capture View. */ 264 ViewDebug.capture(rootView, b, targetView);
|
/frameworks/base/core/java/android/hardware/camera2/impl/ |
CameraDevice.java | 252 public int capture(CaptureRequest request, CaptureListener listener, Handler handler) method in class:CameraDevice 261 Log.w(TAG, "Capture burst request list is empty, do nothing!"); 265 throw new UnsupportedOperationException("Burst capture implemented yet"); 326 throw new UnsupportedOperationException("Burst capture implemented yet"); 543 Log.d(TAG, "Capture started for id " + requestId); 558 // Dispatch capture start notice 595 // TODO: add 'capture sequence completed' callback to the 627 // Either send a partial result or the final capture completed result 642 // Final capture result
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/ |
CameraDeviceBinderTest.java | 51 // Wait for capture result timeout value: 1500ms 380 timestamps.capture()); 406 // Submit a few capture requests 433 // Submit a few capture requests
|
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
NetworkStatsServiceTest.java | 43 import static org.easymock.EasyMock.capture; 78 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...] |
/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) {
|
/external/chromium_org/cc/layers/ |
texture_layer_unittest.cc | 492 BlockingTaskRunner::CapturePostTasks capture; local [all...] |
/external/chromium_org/native_client_sdk/src/libraries/xray/ |
xray.c | 122 struct XRayTraceCapture* capture, 131 void XRayCheckGuards(struct XRayTraceCapture* capture) { 132 assert(capture->guard0 == XRAY_GUARD_VALUE_0x12345678); 133 assert(capture->guard1 == XRAY_GUARD_VALUE_0x12345678); 134 assert(capture->guard2 == XRAY_GUARD_VALUE_0x87654321); 135 assert(capture->guard3 == XRAY_GUARD_VALUE_0x12345678); 140 struct XRayTraceCapture* capture, int index) { 143 index = capture->buffer_size - 1; 149 struct XRayTraceCapture* capture, int index) { 151 if (index >= capture->buffer_size 327 struct XRayTraceCapture* capture = g_xray_capture; local 353 struct XRayTraceCapture* capture = g_xray_capture; local 412 struct XRayTraceCapture* capture = g_xray_capture; local 444 struct XRayTraceCapture* capture = g_xray_capture; local 717 struct XRayTraceCapture* capture; local [all...] |
/external/clang/lib/Sema/ |
SemaPseudoObject.cpp | 229 OpaqueValueExpr *capture(Expr *op); 337 /// Capture the given expression in an OpaqueValueExpr. 338 OpaqueValueExpr *PseudoOpBuilder::capture(Expr *e) { function in class:PseudoOpBuilder 350 /// Capture the given expression as the result of this pseudo-object 359 // If the expression hasn't already been captured, just capture it 362 OpaqueValueExpr *cap = capture(e); 405 OpaqueValueExpr *capturedRHS = capture(RHS); 465 result = capture(result.take()); 641 /// Capture the base object of an Objective-C property expression. 645 // If we have a base, capture it in an OVE and rebuild the syntacti [all...] |
/external/clang/lib/Serialization/ |
ASTWriterDecl.cpp | 822 const BlockDecl::Capture &capture = *i; local 823 Writer.AddDeclRef(capture.getVariable(), Record); 826 if (capture.isByRef()) flags |= 1; 827 if (capture.isNested()) flags |= 2; 828 if (capture.hasCopyExpr()) flags |= 4; 831 if (capture.hasCopyExpr()) Writer.AddStmt(capture.getCopyExpr()); [all...] |
/frameworks/av/services/camera/libcameraservice/device2/ |
Camera2Device.cpp | 215 status_t Camera2Device::capture(CameraMetadata &request) { function in class:android::Camera2Device [all...] |
/frameworks/av/services/camera/libcameraservice/device3/ |
Camera3Device.cpp | 387 status_t Camera3Device::capture(CameraMetadata &request) { function in class:android::Camera3Device 415 CLOGE("Can't create capture request"); 426 ALOGV("Camera %d: Capture request enqueued", mId); [all...] |
/packages/apps/Browser/src/com/android/browser/ |
PhoneUi.java | 276 mActiveTab.capture();
|
/packages/apps/Camera/src/com/android/camera/ |
FocusOverlayManager.java | 101 public boolean capture(); method in interface:FocusOverlayManager.Listener 241 capture(); method 244 // already have requested AF for us, so just request capture on 252 capture(); method 267 capture(); method 424 private void capture() { method in class:FocusOverlayManager 425 if (mListener.capture()) {
|
/packages/apps/Camera2/src/com/android/camera/ |
FocusOverlayManager.java | 110 public boolean capture(); method in interface:FocusOverlayManager.Listener 253 capture(); method 256 // already have requested AF for us, so just request capture on 264 capture(); method 279 capture(); method 436 private void capture() { method in class:FocusOverlayManager 437 if (mListener.capture()) {
|
/packages/apps/LegacyCamera/src/com/android/camera/ |
FocusManager.java | 80 public boolean capture(); method in interface:FocusManager.Listener 184 capture(); method 187 // already have requested AF for us, so just request capture on 195 capture(); method 215 capture(); method 343 private void capture() { method in class:FocusManager 344 if (mListener.capture()) {
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
soc.h | 285 struct snd_soc_pcm_stream capture; member in struct:snd_soc_codec_dai 321 struct snd_soc_pcm_stream capture; member in struct:snd_soc_cpu_dai
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
soc.h | 285 struct snd_soc_pcm_stream capture; member in struct:snd_soc_codec_dai 321 struct snd_soc_pcm_stream capture; member in struct:snd_soc_cpu_dai
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLInputElement.cpp | 1709 bool HTMLInputElement::capture() const function in class:WebCore::HTMLInputElement [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
fakemediaengine.h | 885 bool SetCapture(bool capture) { 886 capture_ = capture; 947 bool capture() const { return video_.capture_; } function in class:cricket::FakeMediaEngine [all...] |
/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...] |