Home
last modified time | relevance | path

Searched refs:capture (Results 1 – 25 of 373) sorted by relevance

12345678910>>...15

/external/clang/test/OpenMP/
Datomic_messages.cpp336 T capture() { in capture() function
339 #pragma omp atomic capture in capture()
343 #pragma omp atomic capture in capture()
347 #pragma omp atomic capture in capture()
351 #pragma omp atomic capture in capture()
355 #pragma omp atomic capture in capture()
359 #pragma omp atomic capture in capture()
363 #pragma omp atomic capture in capture()
367 #pragma omp atomic capture in capture()
371 #pragma omp atomic capture in capture()
[all …]
Datomic_messages.c199 #pragma omp atomic capture in captureint()
203 #pragma omp atomic capture in captureint()
207 #pragma omp atomic capture in captureint()
211 #pragma omp atomic capture in captureint()
215 #pragma omp atomic capture in captureint()
219 #pragma omp atomic capture in captureint()
223 #pragma omp atomic capture in captureint()
227 #pragma omp atomic capture in captureint()
231 #pragma omp atomic capture in captureint()
235 #pragma omp atomic capture in captureint()
[all …]
Datomic_capture_codegen.cpp83 #pragma omp atomic capture in main()
88 #pragma omp atomic capture in main()
92 #pragma omp atomic capture in main()
97 #pragma omp atomic capture in main()
116 #pragma omp atomic capture in main()
132 #pragma omp atomic capture in main()
137 #pragma omp atomic capture in main()
153 #pragma omp atomic capture in main()
169 #pragma omp atomic capture in main()
185 #pragma omp atomic capture in main()
[all …]
Datomic_ast_print.cpp21 #pragma omp atomic capture in foo()
23 #pragma omp atomic capture in foo()
36 #pragma omp atomic seq_cst capture in foo()
38 #pragma omp atomic capture seq_cst in foo()
121 #pragma omp atomic capture in main()
123 #pragma omp atomic capture in main()
136 #pragma omp atomic seq_cst capture in main()
138 #pragma omp atomic capture seq_cst in main()
/external/guava/guava-tests/test/com/google/common/reflect/
DTypeResolverTest.java44 Type t1 = new TypeCapture<T>() {}.capture(); in testWhere_indirectMapping()
58 Type t = new TypeCapture<List<T>>() {}.capture(); in testWhere_parameterizedSelfMapping()
64 Type t = new TypeCapture<T[]>() {}.capture(); in testWhere_genericArraySelfMapping()
90 Type t1 = new TypeCapture<T1>() {}.capture(); in testWhere_recursiveMapping()
91 Type t2 = new TypeCapture<T2>() {}.capture(); in testWhere_recursiveMapping()
96 Type t = new TypeCapture<T>() {}.capture(); in testWhere_genericArrayMapping()
98 .where(new TypeCapture<T[]>() {}.capture(), String[].class) in testWhere_genericArrayMapping()
103 Type t = new TypeCapture<T>() {}.capture(); in testWhere_primitiveArrayMapping()
105 new TypeResolver().where(new TypeCapture<T[]>() {}.capture(), int[].class).resolveType(t)); in testWhere_primitiveArrayMapping()
109 Type t = new TypeCapture<T>() {}.capture(); in testWhere_parameterizedTypeMapping()
[all …]
DTypeTokenTest.java137 TypeToken<?> f = TypeToken.of(new TypeCapture<F>() {}.capture()); in testResolveType_fromTypeVariable()
148 TypeToken<?> e = TypeToken.of(new TypeCapture<E>() {}.capture()); in testResolveType_fromTypeVariable_onlyDirectBoundsAreUsed()
155 new TypeCapture<Comparable<? extends Iterable<String>>>() {}.capture(); in testResolveType_fromWildcard()
248 TypeToken<?>.TypeSet types = TypeToken.of(new TypeCapture<B>() {}.capture()).getTypes(); in testGetTypes_ignoresTypeVariablesByDefault()
263 TypeToken<?>.TypeSet types = TypeToken.of(new TypeCapture<B>() {}.capture()).getTypes(); in testGetTypes_rawTypes_ignoresTypeVariablesByDefault()
276 TypeToken<?>.TypeSet types = TypeToken.of(new TypeCapture<A>() {}.capture()).getTypes(); in testGetTypes_manyBounds()
408 TypeToken.of(new TypeCapture<T>() {}.capture()).getGenericSuperclass()); in testGetGenericSuperclass_typeVariable_unbounded()
415 TypeToken.of(new TypeCapture<T>() {}.capture()).getGenericSuperclass()); in testGetGenericSuperclass_typeVariable_boundIsClass()
422 TypeToken.of(new TypeCapture<T>() {}.capture()).getGenericSuperclass()); in testGetGenericSuperclass_typeVariable_boundIsFBoundedClass()
428 assertNull(TypeToken.of(new TypeCapture<T>() {}.capture()).getGenericSuperclass()); in testGetGenericSuperclass_typeVariable_boundIsInterface()
[all …]
/external/opencv/otherlibs/highgui/
Dcvcap.cpp64 CV_IMPL IplImage* cvQueryFrame( CvCapture* capture ) in cvQueryFrame() argument
66 return capture ? capture->queryFrame() : 0; in cvQueryFrame()
70 CV_IMPL int cvGrabFrame( CvCapture* capture ) in cvGrabFrame() argument
72 return capture ? capture->grabFrame() : 0; in cvGrabFrame()
75 CV_IMPL IplImage* cvRetrieveFrame( CvCapture* capture ) in cvRetrieveFrame() argument
77 return capture ? capture->retrieveFrame() : 0; in cvRetrieveFrame()
80 CV_IMPL double cvGetCaptureProperty( CvCapture* capture, int id ) in cvGetCaptureProperty() argument
82 return capture ? capture->getProperty(id) : 0; in cvGetCaptureProperty()
85 CV_IMPL int cvSetCaptureProperty( CvCapture* capture, int id, double value ) in cvSetCaptureProperty() argument
87 return capture ? capture->setProperty(id, value) : 0; in cvSetCaptureProperty()
/external/v8/test/mjsunit/
Dregexp-global.js31 str = str.replace(/(\w)?X/g, function(match, capture) { argument
32 assertTrue(match.indexOf(capture) >= 0 ||
33 capture === undefined);
34 return capture ? capture.toLowerCase() : "-";
40 str = str.replace(/\b/g, function(match, capture) { argument
47 str = str.replace(/(?=(\w+))\b/g, function(match, capture) { argument
48 return capture.length;
83 function(match, capture) { argument
84 assertTrue(match.indexOf(capture) >= 0 ||
85 capture === undefined);
[all …]
/external/regex-re2/re2/
Dnfa.cc62 const char** capture; member
90 const char* p, const char** capture);
101 string FormatCapture(const char** capture);
152 delete[] t->capture; in ~NFA()
168 t->capture = new const char*[ncapture_]; in AllocThread()
187 const char* p, const char** capture) { in AddToThreadq() argument
204 capture[a.j] = a.cap_j; in AddToThreadq()
211 fprintf(stderr, " [%d%s]\n", id, FormatCapture(capture).c_str()); in AddToThreadq()
236 CopyCapture(t->capture, capture); in AddToThreadq()
255 stk[nstk++] = AddState(0, capture[j], j); in AddToThreadq()
[all …]
/external/chromium-trace/catapult/netlog_viewer/netlog_viewer/
Dstatus_view.css6 .capture-status-view {
19 #capture-status-view {
24 .capture-status-view-link,
25 .capture-status-view-link:visited,
26 .capture-status-view-link:active {
31 .capture-status-view-link:hover {
37 #capture-status-view-actions {
46 .capture-status-view-arrow {
51 .capture-status-view-arrow::after {
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt026actions.g12 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, $…
35 self.capture(self.foobar)
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
DAddListenerAction.java27 private boolean capture; field in AddListenerAction
30 if (capture) in act()
46 return capture; in getCapture()
49 public void setCapture (boolean capture) { in setCapture() argument
50 this.capture = capture; in setCapture()
DRemoveListenerAction.java27 private boolean capture; field in RemoveListenerAction
30 if (capture) in act()
46 return capture; in getCapture()
49 public void setCapture (boolean capture) { in setCapture() argument
50 this.capture = capture; in setCapture()
/external/webrtc/webrtc/base/
Dsigslottester.h.pump20 // They are meant to be used in tests. Tests must provide "capture" pointers
29 // const std::string&, but capture-type is std::string. Capture type
31 // std::string capture;
32 // SigslotTester1<const std::string&, std::string> slot(&foo, &capture);
35 // EXPECT_EQ("hello", capture);
46 // - C1-C5 is the type of the variable to capture argument i. These should be
58 $for j , [[C$j* capture$j]])
60 $for j , [[capture$j[[]]_(capture$j)]] {
70 *capture$j[[]]_ = arg$j;]]
76 C$j* capture$j[[]]_;]]
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
DEvent.java39 private boolean capture; // true means event occurred during the capture phase field in Event
70 capture = false; in reset()
120 public void setCapture (boolean capture) { in setCapture() argument
121 this.capture = capture; in setCapture()
127 return capture; in isCapture()
/external/webrtc/webrtc/modules/video_capture/windows/
Dvideo_capture_factory_windows.cc31 RefCountImpl<VideoCaptureDS>* capture = new RefCountImpl<VideoCaptureDS>(id); in Create() local
32 if (capture->Init(id, device_id) != 0) { in Create()
33 delete capture; in Create()
34 capture = NULL; in Create()
37 return capture; in Create()
/external/autotest/server/cros/chaos_lib/
Dchaos_capture_analyzer.py31 capture = pyshark.FileCapture(self._file_name,
36 capture.load_packets(timeout=self.LOAD_TIMEOUT)
37 return capture
51 capture = pyshark.FileCapture(self._file_name,
54 capture.load_packets(timeout=self.LOAD_TIMEOUT)
55 if not capture:
57 return capture[0]
398 def __init__(self, ap_macs, dut_mac, filtered_packets, capture, logger): argument
403 self._capture = capture
613 def _validate_ap_presence(self, capture, bssids, ssid): argument
[all …]
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
Dp14.cpp3 template<typename T> void capture(const T&);
49 capture(array[0]); in capture_array()
63 capture(a); in test_layout()
64 capture(b); in test_layout()
99 void capture(X &x) { in capture() function
/external/testng/src/test/java/test/pholser/
DSaboteur.java17 Captor.instance().capture( "Saboteur.setUpFixture" ); in setUpFixture()
22 Captor.instance().capture( "Saboteur.setUp" ); in setUp()
27 Captor.instance().capture( "Saboteur.tearDown" ); in tearDown()
32 Captor.instance().capture( "Saboteur.tearDownFixture" ); in tearDownFixture()
/external/easymock/src/org/easymock/internal/matchers/
DCaptures.java28 private final Capture<T> capture; field in Captures
33 this.capture = captured; in Captures()
37 buffer.append("capture(").append(capture).append(")"); in appendTo()
52 capture.setValue(potentialValue); in validateCapture()
/external/v8/tools/gyp/tools/emacs/testdata/
Dmedia.gyp246 'video/capture/fake_video_capture_device.cc',
247 'video/capture/fake_video_capture_device.h',
248 'video/capture/linux/video_capture_device_linux.cc',
249 'video/capture/linux/video_capture_device_linux.h',
250 'video/capture/mac/video_capture_device_mac.h',
251 'video/capture/mac/video_capture_device_mac.mm',
252 'video/capture/mac/video_capture_device_qtkit_mac.h',
253 'video/capture/mac/video_capture_device_qtkit_mac.mm',
254 'video/capture/video_capture.h',
255 'video/capture/video_capture_device.h',
[all …]
/external/v8/test/mjsunit/compiler/
Dtry-context.js13 function capture() { return x + y } function
33 function capture() { return x + y } function
55 function capture() { return x + y } function
76 function capture() { return x + y } function
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Dt052importS1.g6 this.capture = function(t) {
7 this.gt052importM1.capture(t);
11 a : B { this.capture("S.a") } ;
Dt052importS8.g6 this.capture = function(t) {
7 this.gt052importM8.capture(t);
10 A : 'a' {this.capture("S.A");} ;
Dt052importS7.g6 this.capture = function(t) {
7 this.gt052importM7.capture(t);
10 A : 'a' {this.capture("S.A ");} ;

12345678910>>...15