Searched defs:capture (Results 1 - 25 of 97) sorted by relevance

1234

/external/antlr/antlr-3.4/runtime/Ruby/test/functional/delegation/
H A Dimport.rb21 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("whatev
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/llvm/utils/Target/ARM/
H A Danalyze-match-table.py49 from lit.Util import capture namespace
50 llvm_obj_root = capture(["llvm-config", "--obj-root"])
/external/swiftshader/third_party/LLVM/utils/Target/ARM/
H A Danalyze-match-table.py49 from lit.Util import capture namespace
50 llvm_obj_root = capture(["llvm-config", "--obj-root"])
/external/guava/guava/src/com/google/common/reflect/
H A DTypeCapture.java32 final Type capture() { method in class:TypeCapture
/external/testng/src/test/java/test/pholser/
H A DCaptor.java27 public void capture( String aString ) { method in class:Captor
/external/autotest/client/cros/video/
H A Dimport_screenshot_capturer.py15 Uses utility capture but specifies the geometry/dimensions of final image.
38 def capture(self, filename): member in class:ImportScreenShotCapturer
H A Dchameleon_screenshot_capturer.py15 Provides an interface to capture a dut screenshot using a Chameleon Board.
19 c.capture(filename)
84 def capture(self, filename, box=None): member in class:ChameleonScreenshotCapturer
/external/mockito/src/main/java/org/mockito/
H A DArgumentCaptor.java14 * Use it to capture argument values for further assertions.
23 * verify(mock).doSomething(argument.capture());
31 * verify(mock).varArgMethod(varArgs.capture());
73 * Use it to capture the argument. This method <b>must be used inside of verification</b>.
82 public T capture() { method in class:ArgumentCaptor
110 * verify(mock, times(2)).doSomething(peopleCaptor.capture());
123 * verify(mock).countPeople(peopleCaptor.capture());
/external/tensorflow/tensorflow/core/lib/strings/
H A Dscanner.cc44 bool Scanner::GetResult(StringPiece* remaining, StringPiece* capture) { argument
51 if (capture != nullptr) {
53 *capture = StringPiece(capture_start_, end - capture_start_);
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt026actions.py16 def capture(self, t): member in class:t026actions.parserClass.TParser
36 def capture(self, t): member in class:t026actions.lexerClass.TLexer
H A Dt049treeparser.py16 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(st
[all...]
H A Dt052import.py26 def capture(self, t): member in class:T.parserClass.TParser
53 def capture(self, t): member in class:T.lexerClass.TLexer
137 def capture(self, t):
138 self.gM1.capture(t)
142 a : B { self.capture("S.a") } ;
195 def capture(self, t):
196 self.gM2.capture(t)
198 a[x] returns [y] : B {self.capture("S.a"); $y="1000";} ;
208 s : label=a[3] {self.capture($label.y);} ;
230 def capture(sel
[all...]
/external/autotest/client/cros/chameleon/
H A Dchameleon_video_capturer.py14 Wraps around chameleon APIs to provide an easy way to capture video frames.
40 def capture(self, player, max_frame_count, box=None): member in class:ChameleonVideoCapturer
46 @param max_frame_count: int, maximum total number of frames to capture.
H A Dscreen_capture.py5 """Classes to do screen capture."""
31 """A class to capture the screen on Chameleon.
33 Calling its member method capture() captures the screen.
43 def capture(self): member in class:CommonChameleonScreenCapturer
60 """A class to capture the screen on a VGA port of Chameleon.
62 Calling its member method capture() captures the screen.
72 def capture(self): member in class:VgaChameleonScreenCapturer
89 """A class to capture the external screen on Chrome OS.
91 Calling its member method capture() captures the screen.
101 def capture(sel member in class:CrosExternalScreenCapturer
123 def capture(self): member in class:CrosInternalScreenCapturer
145 def capture(self): member in class:CrosCalibrationImageCapturer
[all...]
/external/clang/test/OpenMP/
H A Datomic_messages.cpp336 T capture() { function
338 // Test for atomic capture
339 #pragma omp atomic capture
340 // 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}}
343 #pragma omp atomic capture
344 // 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}}
347 #pragma omp atomic capture
348 // 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}}
351 #pragma omp atomic capture
352 // expected-error@+2 {{the statement for 'atomic capture' mus
508 int capture() { function
[all...]
/external/easymock/src/org/easymock/internal/matchers/
H A DCaptures.java28 private final Capture<T> capture; field in class:Captures
33 this.capture = captured;
37 buffer.append("capture(").append(capture).append(")");
52 capture.setValue(potentialValue);
/external/opencv/otherlibs/highgui/
H A Dcvcap.cpp64 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, in argument
85 cvSetCaptureProperty( CvCapture* capture, int id, double value ) argument
[all...]
/external/swiftshader/third_party/LLVM/utils/lit/lit/
H A DUtil.py15 return int(capture(['sysctl', '-n', 'hw.ncpu']))
42 def capture(args, env=None): function
44 """capture(command) - Run the given command (or argv list) in a shell and
/external/v8/testing/
H A Dgmock-support.h41 explicit CaptureEqMatcher(Capture<T>* capture) : capture_(capture) {} argument
76 // CaptureEq(capture) captures the value passed in during matching as long as it
79 inline Matcher<T> CaptureEq(Capture<T>* capture) { argument
80 return MakeMatcher(new internal::CaptureEqMatcher<T>(capture));
/external/llvm/utils/lit/lit/
H A Dutil.py38 return int(capture(['sysctl', '-n', 'hw.ncpu']))
66 def capture(args, env=None): function
67 """capture(command) - Run the given command (or argv list) in a shell and
/external/mockito/src/test/java/org/mockitousage/annotation/
H A DCaptorAnnotationBasicTest.java44 void save(Person capture); argument
60 verify(peopleRepository).save(captor.capture());
73 verify(peopleRepository).save(captor.capture());
87 verify(peopleRepository).save((Person) genericLessCaptor.capture());
102 verify(mock).listArgMethod(genericListCaptor.capture());
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dfunctional.rb204 def capture( *args ) method in class:ANTLR3.Test.CaptureOutput
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp14.cpp3 template<typename T> void capture(const T&);
17 (void)[nc] { }; // expected-error{{capture of variable 'nc' as type 'NonCopyable' calls private copy constructor}}
19 ncr.foo(); // expected-error{{capture of variable 'ncr' as type 'NonCopyable' calls private copy constructor}}
49 capture(array[0]);
63 capture(a);
64 capture(b);
99 void capture(X &x) { function in namespace:rdar14468891
100 [x]() {}(); // expected-error{{by-copy capture of value of abstract type 'rdar14468891::X'}}
108 auto& y = param; // expected-error{{by-copy capture of variable 'param' with incomplete type 'const rdar15560464::X'}}
/external/clang/tools/scan-build-py/libscanbuild/
H A Danalyze.py10 -- Intercept: capture the compilation command during the build,
25 from libscanbuild.intercept import capture namespace
55 # run build command and capture compiler executions
56 exit_code = capture(args, bin_dir)
90 check the compiler and capture the location for the build process. """
H A Dintercept.py6 """ This module is responsible to capture the compiler invocation of any
39 __all__ = ['capture', 'intercept_build_main', 'intercept_build_wrapper']
63 return capture(args, bin_dir)
66 def capture(args, bin_dir): function

Completed in 2907 milliseconds

1234