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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
builtins-ms.c 4 void capture(void *);
6 capture(_alloca(n));
8 // CHECK: call void @capture(i8* %[[arg]])
  /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/webrtc/webrtc/modules/video_capture/windows/
video_capture_factory_windows.cc 31 RefCountImpl<VideoCaptureDS>* capture = new RefCountImpl<VideoCaptureDS>(id);
32 if (capture->Init(id, device_id) != 0) {
33 delete capture;
34 capture = NULL;
37 return capture;
  /external/clang/test/OpenMP/
atomic_capture_codegen.cpp 83 #pragma omp atomic capture
88 #pragma omp atomic capture
92 #pragma omp atomic capture
97 #pragma omp atomic capture
116 #pragma omp atomic capture
132 #pragma omp atomic capture
137 #pragma omp atomic capture
153 #pragma omp atomic capture
169 #pragma omp atomic capture
185 #pragma omp atomic capture
    [all...]
atomic_messages.c 198 // Test for atomic capture
199 #pragma omp atomic capture
200 // 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}}
203 #pragma omp atomic capture
204 // 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}}
207 #pragma omp atomic capture
208 // 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}}
211 #pragma omp atomic capture
212 // 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}}
215 #pragma omp atomic capture
    [all...]
atomic_messages.cpp 336 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' must be an expression statement of form 'v = ++x;', 'v = --x;', 'v = x++;', 'v = x--;', 'v = x bi (…)
508 int capture() { function
    [all...]
atomic_ast_print.cpp 21 #pragma omp atomic capture
23 #pragma omp atomic capture
36 #pragma omp atomic seq_cst capture
38 #pragma omp atomic capture seq_cst
55 // CHECK-NEXT: #pragma omp atomic capture
57 // CHECK-NEXT: #pragma omp atomic capture
70 // CHECK-NEXT: #pragma omp atomic seq_cst capture
72 // CHECK-NEXT: #pragma omp atomic capture seq_cst
86 // CHECK-NEXT: #pragma omp atomic capture
88 // CHECK-NEXT: #pragma omp atomic capture
    [all...]
atomic_codegen.cpp 71 #pragma omp atomic capture
102 #pragma omp atomic capture
  /external/testng/src/test/java/test/pholser/
Saboteur.java 17 Captor.instance().capture( "Saboteur.setUpFixture" );
22 Captor.instance().capture( "Saboteur.setUp" );
27 Captor.instance().capture( "Saboteur.tearDown" );
32 Captor.instance().capture( "Saboteur.tearDownFixture" );
  /system/bt/hci/include/
btsnoop.h 28 // Capture |packet| and dump it to the btsnoop logs. If |is_received| is
31 void (*capture)(const BT_HDR* packet, bool is_received); member in struct:btsnoop_t
  /external/guava/guava-tests/test/com/google/common/reflect/
TypeResolverTest.java 44 Type t1 = new TypeCapture<T>() {}.capture();
58 Type t = new TypeCapture<List<T>>() {}.capture();
64 Type t = new TypeCapture<T[]>() {}.capture();
90 Type t1 = new TypeCapture<T1>() {}.capture();
91 Type t2 = new TypeCapture<T2>() {}.capture();
96 Type t = new TypeCapture<T>() {}.capture();
98 .where(new TypeCapture<T[]>() {}.capture(), String[].class)
103 Type t = new TypeCapture<T>() {}.capture();
105 new TypeResolver().where(new TypeCapture<T[]>() {}.capture(), int[].class).resolveType(t));
109 Type t = new TypeCapture<T>() {}.capture();
    [all...]
  /external/webrtc/webrtc/base/
sigslottester.h.pump 20 // 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)]]
    [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/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);
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/mockito/src/test/java/org/mockitousage/matchers/
CapturingArgumentsTest.java 72 verify(emailService).sendEmailTo(argument.capture());
85 verify(emailService, times(2)).sendEmailTo(argument.capture());
99 verify(emailService, times(3)).sendEmailTo(argument.capture());
110 verify(emailService).sendEmailTo(person.capture());
127 verify(emailService).sendEmailTo(argument.capture());
150 when(emailService.sendEmailTo(argument.capture())).thenReturn(false);
163 when(mock.simpleMethod(argument.capture(), eq(2))).thenReturn("blah");
192 verify(mock).simpleMethod(captor.capture(), eq(1));
206 verify(mock).intArgumentMethod(argument.capture());
219 verify(mock).intArgumentMethod(argument.capture());
    [all...]
VarargsTest.java 193 verify(mock).varargs(captor.capture());
203 verify(mock).varargs(captor.capture());
217 verify(mock).varargs(captor.capture());
225 verify(mock).varargs(captor.capture());
234 verify(mock).varargs(captor.capture(), captor.capture());
243 verify(mock).varargs(captor.capture());
252 verify(mock).varargs(captor.capture(), captor.capture());
263 verify(mock).varargs(captor.capture(), captor.capture())
    [all...]
  /external/ltp/testcases/kernel/device-drivers/v4l/user_space/
test_VIDIOC_PARM.c 99 dprintf("\t%s:%u: { .type=%i, parm.capture = { "
108 parm.parm.capture.capability,
109 parm.parm.capture.capturemode,
110 parm.parm.capture.timeperframe.numerator,
111 parm.parm.capture.timeperframe.denominator,
112 parm.parm.capture.extendedmode,
113 parm.parm.capture.readbuffers,
114 parm.parm.capture.reserved[0],
115 parm.parm.capture.reserved[1],
116 parm.parm.capture.reserved[2]
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
CallbackHandlerTest.java 71 Mockito.verify(mEmengencyListener).setEmergencyCallsOnly(captor.capture());
93 Mockito.verify(mSignalCallback).setWifiIndicators(enableArg.capture(),
94 statusArg.capture(), qsArg.capture(), inArg.capture(), outArg.capture(),
95 descArg.capture(), isTransient.capture());
132 Mockito.verify(mSignalCallback).setMobileDataIndicators(statusArg.capture(),
133 qsArg.capture(), typeIconArg.capture(), qsTypeIconArg.capture(), inArg.capture()
    [all...]
  /external/v8/testing/
gmock-support.h 17 class Capture {
19 Capture() : value_(), has_value_(false) {}
41 explicit CaptureEqMatcher(Capture<T>* capture) : capture_(capture) {}
61 Capture<T>* capture_;
76 // CaptureEq(capture) captures the value passed in during matching as long as it
79 inline Matcher<T> CaptureEq(Capture<T>* capture) {
80 return MakeMatcher(new internal::CaptureEqMatcher<T>(capture));
    [all...]
  /frameworks/av/services/oboeservice/
AAudioEndpointManager.cpp 61 AAudioServiceEndpointCapture *capture = new AAudioServiceEndpointCapture(audioService); local
62 if (capture->open(deviceId) != AAUDIO_OK) {
64 delete capture;
66 mInputs[deviceId] = capture;
67 endpoint = capture;
  /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...]
  /external/libbrillo/
gen_coverage_html.sh 13 lcov --base-directory . --directory . --capture --output-file app.info
  /external/mockito/src/test/java/org/mockitousage/bugs/
ArgumentCaptorDontCapturePreviouslyVerifiedTest.java 19 verify(mock, times(1)).oneArg(argument.capture());
25 verify(mock, times(2)).oneArg(argument.capture());
CaptorAnnotationAutoboxingTest.java 35 verify(fun).doFun(captor.capture());
43 verify(fun, never()).moreFun(intCaptor.capture());

Completed in 411 milliseconds

1 2 3 4 5 6 7 8 91011>>