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

1 2 3 4 5 6 7

  /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/chromium_org/content/public/common/
file_chooser_params.h 50 // See http://www.w3.org/TR/html-media-capture for more information.
52 bool capture; member in struct:content::FileChooserParams
  /external/chromium_org/third_party/WebKit/public/web/
WebFileChooserParams.h 67 // See http://www.w3.org/TR/html-media-capture/ for the semantics of the
68 // capture attribute. If |useMediaCapture| is true, the media types
70 // environment using a media capture mechanism. |capture| is deprecated and
72 WebString capture; member in struct:blink::WebFileChooserParams
  /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']))
43 def capture(args, env=None): function
45 """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/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/chromium_org/base/memory/
linked_ptr.h 83 explicit linked_ptr(T* ptr = NULL) { capture(ptr); }
112 capture(ptr);
149 void capture(T* ptr) { function in class:linked_ptr
  /external/chromium_org/media/cdm/ppapi/
linked_ptr.h 86 explicit linked_ptr(T* ptr = NULL) { capture(ptr); }
115 capture(ptr);
154 void capture(T* ptr) { function in class:linked_ptr
  /external/chromium_org/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/chromium_org/third_party/mesa/src/src/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/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/mesa3d/src/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/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
  /ndk/sources/third_party/googletest/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
  /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...]

Completed in 612 milliseconds

1 2 3 4 5 6 7