/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t049treeparserdWalker.g | 7 b : ID INT+ {this.capture($ID+" "+$INT+"\n");} 8 | ^(x=ID (y=INT)+) {this.capture("^("+$x+' '+$y+")");}
|
t049treeparseraWalker.g | 8 {this.capture($ID+", "+$INT);}
|
t049treeparserbWalker.g | 8 {this.capture($ID+", "+$INT)}
|
t049treeparserfWalker.g | 8 {this.capture($ID);}
|
t049treeparsergWalker.g | 8 {this.capture($ID);}
|
t049treeparseriWalker.g | 7 {this.capture($ID+", "+x);}
|
t052importM2.g | 6 s : label=a[3] {this.capture($label.y);} ;
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
p8.cpp | 9 (void)[=, foo] () {}; // expected-error {{'&' must precede a capture when}} 13 (void)[&, &foo] () {}; // expected-error {{'&' cannot precede a capture when}} 25 (void)[&, &i]{ }; // expected-error{{'&' cannot precede a capture when the capture default is '&'}} 28 (void)[i, i]{ }; // expected-error{{'i' can appear only once in a capture list}} 29 (void)[i(0), i(1)]{ }; // expected-error{{'i' can appear only once in a capture list}} 30 (void)[i, i(1)]{ }; // expected-error{{'i' can appear only once in a capture list}} 31 (void)[i(0), i]{ }; // expected-error{{'i' can appear only once in a capture list}}
|
/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/opencv3/samples/wp8/OcvImageManipulation/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/ |
pch.h | 9 #include <Windows.Phone.Media.Capture.h> 10 #include <Windows.Phone.Media.Capture.Native.h
|
/external/v8/testing/ |
gmock-support.h | 17 class Capture { 19 Capture() : value_(), has_value_(false) {} 41 explicit CaptureEqMatcher(Capture<T>* capture) : capture_(capture) {} 61 Capture<T>* capture_; 76 // CaptureEq(capture) captures the value passed in during matching as long as it 79 inline Matcher<T> CaptureEq(Capture<T>* capture) { 80 return MakeMatcher(new internal::CaptureEqMatcher<T>(capture)); [all...] |
/external/opencv3/modules/videoio/src/ |
cap_dc1394.cpp | 154 static void icvCloseCAM_DC1394( CvCaptureCAM_DC1394* capture ); 156 static int icvGrabFrameCAM_DC1394( CvCaptureCAM_DC1394* capture ); 157 static IplImage* icvRetrieveFrameCAM_DC1394( CvCaptureCAM_DC1394* capture, int ); 159 static double icvGetPropertyCAM_DC1394( CvCaptureCAM_DC1394* capture, int property_id ); 160 static int icvSetPropertyCAM_DC1394( CvCaptureCAM_DC1394* capture, int property_id, double value ); 166 static unsigned int icvGetBestFrameRate( CvCaptureCAM_DC1394 * capture, int format, int mode); 167 static int icvResizeFrame(CvCaptureCAM_DC1394 * capture); 301 fprintf(stderr,"%s:%d: Failed to setup DMA capture with VIDEO1394\n",__FILE__,__LINE__); 312 fprintf(stderr,"%s:%d: Failed to setup DMA capture with VIDEO1394\n",__FILE__,__LINE__); 348 static void icvCloseCAM_DC1394( CvCaptureCAM_DC1394* capture ){ 1104 CvCaptureCAM_DC1394_CPP* capture = new CvCaptureCAM_DC1394_CPP; local [all...] |
/external/clang/include/clang/AST/ |
LambdaCapture.h | 24 /// \brief Describes the capture of a variable or of \c this, or of a 25 /// C++1y init-capture. 28 /// \brief Flag used by the Capture class to indicate that the given 29 /// capture was implicit. 32 /// \brief Flag used by the Capture class to indicate that the 33 /// given capture was by-copy. 35 /// This includes the case of a non-reference init-capture. 47 /// \brief Create a new capture of a variable or of \c this. 49 /// \param Loc The source location associated with this capture. 51 /// \param Kind The kind of capture (this, byref, bycopy), which mus [all...] |
/external/opencv3/samples/cpp/ |
intelperc_capture.cpp | 107 static void printStreamProperties(VideoCapture &capture) 109 size_t profilesCount = (size_t)capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_INTELPERC_PROFILE_COUNT); 111 cout << " Brightness = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_BRIGHTNESS) << endl; 112 cout << " Contrast = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_CONTRAST) << endl; 113 cout << " Saturation = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_SATURATION) << endl; 114 cout << " Hue = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_HUE) << endl; 115 cout << " Gamma = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_GAMMA) << endl; 116 cout << " Sharpness = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_SHARPNESS) << endl; 117 cout << " Gain = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_GAIN) << endl; 118 cout << " Backligh = " << capture.get(CAP_INTELPERC_IMAGE_GENERATOR | CAP_PROP_BACKLIGHT) << endl 291 VideoCapture capture; local [all...] |
starter_video.cpp | 10 * A starter sample for using OpenCV VideoCapture with capture devices, video files or image sequences 31 << "\tTo capture from a camera pass the device number. To find the device number, try ls /dev/video*" << endl 39 int process(VideoCapture& capture) { 48 capture >> frame; 53 char key = (char)waitKey(30); //delay N millis, usually long enough to display and capture input 80 VideoCapture capture(arg); //try to open string, this will attempt to open it as a video file or image sequence 81 if (!capture.isOpened()) //if this fails, try to open as a video camera, through the use of an integer param 82 capture.open(atoi(arg.c_str())); 83 if (!capture.isOpened()) { 88 return process(capture); [all...] |
/development/samples/browseable/Camera2Raw/ |
_index.jd | 8 This sample demonstrates how to use the Camera2 API to capture RAW
|
/external/libpcap/ |
pcap-sita.h | 2 * pcap-sita.h: Packet capture interface for SITA WAN devices
|
/external/testng/src/test/java/test/pholser/ |
Saboteur.java | 17 Captor.instance().capture( "Saboteur.setUpFixture" ); 22 Captor.instance().capture( "Saboteur.setUp" ); 27 Captor.instance().capture( "Saboteur.tearDown" ); 32 Captor.instance().capture( "Saboteur.tearDownFixture" );
|
/external/webrtc/webrtc/tools/e2e_quality/audio/ |
default.pa | 6 load-module module-null-sink sink_name=capture sink_properties=device.description=capture format=s16 rate=48000 channels=1
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/ |
AddListenerAction.java | 27 private boolean capture; field in class:AddListenerAction 30 if (capture) 46 return capture; 49 public void setCapture (boolean capture) { 50 this.capture = capture;
|
RemoveListenerAction.java | 27 private boolean capture; field in class:RemoveListenerAction 30 if (capture) 46 return capture; 49 public void setCapture (boolean capture) { 50 this.capture = capture;
|
/frameworks/av/include/camera/ndk/ |
NdkCameraCaptureSession.h | 54 * The definition of camera capture session state callback. 58 * @param session The camera capture session whose state is changing. 80 * This callback is called every time the session has no more capture requests to process. 83 * all of its active capture requests, and no repeating request or burst is set up.</p> 88 * This callback is called when the session starts actively processing capture requests. 90 * <p>If the session runs out of capture requests to process and calls {@link onReady}, 91 * then this callback will be invoked again once new requests are submitted for capture.</p> 99 * The capture session has dropped this frame due to an 105 * The capture session has dropped this frame due to an error in the framework. 110 /// Struct to describe a capture failur [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/delegation/ |
import.rb | 21 def capture(t) method in class:TestImportedGrammars 22 @didr_master.capture(t) 25 a : B { capture("S.a") } ; 53 def capture(t) method in class:TestImportedGrammars 54 @master_2.capture(t) 57 a[x] returns [y] : B {capture("S.a"); $y="1000";} ; 66 s : label=a[3] {capture($label.y)} ; 84 def capture(t) method in class:TestImportedGrammars 85 @master_3.capture(t) 89 capture("whatevs" 118 def capture(t) method 131 def capture(t) method 162 def capture(t) method 175 def capture(t) method 209 def capture(t) method 237 def capture(t) method 265 def capture(t) method 290 def capture(t) method [all...] |
/external/clang/test/OpenMP/ |
atomic_messages.c | 198 // Test for atomic capture 199 #pragma omp atomic capture 200 // expected-error@+2 {{the statement for 'atomic capture' must be a compound statement of form '{v = x; x binop= expr;}', '{x binop= expr; v = x;}', '{v = x; x = x binop expr;}', '{v = x; x = expr binop x;}', '{x = x binop expr; v = x;}', '{x = expr binop x; v = x;}' or '{v = x; x = expr;}', '{v = x; x++;}', '{v = x; ++x;}', '{++x; v = x;}', '{x++; v = x;}', '{v = x; x--;}', '{v = x; --x;}', '{--x; v = x;}', '{x--; v = x;}' where x is an l-value expression with scalar type}} 203 #pragma omp atomic capture 204 // expected-error@+2 {{the statement for 'atomic capture' must be an expression statement of form 'v = ++x;', 'v = --x;', 'v = x++;', 'v = x--;', 'v = x binop= expr;', 'v = x = x binop expr' or 'v = x = expr binop x', where x and v are both l-value expressions with scalar type}} 207 #pragma omp atomic capture 208 // expected-error@+2 {{the statement for 'atomic capture' must be an expression statement of form 'v = ++x;', 'v = --x;', 'v = x++;', 'v = x--;', 'v = x binop= expr;', 'v = x = x binop expr' or 'v = x = expr binop x', where x and v are both l-value expressions with scalar type}} 211 #pragma omp atomic capture 212 // expected-error@+2 {{the statement for 'atomic capture' must be an expression statement of form 'v = ++x;', 'v = --x;', 'v = x++;', 'v = x--;', 'v = x binop= expr;', 'v = x = x binop expr' or 'v = x = expr binop x', where x and v are both l-value expressions with scalar type}} 215 #pragma omp atomic capture [all...] |
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
CallbackHandlerTest.java | 63 Mockito.verify(mEmengencyListener).setEmergencyCallsOnly(captor.capture()); 83 Mockito.verify(mSignalCallback).setWifiIndicators(enableArg.capture(), 84 statusArg.capture(), qsArg.capture(), inArg.capture(), outArg.capture(), 85 descArg.capture()); 119 Mockito.verify(mSignalCallback).setMobileDataIndicators(statusArg.capture(), 120 qsArg.capture(), typeIconArg.capture(), qsTypeIconArg.capture(), inArg.capture() [all...] |