HomeSort by relevance Sort by last modified time
    Searched full:capture (Results 1 - 25 of 2057) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t052importS1.g 6 this.capture = function(t) {
7 this.gt052importM1.capture(t);
11 a : B { this.capture("S.a") } ;
t052importS2.g 6 this.capture = function(t) {
7 this.gt052importM2.capture(t);
10 a[x] returns [y] : B {this.capture("S.a"); $y="1000";} ;
t052importS3.g 6 this.capture = function(t) {
7 this.gt052importM3.capture(t);
10 this.capture("foo");
t052importS4.g 6 this.capture = function(t) {
7 this.gt052importM4.capture(t);
10 a : b {this.capture("S.a");} ;
t052importS5.g 7 this.capture = function(t) {
8 this.gt052importM5.capture(t);
11 x : A {this.capture("S.x ");} ;
t052importS6.g 6 this.capture = function(t) {
7 this.gt052importM6.capture(t);
10 a : b { this.capture("S.a") } ;
t052importS7.g 6 this.capture = function(t) {
7 this.gt052importM7.capture(t);
10 A : 'a' {this.capture("S.A ");} ;
t052importS8.g 6 this.capture = function(t) {
7 this.gt052importM8.capture(t);
10 A : 'a' {this.capture("S.A");} ;
t052importT4.g 6 this.capture = function(t) {
7 this.gt052importM4.capture(t);
10 a : B {this.capture("T.a");} ; // hidden by S.a
t052importT5.g 7 this.capture = function(t) {
8 this.gt052importM5.capture(t);
11 y : A {this.capture("T.y");} ;
t049treeparsereWalker.g 7 a : ID INT+ PERIOD {this.capture("alt 1");}
8 | ID INT+ SEMI {this.capture("alt 2");}
t052importM8.g 6 A : 'a' {this.capture("M.A ");} ;
t049treeparsercWalker.g 7 b : ID INT {this.capture($ID+" "+$INT+"\n");}
8 | ^(ID INT) {this.capture("^("+$ID+" "+$INT+")");}
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);}
  /external/antlr/antlr-3.4/runtime/Python/tests/
t026actions.g 12 self.capture('init;')
15 self.capture('after;')
20 self.capture('catch;')
24 self.capture('finally;')
32 self.capture('action;')
33 self.capture('\%r \%r \%r \%r \%r \%r \%r \%r;' \% ($text, $type, $line, $pos, $index, $channel, $start, $stop))
35 self.capture(self.foobar)
  /external/v8/testing/
gmock-support.h 13 class Capture {
15 Capture() : value_(), has_value_(false) {}
37 explicit CaptureEqMatcher(Capture<T>* capture) : capture_(capture) {}
57 Capture<T>* capture_;
63 // CaptureEq(capture) captures the value passed in during matching as long as it
66 Matcher<T> CaptureEq(Capture<T>* capture) {
67 return MakeMatcher(new internal::CaptureEqMatcher<T>(capture));
    [all...]
  /external/easymock/src/org/easymock/
CaptureType.java 19 * Defines how arguments will be captured by a <tt>Capture</tt> object
21 * @see Capture
25 * Do not capture anything
30 * Will capture the argument of the first matching call
35 * Will capture the argument of the last matching call
40 * Will capture, in order, the arguments of each matching calls
  /external/clang/test/CodeGen/
builtins-ms.c 4 void capture(void *);
6 capture(_alloca(n));
8 // CHECK: call void @capture(i8* %[[arg]])
  /external/guava/guava-tests/test/com/google/common/reflect/
TypeResolverTest.java 44 Type t1 = new TypeCapture<T>() {}.capture();
58 Type t = new TypeCapture<List<T>>() {}.capture();
64 Type t = new TypeCapture<T[]>() {}.capture();
90 Type t1 = new TypeCapture<T1>() {}.capture();
91 Type t2 = new TypeCapture<T2>() {}.capture();
96 Type t = new TypeCapture<T>() {}.capture();
98 .where(new TypeCapture<T[]>() {}.capture(), String[].class)
103 Type t = new TypeCapture<T>() {}.capture();
105 new TypeResolver().where(new TypeCapture<T[]>() {}.capture(), int[].class).resolveType(t));
109 Type t = new TypeCapture<T>() {}.capture();
    [all...]
  /external/opencv/otherlibs/highgui/
cvcap.cpp 64 CV_IMPL IplImage* cvQueryFrame( CvCapture* capture )
66 return capture ? capture->queryFrame() : 0;
70 CV_IMPL int cvGrabFrame( CvCapture* capture )
72 return capture ? capture->grabFrame() : 0;
75 CV_IMPL IplImage* cvRetrieveFrame( CvCapture* capture )
77 return capture ? capture->retrieveFrame() : 0;
80 CV_IMPL double cvGetCaptureProperty( CvCapture* capture, int id
    [all...]
  /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/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...]
  /development/samples/browseable/Camera2Raw/
_index.jd 8 This sample demonstrates how to use the Camera2 API to capture RAW

Completed in 669 milliseconds

1 2 3 4 5 6 7 8 91011>>