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

1 2 3 4 5 6 7 8 9

  /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/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/littlemock/src/com/google/testing/littlemock/
ArgumentCaptor.java 22 * Simple capture object for use in tests.
26 * @param <T> the type we are going to capture
35 /** Use this argument captor to perform the capture. */
36 public T capture(); method in interface:ArgumentCaptor
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
updatechangelogswithreview_unittest.py 37 capture = OutputCapture()
40 capture.assert_outputs(self, step._guess_reviewer_from_bug, [75], expected_stderr=expected_stderr)
43 capture = OutputCapture()
48 capture.assert_outputs(self, step.run, [{}])
closebugforlanddiff_unittest.py 37 capture = OutputCapture()
40 capture.assert_outputs(self, step.run, [{"commit_text" : "Mock commit text"}], expected_stderr=expected_stderr)
preparechangelog_unittest.py 40 capture = OutputCapture()
49 capture.assert_outputs(self, step.run, [state])
suggestreviewers_unittest.py 42 capture = OutputCapture()
46 capture.assert_outputs(self, step.run, [{"bug_id": "123"}], expected_stdout=expected_stdout, expected_stderr=expected_stderr)
  /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/CXX/expr/expr.prim/expr.prim.lambda/
p14.cpp 3 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);
  /external/regex-re2/re2/
nfa.cc 62 const char** capture; member in struct:re2::NFA::Thread
69 const char* cap_j; // if j>=0, set capture[j] = cap_j before processing ip
88 // to the workqueue q with associated capture info.
90 const char* p, const char** capture);
100 // Returns text version of capture information, for debugging.
101 string FormatCapture(const char** capture);
152 delete[] t->capture;
168 t->capture = new const char*[ncapture_];
187 const char* p, const char** capture) {
204 capture[a.j] = a.cap_j
    [all...]
  /cts/tests/src/android/webkit/cts/
WebViewOnUiThread.java 438 public String capture() {
447 public WebSettings capture() {
456 public WebBackForwardList capture() {
465 public Bitmap capture() {
474 public String capture() {
483 public Integer capture() {
492 public Integer capture() {
501 public Integer capture() {
510 public Boolean capture() {
519 public Boolean capture() {
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
EmojiTest.java 75 mBitmapA = ccanvas.capture(Character.toChars(comparedCodePoints[i][0]));
76 mBitmapB = ccanvas.capture(Character.toChars(comparedCodePoints[i][1]));
82 mBitmapA = cviewA.capture(Character.toChars(comparedCodePoints[i][0]));
84 mBitmapB = cviewB.capture(Character.toChars(comparedCodePoints[i][1]));
89 mBitmapA = cedittextA.capture(Character.toChars(comparedCodePoints[i][0]));
91 mBitmapB = cedittextB.capture(Character.toChars(comparedCodePoints[i][1]));
95 mBitmapA = cwebview.capture(Character.toChars(comparedCodePoints[i][0]));
96 mBitmapB = cwebview.capture(Character.toChars(comparedCodePoints[i][1]));
150 Bitmap capture(char c[]) { method in class:EmojiTest.CaptureCanvas
172 Bitmap capture(char c[]) method in class:EmojiTest.CaptureTextView
195 Bitmap capture(char c[]) { method in class:EmojiTest.CaptureEditText
221 Bitmap capture(char c[]) { method in class:EmojiTest.CaptureWebView
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
scope-003.js 54 var self = this; // capture a reference to the global object;
66 capture(this.toString());
71 capture(this.toString());
96 function capture(val) function
  /external/webkit/Source/WebCore/platform/
FileChooser.h 54 virtual String capture() = 0;
86 String capture() const { return m_client ? m_client->capture() : String(); } function in class:WebCore::FileChooser
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/
ScreenshotAppState.java 28 private boolean capture = false; field in class:ScreenshotAppState
54 capture = true;
80 if (capture){
81 capture = false;
  /external/antlr/antlr-3.4/runtime/Python/tests/
t026actions.py 16 def capture(self, t): member in class:t026actions.parserClass.TParser
36 def capture(self, t): member in class:t026actions.lexerClass.TLexer
  /external/webkit/Source/WebCore/bindings/gobject/
GObjectEventListener.cpp 34 GObjectEventListener::GObjectEventListener(GObject* object, EventTarget* target, const char* domEventName, GCallback handler, bool capture, void* userData)
40 , m_capture(capture)
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/mock/
Mocks.java 19 import static org.easymock.EasyMock.capture;
31 import org.easymock.Capture;
51 final Capture<IClasspathEntry[]> capturedEntries = new Capture<IClasspathEntry[]>();
52 Capture<IPath> capturedOutput = new Capture<IPath>();
67 javaProject.setRawClasspath(capture(capturedEntries), isA(IProgressMonitor.class)); method
70 javaProject.setRawClasspath(capture(capturedEntries), capture(capturedOutput), method
74 final Capture<String> capturedCompliance = new Capture<String>()
103 javaProject.setOption(eq(JavaCore.COMPILER_COMPLIANCE), capture(capturedCompliance)); method
105 javaProject.setOption(eq(JavaCore.COMPILER_SOURCE), capture(capturedSource)); method
108 capture(capturedTarget)); method
    [all...]
  /external/chromium/base/memory/
linked_ptr.h 84 explicit linked_ptr(T* ptr = NULL) { capture(ptr); }
113 capture(ptr);
150 void capture(T* ptr) { function in class:linked_ptr
  /external/chromium/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
  /external/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
  /external/libvpx/libvpx/third_party/googletest/src/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
  /external/llvm/utils/unittest/googletest/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
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-linked_ptr.h 142 explicit linked_ptr(T* ptr = NULL) { capture(ptr); }
170 capture(ptr);
207 void capture(T* ptr) { function in class:testing::internal::linked_ptr
  /external/protobuf/gtest/include/gtest/internal/
gtest-linked_ptr.h 142 explicit linked_ptr(T* ptr = NULL) { capture(ptr); }
170 capture(ptr);
207 void capture(T* ptr) { function in class:testing::internal::linked_ptr

Completed in 818 milliseconds

1 2 3 4 5 6 7 8 9