/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
p12.cpp | 46 [i] {}(); // expected-error{{variable 'i' cannot be implicitly captured in a lambda with no capture-default specified}} 68 auto m4 = [&,j] { // expected-error{{variable 'j' cannot be implicitly captured in a lambda with no capture-default specified}} 69 int x = n; // expected-error{{variable 'n' cannot be implicitly captured in a lambda with no capture-default specified}} 71 x += i; // expected-error{{variable 'i' cannot be implicitly captured in a lambda with no capture-default specified}}
|
p11-1y.cpp | 16 // the identifier in the init-capture hides any declaration 23 (void) [c("bar")] () -> decltype(c) { // outer c, not init-capture 47 auto bad_init_2 = [a(1, 2)] {}; // expected-error {{initializer for lambda capture 'a' contains multiple expressions}} 50 auto bad_init_5 = [a(overload_fn)] {}; // expected-error {{cannot deduce type for lambda capture 'a' from initializer of type '<overloaded function}} 51 auto bad_init_6 = [a{overload_fn}] {}; // expected-error {{cannot deduce type for lambda capture 'a' from initializer list}} 52 auto bad_init_7 = [a{{1}}] {}; // expected-error {{cannot deduce type for lambda capture 'a' from nested initializer list}} 54 template<typename...T> void pack_1(T...t) { (void)[a(t...)] {}; } // expected-error {{initializer missing for lambda capture 'a'}}
|
/external/libpcap/ |
pcap_can_set_rfmon.3pcap | 23 not-yet-activated capture handle 35 checks whether monitor mode could be set on a capture handle when 42 if the capture source specified when the handle was created doesn't 48 if called on a capture handle that has been activated, or
|
pcap_setnonblock.3pcap | 23 non-blocking mode on a capture device 42 puts a capture handle into ``non-blocking'' mode, or takes it out 51 ``non-blocking'' mode, an attempt to read from the capture descriptor 65 a capture handle is not in ``non-blocking mode''; a call to 70 returns the current ``non-blocking'' state of the capture descriptor; it
|
pcap.3pcap.in | 22 pcap \- Packet Capture library 32 The Packet Capture library 33 provides a high level interface to packet capture systems. All packets 38 .SS Opening a capture handle for reading 39 To open a handle for a live capture, given the name of the network or 40 other interface on which the capture should be done, call 45 To obtain a list of devices that can be opened for a live capture, call 78 which is the handle used for reading packets from the capture stream or 79 the ``savefile'', and for finding out information about the capture 84 The options that can be set on a capture handle includ [all...] |
pcap-tstamp.manmisc.in | 30 the operating system running on the host on which the capture is being 41 capture device and when the networking stack time-stamps the packet; 68 Some capture devices on some platforms can provide time stamps for 77 Depending on the capture device and the software on the host, libpcap 80 routine provides, for a packet capture handle created by 84 a list of time stamp types supported by the capture device for that 87 offered for that capture device. If the list is not empty, the 102 Time stamp provided by the host on which the capture is being done. The 107 Time stamp provided by the host on which the capture is being done. 112 Time stamp provided by the host on which the capture is being done [all...] |
/packages/apps/Camera2/src_pd/com/android/camera/stats/ |
CaptureStats.java | 6 * Simple statistics of internal app behavior during capture.
|
/system/media/audio_effects/include/audio_effects/ |
effect_visualizer.h | 32 #define VISUALIZER_CAPTURE_SIZE_MAX 1024 // maximum capture size in samples 33 #define VISUALIZER_CAPTURE_SIZE_MIN 128 // minimum capture size in samples 48 VISUALIZER_PARAM_CAPTURE_SIZE, // Sets the number PCM samples in the capture. 57 VISUALIZER_CMD_CAPTURE = EFFECT_CMD_FIRST_PROPRIETARY, // Gets the latest PCM capture.
|
/cts/apps/CameraITS/tests/scene0/ |
test_capture_result_dump.py | 23 """Test that a capture result is returned from a manual capture; dump it. 27 # Arbitrary capture request exposure values; image content is not
|
/external/autotest/client/cros/video/ |
import_screenshot_capturer.py | 15 Uses utility capture but specifies the geometry/dimensions of final image. 38 def capture(self, filename): member in class:ImportScreenShotCapturer 40 Capture the screenshot.
|
/external/libpcap/ChmodBPF/ |
ChmodBPF | 13 # group can use programs that capture or send raw packets. 17 # so only that user and the super-user can capture or send raw 20 # admin group can capture packets.
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/action/ |
CaptureLayersAction.java | 31 putValue(NAME, "Capture PSD"); 32 putValue(SHORT_DESCRIPTION, "Capture PSD"); 33 putValue(LONG_DESCRIPTION, "Capture current window into a Photoshop PSD file");
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
Camera2SurfaceViewTestCase.java | 201 * Start camera preview by using the given request, preview size and capture 212 * capture is available. 246 * @throws CameraAccessException When create capture request from camera fails 270 * Setup still (JPEG) capture configuration and start preview. 275 * @param previewRequest The capture request to be used for preview 276 * @param stillRequest The capture request to be used for still capture 278 * @param stillSz The still capture size 279 * @param resultListener Capture result listener 280 * @param imageListener The still capture image listene [all...] |
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
NetworkControllerBaseTest.java | 266 Mockito.verify(mCallbackHandler, Mockito.atLeastOnce()).setNoSims(hasNoSimsArg.capture()); 278 ArgumentCaptor.forClass(IconState.class).capture(), 279 iconArg.capture(), 280 ArgumentCaptor.forClass(Integer.class).capture(), 281 typeIconArg.capture(), dataInArg.capture(), dataOutArg.capture(), 282 ArgumentCaptor.forClass(String.class).capture(), 283 ArgumentCaptor.forClass(String.class).capture(), 284 ArgumentCaptor.forClass(Boolean.class).capture(), [all...] |
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t049treeparser.py | 16 def capture(self, t): member in class:T.walkerClass.TWalker 72 {self.capture("\%s, \%s" \% ($ID, $INT))} 106 {self.capture(str($ID)+", "+str($INT))} 141 b : ID INT {self.capture(str($ID)+" "+str($INT)+'\n')} 142 | ^(ID INT) {self.capture("^("+str($ID)+" "+str($INT)+')');} 176 b : ID INT+ {self.capture(str($ID)+" "+str($INT)+"\n")} 177 | ^(x=ID (y=INT)+) {self.capture("^("+str($x)+' '+str($y)+')')} 210 a : ID INT+ PERIOD {self.capture("alt 1")} 211 | ID INT+ SEMI {self.capture("alt 2")} 265 {self.capture(str($ID)) [all...] |
/external/webrtc/webrtc/modules/desktop_capture/ |
cropping_window_capturer.cc | 34 void CroppingWindowCapturer::Capture(const DesktopRegion& region) { 43 screen_capturer_->Capture(region); 45 window_capturer_->Capture(region); 81 window_capturer_->Capture(DesktopRegion()); 86 LOG(LS_WARNING) << "ScreenCapturer failed to capture a frame";
|
/device/google/dragon/ |
mixer_paths_0.xml | 13 <ctl name="ADC1 Capture Volume" value="23"/> 14 <ctl name="ADC2 Capture Volume" value="23"/> 15 <ctl name="ADC3 Capture Volume" value="23"/> 48 Stereo1 and Stereo2 rt5677 datapaths are used for capture 49 stream. Capture can be up to 4 channels (4 DMICs) and we need 80 <ctl name="ADC3 Capture Volume" value="28"/> 88 <ctl name="ADC3 Capture Volume" value="23"/> 107 <ctl name="ADC1 Capture Volume" value="27"/> 117 <ctl name="ADC1 Capture Volume" value="31"/> 122 <ctl name="ADC1 Capture Volume" value="31"/ [all...] |
/external/autotest/server/site_tests/network_WiFi_DarkResumeActiveScans/ |
network_WiFi_DarkResumeActiveScans.py | 27 Stop packet capture and check that no probe requests launched by the DUT 28 with MAC address |mac| are found in the packet capture. Fails test if 33 logging.info('Stopping packet capture') 37 'capture but got %d captures instead.' % 40 logging.info('Analyzing packet capture...') 49 raise error.TestFail('Packet capture contained probe requests!') 51 logging.info('Packet capture contained no probe requests') 83 # Start capture after suspend concludes in case probe requests 96 # Check for packet capture before waking the DUT with 122 # Start capture after suspend concludes in case probe request [all...] |
/device/htc/flounder/ |
mixer_paths_0.xml | 9 <ctl name="Mono ADC Capture Volume" value="77"/> 36 <ctl name="Mono ADC Capture Volume" value="93"/> 43 <ctl name="Mono ADC Capture Volume" value="93"/> 51 <ctl name="Mono ADC Capture Volume" value="82"/> 68 <ctl name="Mono ADC Capture Volume" value="66"/> 81 <ctl name="Mono ADC Capture Volume" value="47"/> 90 <ctl name="Mono ADC Capture Volume" value="66"/>
|
/frameworks/base/core/java/android/hardware/camera2/ |
TotalCaptureResult.java | 28 * <p>The total assembled results of a single image capture from the image sensor.</p> 30 * <p>Contains the final configuration for the capture hardware (sensor, lens, 35 * {@link CaptureRequest}. All properties listed for capture requests can also 36 * be queried on the capture result, to determine the final values used for 37 * capture. The result also includes additional metadata about the state of the 38 * camera device during the capture.</p> 106 * Get the ID of the session where the capture request of this result was submitted.
|
/external/parameter-framework/upstream/utility/test/ |
utility.cpp | 60 CAPTURE(Catch::toString(test.input)); 86 CAPTURE(Catch::toString(test.input)); 88 CAPTURE(test.separator); 120 CAPTURE(Catch::toString(test.input)); 121 CAPTURE(test.keyValueSep); 122 CAPTURE(test.itemSep); 143 CAPTURE(test.initial); 144 CAPTURE(test.title); 160 CAPTURE(str); 168 CAPTURE(str) [all...] |
/frameworks/av/include/camera/ndk/ |
NdkCaptureRequest.h | 53 * ACaptureRequest is an opaque type that contains settings and output targets needed to capture 56 * <p>ACaptureRequest contains the configuration for the capture hardware (sensor, lens, flash), 59 * capture.</p> 64 * {@link ACameraCaptureSession_setRepeatingRequest} to capture images from a camera.</p> 74 * high-resolution still capture would also include a {@link ANativeWindow} from a 116 * @param output the output {@link ACameraOutputTarget} to be added to capture request. 131 * @param output the output {@link ACameraOutputTarget} to be removed from capture request. 154 * <li>{@link ACAMERA_ERROR_METADATA_NOT_FOUND} if the capture request does not contain an 169 * ACaptureRequest_setEntry_*. To get new list of tags after updating capture request, 182 * Set/change a camera capture control entry with unsigned 8 bits data type [all...] |
/external/webrtc/webrtc/modules/video_capture/windows/ |
video_capture_ds.cc | 51 RELEASE_AND_CLEAR(_captureFilter); // release the capture device 81 "Failed to create capture filter."); 108 "Failed to add the capture device to the graph."); 135 // This is done so that no one else can use the capture device. 144 "Failed to Pause the Capture device. Is it already occupied? %d.", 149 "Capture device '%s' initialized.", deviceUniqueIdUTF8); 171 "Failed to start the Capture device."); 185 "Failed to stop the capture graph. %d", hr); 236 // Store the new expected capture delay 256 "Can't get the Capture format settings.") [all...] |
/external/opencv3/doc/tutorials/highgui/ |
kinect_openni.markdown | 55 VideoCapture capture( CAP_OPENNI ); 59 capture >> depthMap; 67 VideoCapture capture(0); // or CAP_OPENNI 73 capture.grab(); 75 capture.retrieve( depthMap, CAP_OPENNI_DEPTH_MAP ); 76 capture.retrieve( bgrImage, CAP_OPENNI_BGR_IMAGE ); 85 VideoCapture capture( CAP_OPENNI ); 86 capture.set( CAP_OPENNI_IMAGE_GENERATOR_OUTPUT_MODE, CAP_OPENNI_VGA_30HZ ); 87 cout << "FPS " << capture.get( CAP_OPENNI_IMAGE_GENERATOR+CAP_PROP_FPS ) << endl; 99 bool isImageGeneratorPresent = capture.get( CAP_PROP_OPENNI_IMAGE_GENERATOR_PRESENT ) != 0; // or == [all...] |
/external/opencv3/doc/py_tutorials/py_gui/py_video_display/ |
py_video_display.markdown | 8 - Learn to capture from Camera and display it. 11 Capture Video from Camera 14 Often, we have to capture live stream with camera. OpenCV provides a very simple interface to this. 15 Let's capture a video from the camera (I am using the in-built webcam of my laptop), convert it into 18 To capture a video, you need to create a **VideoCapture** object. Its argument can be either the 21 the second camera by passing 1 and so on. After that, you can capture frame-by-frame. But at the 22 end, don't forget to release the capture. 30 # Capture frame-by-frame 41 # When everything done, release the capture 48 Sometimes, cap may not have initialized the capture. In that case, this code shows error. You ca [all...] |