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

1 2 3 4 5 6

  /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/llvm/utils/Target/ARM/
analyze-match-table.py 49 from lit.Util import capture namespace
50 llvm_obj_root = capture(["llvm-config", "--obj-root"])
  /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/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
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...]
t052import.py 26 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(self, t)
    [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/llvm/utils/lit/lit/
Util.py 15 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/mockito/src/org/mockito/
ArgumentCaptor.java 14 * Use it to capture argument values for further assertions.
23 * verify(mock).doSomething(argument.capture());
74 * verify(mock).doSomething(argument.capture());
88 * Use it to capture the argument. This method <b>must be used inside of verification</b>.
97 public T capture() { method in class:ArgumentCaptor
103 * Use it to capture the variable arguments. This method <b>must be used inside of verification</b>.
150 * verify(mock, times(2)).doSomething(peopleCaptor.capture());
  /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/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/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
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
EnergyProbe.java 56 public int capture(int freq) throws InterruptedException { method in class:EnergyProbe
  /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...]
  /packages/apps/Camera/tests/src/com/android/camera/activity/
CameraTestCase.java 142 mShutterCallback.capture(), mRawPictureCallback.capture(),
143 (PictureCallback) anyObject(), mJpegPictureCallback.capture());
147 mAutoFocusCallback.capture());
  /packages/apps/Gallery2/tests_camera/src/com/android/camera/activity/
CameraTestCase.java 142 mShutterCallback.capture(), mRawPictureCallback.capture(),
143 (PictureCallback) anyObject(), mJpegPictureCallback.capture());
147 mAutoFocusCallback.capture());
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
functional.rb 204 def capture( *args ) method in class:ANTLR3.Test.CaptureOutput
  /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/opencv/otherlibs/highgui/
cvcap_socket.cpp 47 // capture video from a socket connection
183 LOGV("Done closing Capture Socket");
213 LOGV("You haven't opened the socket capture yet!");
296 CVCapture_Socket* capture = new CVCapture_Socket; local
297 if ( capture-> open(address, port, width, height) )
298 return capture;
300 delete capture;

Completed in 2198 milliseconds

1 2 3 4 5 6