/external/clang/test/OpenMP/ |
D | atomic_messages.cpp | 336 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 …]
|
D | atomic_messages.c | 199 #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 …]
|
D | atomic_capture_codegen.cpp | 83 #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 …]
|
D | atomic_ast_print.cpp | 21 #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/ |
D | TypeResolverTest.java | 44 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 …]
|
D | TypeTokenTest.java | 137 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/mockito/src/test/java/org/mockitousage/matchers/ |
D | CapturingArgumentsTest.java | 72 verify(emailService).sendEmailTo(argument.capture()); in should_allow_assertions_on_captured_argument() 85 verify(emailService, times(2)).sendEmailTo(argument.capture()); in should_allow_assertions_on_all_captured_arguments() 99 verify(emailService, times(3)).sendEmailTo(argument.capture()); in should_allow_assertions_on_last_argument() 110 verify(emailService).sendEmailTo(person.capture()); in should_print_captor_matcher() 127 verify(emailService).sendEmailTo(argument.capture()); in should_allow_assertions_on_captured_null() 150 when(emailService.sendEmailTo(argument.capture())).thenReturn(false); in should_allow_capturing_for_stubbing() 163 when(mock.simpleMethod(argument.capture(), eq(2))).thenReturn("blah"); in should_capture_when_stubbing_only_when_entire_invocation_matches() 192 verify(mock).simpleMethod(captor.capture(), eq(1)); in should_capture_when_full_arg_list_matches() 206 verify(mock).intArgumentMethod(argument.capture()); in should_capture_int_by_creating_captor_with_primitive_wrapper() 219 verify(mock).intArgumentMethod(argument.capture()); in should_capture_int_by_creating_captor_with_primitive() [all …]
|
D | VarargsTest.java | 198 verify(mock).varargs(captor.capture()); in shouldCaptureVarArgs_noArgs() 208 verify(mock).varargs(captor.capture()); in shouldCaptureVarArgs_oneNullArg_eqNull() 222 verify(mock).varargs(captor.capture()); in shouldCaptureVarArgs_nullArrayArg() 230 verify(mock).varargs(captor.capture()); in shouldCaptureVarArgs_twoArgsOneCapture() 239 verify(mock).varargs(captor.capture(), captor.capture()); in shouldCaptureVarArgs_twoArgsTwoCaptures() 248 verify(mock).varargs(captor.capture()); in shouldCaptureVarArgs_oneNullArgument() 257 verify(mock).varargs(captor.capture(), captor.capture()); in shouldCaptureVarArgs_oneNullArgument2() 268 verify(mock).varargs(captor.capture(), captor.capture()); in shouldNotCaptureVarArgs_3args2captures() 276 verify(mock).varargs(captor.capture(), eq("2"), captor.capture()); in shouldCaptureVarArgs_3argsCaptorMatcherMix() 287 verify(mock).varargs(captor.capture(), eq("X"), captor.capture()); in shouldNotCaptureVarArgs_3argsCaptorMatcherMix() [all …]
|
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/ |
D | test_VIDIOC_PARM.c | 108 parm.parm.capture.capability, in do_get_param() 109 parm.parm.capture.capturemode, in do_get_param() 110 parm.parm.capture.timeperframe.numerator, in do_get_param() 111 parm.parm.capture.timeperframe.denominator, in do_get_param() 112 parm.parm.capture.extendedmode, in do_get_param() 113 parm.parm.capture.readbuffers, in do_get_param() 114 parm.parm.capture.reserved[0], in do_get_param() 115 parm.parm.capture.reserved[1], in do_get_param() 116 parm.parm.capture.reserved[2], in do_get_param() 117 parm.parm.capture.reserved[3] in do_get_param() [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_functools.py | 21 def capture(*args, **kw): function 44 p = self.partial(capture, 1, 2, a=10, b=20) 51 p = self.partial(capture, 1, 2, a=10, b=20) 53 self.assertEqual(p.func, capture) 92 p = self.partial(capture) 95 p = self.partial(capture, 1, 2) 102 p = self.partial(capture) 106 p = self.partial(capture, a=1) 116 p = self.partial(capture, *args) 124 p = self.partial(capture, a=a) [all …]
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
D | t026actions.g | 12 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/autotest/server/cros/chaos_lib/ |
D | chaos_capture_analyzer.py | 29 capture = pyshark.FileCapture(self._file_name, 34 capture.load_packets() 35 return capture 49 capture = pyshark.FileCapture(self._file_name, 52 capture.load_packets() 53 if not capture: 55 return capture[0] 396 def __init__(self, ap_macs, dut_mac, filtered_packets, capture, logger): argument 401 self._capture = capture 611 def _validate_ap_presence(self, capture, bssids, ssid): argument [all …]
|
/external/webrtc/webrtc/base/ |
D | 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)]] { 70 *capture$j[[]]_ = arg$j;]] 76 C$j* capture$j[[]]_;]]
|
/external/webrtc/webrtc/modules/video_capture/windows/ |
D | video_capture_factory_windows.cc | 31 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/llvm/test/Transforms/SafeStack/ |
D | coloring.ll | 17 ; CHECK: call void @capture(i32* nonnull %[[A2]]) 19 call void @capture(i32* nonnull %x) 26 ; CHECK: call void @capture(i32* nonnull %[[B2]]) 28 call void @capture(i32* nonnull %x1) 35 ; CHECK: call void @capture(i32* nonnull %[[C2]]) 37 call void @capture(i32* nonnull %x2) 44 declare void @capture(i32*)
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
D | p14.cpp | 3 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/autotest/client/cros/chameleon/ |
D | screen_capture.py | 43 def capture(self): member in CommonChameleonScreenCapturer 72 def capture(self): member in VgaChameleonScreenCapturer 101 def capture(self): member in CrosExternalScreenCapturer 123 def capture(self): member in CrosInternalScreenCapturer 145 def capture(self): member in CrosCalibrationImageCapturer
|
/external/testng/src/test/java/test/pholser/ |
D | Saboteur.java | 17 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/ |
D | Captures.java | 28 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/libpcap/ |
D | INSTALL.txt | 11 configure: warning: cannot determine packet capture interface 14 then your system either does not support packet capture or your system 15 does support packet capture but libpcap does not support that 17 packet capture not supported by libpcap, please send us patches; don't 21 It is possible to override the default packet capture type, although 27 Another example is to force a supported packet capture type in the case 76 If you are trying to do packet capture with a FORE ATM card, you may or 78 code so unless their driver supports packet capture, there's not much 88 Under {DEC OSF/1, Digital UNIX, Tru64 UNIX}, packet capture must be 94 Look for the "How do I configure the Berkeley Packet Filter and capture [all …]
|
/external/mockito/src/test/java/org/mockitousage/annotation/ |
D | CaptorAnnotationBasicTest.java | 44 void save(Person capture); in save() argument 60 verify(peopleRepository).save(captor.capture()); in shouldUseCaptorInOrdinaryWay() 73 verify(peopleRepository).save(captor.capture()); in shouldUseAnnotatedCaptor() 87 verify(peopleRepository).save((Person) genericLessCaptor.capture()); in shouldUseGenericlessAnnotatedCaptor() 102 verify(mock).listArgMethod(genericListCaptor.capture()); in shouldCaptureGenericList()
|
/external/python/cpython3/Lib/test/ |
D | test_functools.py | 35 def capture(*args, **kw): function 58 p = self.partial(capture, 1, 2, a=10, b=20) 66 p = self.partial(capture, 1, 2, a=10, b=20) 68 self.assertEqual(p.func, capture) 96 p = self.partial(capture, **d) 104 p = self.partial(capture) 107 p = self.partial(capture, 1, 2) 114 p = self.partial(capture) 118 p = self.partial(capture, a=1) 128 p = self.partial(capture, *args) [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | frame-order.ll | 9 ; 2: extern "C" void capture(int *p); 12 ; 5: capture(&v); 18 ; 11: capture(&a); 22 ; 15: capture(&b); 51 call void @capture(i32* %v.i) #3, !dbg !30 52 call void @capture(i32* %a), !dbg !31 61 call void @capture(i32* %v.i1) #3, !dbg !35 62 call void @capture(i32* %b), !dbg !36 75 declare void @capture(i32*) #2
|
/external/v8/testing/ |
D | gmock-support.h | 41 explicit CaptureEqMatcher(Capture<T>* capture) : capture_(capture) {} in CaptureEqMatcher() argument 79 inline Matcher<T> CaptureEq(Capture<T>* capture) { in CaptureEq() argument 80 return MakeMatcher(new internal::CaptureEqMatcher<T>(capture)); in CaptureEq()
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
D | t052importS8.g | 6 this.capture = function(t) { 7 this.gt052importM8.capture(t); 10 A : 'a' {this.capture("S.A");} ;
|