/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 | 117 public boolean capture(); method in interface:FocusOverlayManager.Listener 260 capture(); method 263 capture(); method 282 capture(); method 449 * Triggers the autofocus and set the state to which a capture will happen 468 private void capture() { method in class:FocusOverlayManager 469 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()) {
|
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/ |
FocusOverlayManager.java | 98 public boolean capture(); method in interface:FocusOverlayManager.Listener 235 capture(); method 238 // already have requested AF for us, so just request capture on 246 capture(); method 261 capture(); method 409 private void capture() { method in class:FocusOverlayManager 410 if (mListener.capture()) {
|
/device/moto/shamu/camera/QCamera/HAL/usbcamcore/src/ |
QualcommUsbCamera.cpp | 88 #define CAPTURE 1 201 #if CAPTURE 221 #else /* CAPTURE */ 223 #endif /* CAPTURE */ 392 #if CAPTURE 408 #else /* CAPTURE */ 413 #endif /* CAPTURE */ [all...] |
/frameworks/base/docs/html/guide/topics/media/ |
camera.jd | 14 <li><a href="#intent-image">Image capture intent</a></li> 15 <li><a href="#intent-video">Video capture intent</a></li> 25 <li><a href="#capture-picture">Capturing pictures</a></li> 26 <li><a href="#capture-video">Capturing videos</a></li> 58 devices, allowing you to capture pictures and videos in your applications. This document discusses a 59 quick, simple approach to image and video capture and outlines an advanced approach for creating 109 MediaStore.ACTION_VIDEO_CAPTURE} can be used to capture images or videos without directly 155 <li><strong>Audio Recording Permission</strong> - For recording audio with video capture, your 156 application must request the audio capture permission. 175 camera intent makes a request to capture a picture or video clip through an existing camera app an [all...] |
/system/media/camera/docs/ |
docs.html | [all...] |
/external/easymock/src/org/easymock/ |
EasyMock.java | 1460 public static <T> T capture(Capture<T> captured) { method in class:EasyMock [all...] |
/external/libpcap/ |
CHANGES | 33 capturing and reading capture files 83 Improve 'inbound'/'outbound' capture filters under Linux. 170 Add SocketCAN capture support 200 For BPF, raise the default capture buffer size to from 32k to 512k 230 Fix memory-mapped Linux capture to support pcap_next() and 232 Fixes for Linux USB capture 249 Support for memory-mapped capture on Linux 259 On Linux, ignore ENETDOWN so we can continue to capture packets if the 355 IrDA capture (Linux only) 420 values, to make it easier to exchange capture files betwee [all...] |
configure.in | 276 # SITA support is mutually exclusive with native capture support; 302 AC_HELP_STRING([--with-pcap=TYPE],[use packet capture TYPE])) 303 AC_MSG_CHECKING(packet capture type) 347 # Do capture-mechanism-dependent tests. 566 AC_MSG_WARN(cannot determine packet capture interface) 579 # We can't capture, so we can't open any capture 612 # The first thing we use is the type of capture mechanism, 756 AC_MSG_ERROR([DAG support is only available with 'linux' 'bpf' and 'dag' packet capture types]) 836 # User requested "dag" capture type but the DAG API wasn' [all...] |
/docs/source.android.com/src/devices/camera/ |
camera3_3Amodes.jd | 50 auto-whitebalance (AWB) modes are effectively OFF, and none of the capture 78 capture. Triggering locks focus once currently active sweep concludes. Canceling 119 for precapture and still capture. User control of flash disabled.<br/> 121 capture, and at HAL's discretion for precapture. User control of flash disabled.<br/> 123 discretion for precapture and still capture. Use a flash burst at end of 149 high-resolution capture.<br/> 615 <td>Ready for high-quality capture</td> 621 <td>Ready for high-quality capture</td> 630 values are then available in the result metadata for that capture. So for 643 <td>High-level 3A control. When set to OFF, all 3A control by the HAL is disabled. The application must set the fields for capture parameters itself [all...] |
/external/guava/guava/src/com/google/common/reflect/ |
TypeResolver.java | 321 introspector.visit(wildcardCapturer.capture(contextType)); 380 // Instead, it should create a capture of the wildcard so that set() rejects any List<T>. 385 Type capture(Type type) { method in class:TypeResolver.WildcardCapturer 395 return Types.newArrayType(capture(arrayType.getGenericComponentType())); 402 capture(parameterizedType.getActualTypeArguments())); 407 if (lowerBounds.length == 0) { // ? extends something changes to capture-of 409 String name = "capture#" + id.incrementAndGet() + "-of ? extends " 425 return capture(type); 428 private Type[] capture(Type[] types) { method in class:TypeResolver.WildcardCapturer 431 result[i] = capture(types[i]) [all...] |
/external/webrtc/src/modules/audio_processing/interface/ |
audio_processing.h | 37 // client-side, this will typically be the near-end (capture) and far-end 66 // // Mono capture and stereo render. 89 // // ... Capture frame arrives from the audio HAL ... 100 // // Repeate render and capture processing for the duration of the call... 263 // render and capture devices are used, particularly with webcams. 271 // and capture devices use the same nominal sample rate. Required if and only 304 // P_echo: Near-end (capture) echo signal power. 417 // on the capture device. It will require the user to provide coupling 438 // preferred on embedded devices where the capture signal level is 468 // Sets the |minimum| and |maximum| analog levels of the audio capture device [all...] |
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/v1/ |
TestingCamera2.java | 411 public void onCaptureAvailable(Image capture) { 412 if (capture.getFormat() != ImageFormat.JPEG) { 413 Log.e(TAG, "Unexpected format: " + capture.getFormat()); 416 ByteBuffer jpegBuffer = capture.getPlanes()[0].getBuffer(); 425 // TODO: this callback is not called for each capture, need figure out why. 438 Log.i(TAG, "Capture result is available"); 445 Log.i(TAG, "Capture complete"); 446 final StringBuffer info = new StringBuffer("Capture Result:\n"); 482 // Update UI for capture result 492 Log.e(TAG, "Capture failed") [all...] |
/external/clang/include/clang/Sema/ |
Initialization.h | 125 /// \brief The source location at which the capture occurs. 158 struct C Capture; 188 /// \brief Create the initialization entity for a lambda capture. 193 Capture.VarID = VarID; 194 Capture.Location = Loc.getRawEncoding(); 317 /// \brief Create the initialization entity for a lambda capture. 418 /// \brief For a lambda capture, return the capture's name. 420 assert(getKind() == EK_LambdaCapture && "Not a lambda capture!"); 421 return Capture.VarID->getName() [all...] |
/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 948 public Capture<T> capture = new Capture<T>() { field in class:NetworkPolicyManagerServiceTest.FutureCapture [all...] |
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/ |
CaptureRequestTest.java | 131 * the camera may require reset black level Since changes to certain capture 679 Log.v(TAG, "Capture request focus distance: " + testDistances[i] + " result: " 728 * @param request The capture request to control the manual focus distance 729 * @param resultListener The capture listener to recieve capture result callbacks [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/ |
ByodFlowTestActivity.java | 342 // Capture image intent can be resolved in primary profile, so test. 350 // Capture image intent cannot be resolved in primary profile, so skip test. 357 // Capture video intent can be resolved in primary profile, so test. 365 // Capture video intent cannot be resolved in primary profile, so skip test. 405 // Capture audio intent can be resolved in primary profile, so test. 413 // Capture audio intent cannot be resolved in primary profile, so skip test.
|
/external/icu/icu4c/source/i18n/ |
regexcst.txt | 150 ascii_letter named-capture doBeginNamedCapture # (?<name 179 # named-capture (?<name> ... ), position currently on the name. 181 named-capture: 182 ascii_letter n named-capture doContinueNamedCapture 183 digit_char n named-capture doContinueNamedCapture 184 '>' n term ^expr-quant doOpenCaptureParen # common w non-named capture.
|
/external/v8/src/ |
regexp.js | 306 // last pair (after the first pair) of elements of the capture array even if 309 var start = lastMatchInfo[CAPTURE(length - 2)]; 310 var end = lastMatchInfo[CAPTURE(length - 1)]; 362 var matchStart = lastMatchInfo[CAPTURE(index)]; 363 var matchEnd = lastMatchInfo[CAPTURE(index + 1)]; 374 // that there are at least two capture indeces. The array also contains
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
BottomBar.java | 248 * capture layout. 260 * capture layout. 337 * Sets a capture layout helper to query layout rect from. 353 Log.e(TAG, "Capture layout helper needs to be set first."); 469 * Returns whether the capture button is enabled. 517 * Animates bar to full width / length with video capture icon
|
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
Parser.java | 72 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. 517 * Read an int from the input stream, and capture it if necessary for debugging. Seems a small 526 if (capture) {
|
/external/clang/test/CodeGenObjC/ |
blocks.m | 74 // Actually capture the value. 76 // CHECK-NEXT: [[CAPTURE:%.*]] = load [[TEST2]]*, [[TEST2]]** [[X]] 77 // CHECK-NEXT: store [[TEST2]]* [[CAPTURE]], [[TEST2]]** [[T6]]
|
/external/google-breakpad/src/processor/ |
linked_ptr.h | 101 explicit linked_ptr(T* ptr = NULL) { capture(ptr); } 124 void reset(T* ptr = NULL) { depart(); capture(ptr); } 159 void capture(T* ptr) { function in class:google_breakpad::linked_ptr
|
/external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
gtest-linked_ptr.h | 142 explicit linked_ptr(T* ptr = NULL) { capture(ptr); } 170 capture(ptr); 198 void capture(T* ptr) { function in class:testing::internal::linked_ptr
|