/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | ServiceTest.java | 85 mockService.foo(EasyMock.same(mockController), EasyMock.same(fooRequest), in testCallMethod() 87 mockService.bar(EasyMock.same(mockController), EasyMock.same(barRequest), in testCallMethod() 122 EasyMock.same(fooDescriptor), in testStub() 123 EasyMock.same(mockController), in testStub() 124 EasyMock.same(fooRequest), in testStub() 125 EasyMock.same(FooResponse.getDefaultInstance()), in testStub() 128 EasyMock.same(barDescriptor), in testStub() 129 EasyMock.same(mockController), in testStub() 130 EasyMock.same(barRequest), in testStub() 131 EasyMock.same(BarResponse.getDefaultInstance()), in testStub() [all …]
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/ |
D | p2-1z.cpp | 3 template<typename T, typename U> constexpr bool same = false; variable 4 template<typename T> constexpr bool same<T, T> = true; variable 10 static_assert(same<decltype(a()), void>); 18 static_assert(same<decltype(b()), double>); 39 static_assert(same<decltype(d<0>()), int>); 40 static_assert(same<decltype(d<1>()), const char *>); 41 static_assert(same<decltype(d<2>()), double>); 42 static_assert(same<decltype(d<3>()), void>); 47 static_assert(same<decltype(e), int>);
|
D | p3.cpp | 36 template<typename T, typename U> struct same; 37 template<typename T> struct same<T, T> {}; struct 47 same<__typeof(x), int> xHasTypeInt; in p3example() 48 same<__typeof(v), const int*> vHasTypeConstIntPtr; in p3example() 49 same<__typeof(u), const int> uHasTypeConstInt; in p3example() 50 same<__typeof(y), double> yHasTypeDouble; in p3example()
|
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/ |
D | Http2ClientStreamTransportStateTest.java | 25 import static org.mockito.Matchers.same; 83 verify(mockListener, never()).closed(any(Status.class), same(PROCESSED), any(Metadata.class)); in transportHeadersReceived_notifiesListener() 97 verify(mockListener, never()).closed(any(Status.class), same(PROCESSED), any(Metadata.class)); in transportHeadersReceived_doesntRequire200() 112 verify(mockListener).closed(statusCaptor.capture(), same(PROCESSED), same(headers)); in transportHeadersReceived_noHttpStatus() 127 verify(mockListener).closed(statusCaptor.capture(), same(PROCESSED), same(headers)); in transportHeadersReceived_wrongContentType_200() 143 verify(mockListener).closed(statusCaptor.capture(), same(PROCESSED), same(headers)); in transportHeadersReceived_wrongContentType_401() 167 verify(mockListener, never()).closed(any(Status.class), same(PROCESSED), any(Metadata.class)); in transportHeadersReceived_handles_1xx() 185 verify(mockListener).closed(statusCaptor.capture(), same(PROCESSED), same(headersAgain)); in transportHeadersReceived_twice() 205 verify(mockListener).closed(statusCaptor.capture(), same(PROCESSED), same(headers)); in transportHeadersReceived_unknownAndTwiceLogsSecondHeaders() 217 verify(mockListener).closed(statusCaptor.capture(), same(PROCESSED), any(Metadata.class)); in transportDataReceived_noHeaderReceived() [all …]
|
D | CallCredentialsApplyingTest.java | 23 import static org.mockito.Matchers.same; 110 when(mockTransport.newStream(same(method), any(Metadata.class), any(CallOptions.class))) in setUp() 129 verify(mockCreds).applyRequestMetadata(same(method), attrsCaptor.capture(), same(mockExecutor), in parameterPropagation_base() 149 verify(mockCreds).applyRequestMetadata(same(method), attrsCaptor.capture(), same(mockExecutor), in parameterPropagation_overrideByTransport() 171 verify(mockCreds).applyRequestMetadata(same(method), attrsCaptor.capture(), in parameterPropagation_overrideByCallOptions() 172 same(anotherExecutor), any(MetadataApplier.class)); in parameterPropagation_overrideByCallOptions() 184 same(method), any(Attributes.class), same(mockExecutor), any(MetadataApplier.class)); in credentialThrows() 206 }).when(mockCreds).applyRequestMetadata(same(method), any(Attributes.class), in applyMetadata_inline() 207 same(mockExecutor), any(MetadataApplier.class)); in applyMetadata_inline() 228 }).when(mockCreds).applyRequestMetadata(same(method), any(Attributes.class), in fail_inline() [all …]
|
D | ForwardingClientStreamListenerTest.java | 19 import static org.mockito.Matchers.same; 57 verify(mock).headersRead(same(headers)); in headersReadTest() 65 verify(mock).closed(same(status), same(trailers)); in closedTest() 72 verify(mock).messagesAvailable(same(producer)); in messagesAvailableTest()
|
D | DelayedClientTransportTest.java | 25 import static org.mockito.Matchers.same; 111 when(mockRealTransport.newStream(same(method), same(headers), same(callOptions))) in setUp() 113 when(mockRealTransport2.newStream(same(method2), same(headers2), same(callOptions2))) in setUp() 134 verify(mockRealTransport).newStream(same(method), same(headers), same(callOptions)); in streamStartThenAssignTransport() 149 verify(transportListener).transportShutdown(same(SHUTDOWN_STATUS)); in newStreamThenAssignTransportThenShutdown() 152 verify(mockRealTransport).newStream(same(method), same(headers), same(callOptions)); in newStreamThenAssignTransportThenShutdown() 154 verify(mockRealStream).start(same(streamListener)); in newStreamThenAssignTransportThenShutdown() 159 verify(transportListener).transportShutdown(same(SHUTDOWN_STATUS)); in transportTerminatedThenAssignTransport() 168 verify(transportListener).transportShutdown(same(SHUTDOWN_STATUS)); in assignTransportThenShutdownThenNewStream() 204 verify(streamListener).closed(same(Status.CANCELLED), any(Metadata.class)); in startThenCancelStreamWithoutSetTransport() [all …]
|
/external/clang/test/Modules/ |
D | resolution-change.m | 4 … -fmodules-cache-path=%t -I %S/Inputs/modules-with-same-name/DependsOnA -I %S/Inputs/modules-with-… 6 // Use the PCH with the same header search options; should be fine 7 … -fmodules-cache-path=%t -I %S/Inputs/modules-with-same-name/DependsOnA -I %S/Inputs/modules-with-… 10 … -fmodules-cache-path=%t -I %S/Inputs/modules-with-same-name/DependsOnA -I %S/Inputs/modules-with-… 17 … -fimplicit-module-maps -fmodules-cache-path=%t -I %S/Inputs/modules-with-same-name/DependsOnA -in… 21 … -fmodules-cache-path=%t -I %S/Inputs/modules-with-same-name/DependsOnA -I %S/Inputs/modules-with-… 22 …n directory '{{.*Inputs.modules-with-same-name.path1.A}}' but now resides in directory '{{.*Inputs…
|
D | modules-with-same-name.m | 4 …es-ignore-macro=DIRECT -fsyntax-only %s -verify -I %S/Inputs/modules-with-same-name/path1/A -DDIRE… 7 …es-ignore-macro=DIRECT -fsyntax-only %s -verify -I %S/Inputs/modules-with-same-name/path2/A -DDIRE… 13 …-fsyntax-only %s -verify -I %S/Inputs/modules-with-same-name/DependsOnA -I %S/Inputs/modules-with-… 19 …-fsyntax-only %s -verify -I %S/Inputs/modules-with-same-name/DependsOnA -I %S/Inputs/modules-with-…
|
/external/pdfium/testing/tools/coverage/ |
D | lcovrc | 1 # Specify an external style sheet file (same as --css-file option of genhtml) 32 # Do not remove unused test descriptions if non-zero (same as 36 # Do not remove prefix from directory names if non-zero (same as --no-prefix 40 # Do not create source code view if non-zero (same as --no-source option of 44 # Replace tabs with number of spaces in source view (same as --num-spaces 48 # Highlight lines with converted-only data if non-zero (same as --highlight 52 # Include color legend in HTML output if non-zero (same as --legend option of 56 # Use FILE as HTML prolog for generated pages (same as --html-prolog option of 60 # Use FILE as HTML epilog for generated pages (same as --html-epilog option of 64 # Use custom filename extension for pages (same as --html-extension option of [all …]
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_CudnnRNNBackpropV2.pbtxt | 31 output_h: The same shape has input_h. 32 output_c: The same shape as input_c for LSTM. An empty tensor for other models. 33 output_backprop: A 3-D tensor with the same shape as output in the forward pass. 34 output_h_backprop: A 3-D tensor with the same shape as output_h in the forward 36 output_c_backprop: A 3-D tensor with the same shape as output_c in the forward 38 reserve_space: The same reserve_space produced in the forward operation. 39 host_reserved: The same host_reserved produced in the forward operation. 40 input_backprop: The backprop to input in the forward pass. Has the same shape 42 input_h_backprop: The backprop to input_h in the forward pass. Has the same 44 input_c_backprop: The backprop to input_c in the forward pass. Has the same [all …]
|
D | api_def_CudnnRNNBackprop.pbtxt | 28 output_h: The same shape has input_h. 29 output_c: The same shape as input_c for LSTM. An empty tensor for other models. 30 output_backprop: A 3-D tensor with the same shape as output in the forward pass. 31 output_h_backprop: A 3-D tensor with the same shape as output_h in the forward 33 output_c_backprop: A 3-D tensor with the same shape as output_c in the forward 35 reserve_space: The same reserve_space produced in for forward operation. 36 input_backprop: The backprop to input in the forward pass. Has the same shape 38 input_h_backprop: The backprop to input_h in the forward pass. Has the same 40 input_c_backprop: The backprop to input_c in the forward pass. Has the same 43 same shape as params.
|
D | api_def_CudnnRNNBackpropV3.pbtxt | 35 output_h: The same shape has input_h. 36 output_c: The same shape as input_c for LSTM. An empty tensor for other models. 37 output_backprop: A 3-D tensor with the same shape as output in the forward pass. 38 output_h_backprop: A 3-D tensor with the same shape as output_h in the forward 40 output_c_backprop: A 3-D tensor with the same shape as output_c in the forward 44 reserve_space: The same reserve_space produced in the forward operation. 45 input_backprop: The backprop to input in the forward pass. Has the same shape 47 input_h_backprop: The backprop to input_h in the forward pass. Has the same 49 input_c_backprop: The backprop to input_c in the forward pass. Has the same 52 same shape as params.
|
/external/u-boot/test/dm/ |
D | rtc.c | 37 bool same; in cmp_times() local 39 same = expect->tm_sec == time->tm_sec; in cmp_times() 40 same &= expect->tm_min == time->tm_min; in cmp_times() 41 same &= expect->tm_hour == time->tm_hour; in cmp_times() 42 same &= expect->tm_mday == time->tm_mday; in cmp_times() 43 same &= expect->tm_mon == time->tm_mon; in cmp_times() 44 same &= expect->tm_year == time->tm_year; in cmp_times() 45 if (!same && show) { in cmp_times() 50 return same ? 0 : -EINVAL; in cmp_times()
|
/external/zopfli/src/zopfli/ |
D | hash.c | 45 h->same = (unsigned short*)malloc(sizeof(*h->same) * window_size); in ZopfliInitHash() 47 h->same[i] = 0; in ZopfliInitHash() 78 free(h->same); in ZopfliCleanHash() 109 if (h->same[(pos - 1) & ZOPFLI_WINDOW_MASK] > 1) { in ZopfliUpdateHash() 110 amount = h->same[(pos - 1) & ZOPFLI_WINDOW_MASK] - 1; in ZopfliUpdateHash() 116 h->same[hpos] = amount; in ZopfliUpdateHash() 120 h->val2 = ((h->same[hpos] - ZOPFLI_MIN_MATCH) & 255) ^ h->val; in ZopfliUpdateHash()
|
/external/llvm/test/MC/Hexagon/ |
D | new-value-check.s | 6 # CHECK-STRICT: :12:1: error: register `R0' used with `.new' but not validly modified in the same p… 7 # CHECK-RELAXED: :12:1: error: register `R0' used with `.new' but not validly modified in the same … 14 # CHECK-STRICT: :20:1: error: register `R0' used with `.new' but not validly modified in the same p… 15 # CHECK-RELAXED: :20:1: error: register `R0' used with `.new' but not validly modified in the same … 22 # CHECK-STRICT: :29:1: error: register `R0' used with `.new' but not validly modified in the same p… 23 # CHECK-RELAXED: :29:1: error: register `R0' used with `.new' but not validly modified in the same … 35 # CHECK-STRICT: :41:1: error: register `R0' used with `.new' but not validly modified in the same p… 43 # CHECK-STRICT: :48:1: error: register `R0' used with `.new' but not validly modified in the same p…
|
/external/tensorflow/tensorflow/contrib/receptive_field/ |
D | RECEPTIVE_FIELD_TABLE.md | 361 inception_resnet_v2-same | None | Conv2d_1a_3x3 | 3 | 2 | None 362 inception_resnet_v2-same | None | Conv2d_2a_3x3 | 7 | 2 | None 363 inception_resnet_v2-same | None | Conv2d_2b_3x3 | 11 | 2 | None 364 inception_resnet_v2-same | None | MaxPool_3a_3x3 | 15 | 4 | None 365 inception_resnet_v2-same | None | Conv2d_3b_1x1 | 15 | 4 | None 366 inception_resnet_v2-same | None | Conv2d_4a_3x3 | 23 | 4 | None 367 inception_resnet_v2-same | None | MaxPool_5a_3x3 | 31 | 8 | None 368 inception_resnet_v2-same | None | Mixed_5b | 63 | 8 | None 369 inception_resnet_v2-same | None | Mixed_6a | 415 | 16 | None 370 inception_resnet_v2-same | None | PreAuxLogits | 2335 | 16 | None [all …]
|
/external/tensorflow/tensorflow/contrib/image/kernels/ |
D | single_image_random_dot_stereograms_ops.cc | 295 int* same; // Used to determine if Pixel needs to be the same as another in generate_stereogram() local 299 same = new int[output_Ximage]; in generate_stereogram() 303 for (int x = 0; x < output_Ximage; ++x) same[x] = x; in generate_stereogram() 322 l = same[left]; in generate_stereogram() 326 l = same[left]; in generate_stereogram() 328 same[left] = right; in generate_stereogram() 330 l = same[left]; in generate_stereogram() 333 same[left] = right; in generate_stereogram() 340 if (same[x] == x) { // Pick a random color in generate_stereogram() 352 pix[same[x] * output_Cimage + channel]; in generate_stereogram() [all …]
|
/external/u-boot/drivers/input/ |
D | input.c | 342 int same; /* number of elements which are the same */ in sort_array_by_ordering() local 354 same = dest_count; in sort_array_by_ordering() 362 return same; in sort_array_by_ordering() 377 int keycode[], int num_keycodes, int *same) in input_check_keycodes() argument 386 *same = sort_array_by_ordering(keycode, num_keycodes, in input_check_keycodes() 392 return *same != num_keycodes; in input_check_keycodes() 453 int max_chars, int same) in input_keycodes_to_ascii() argument 472 for (i = same; i < num_keycodes; i++) { in input_keycodes_to_ascii() 513 int count, i, same = 0; in _input_send_keycodes() local 518 if (!input_check_keycodes(config, keycode, num_keycodes, &same)) { in _input_send_keycodes() [all …]
|
/external/grpc-grpc-java/grpclb/src/test/java/io/grpc/grpclb/ |
D | CachedSubchannelPoolTest.java | 27 import static org.mockito.Mockito.same; 112 verify(helper).createSubchannel(same(EAG1), same(ATTRS1)); in subchannelExpireAfterReturned() 117 verify(helper).createSubchannel(same(EAG2), same(ATTRS2)); in subchannelExpireAfterReturned() 143 verify(helper).createSubchannel(same(EAG1), same(ATTRS1)); in subchannelReused() 148 verify(helper).createSubchannel(same(EAG2), same(ATTRS2)); in subchannelReused() 170 verify(helper, times(2)).createSubchannel(same(EAG2), same(ATTRS2)); in subchannelReused()
|
/external/ltp/testcases/network/stress/multicast/grp-operation/ |
D | 00_Descriptions.txt | 9 mcast4-group-same-group 10 Verify that the kernel is not crashed when joining and leaving the same 14 Verify that the kernel is not crashed when joining and leaving the same 26 mcast6-group-same-group 27 Verify that the kernel is not crashed when joining and leaving the same 31 Verify that the kernel is not crashed when joining and leaving the same
|
/external/pcre/dist2/testdata/ |
D | testoutput15 | 5 # same tests are run using JIT in test 17. 215 Failed: error -52: nested recursion at the same subject position 219 Failed: error -52: nested recursion at the same subject position 223 Failed: error -52: nested recursion at the same subject position 276 Failed: error -52: nested recursion at the same subject position 286 Failed: error -52: nested recursion at the same subject position 296 Failed: error -52: nested recursion at the same subject position 306 Failed: error -52: nested recursion at the same subject position 316 Failed: error -52: nested recursion at the same subject position 320 Failed: error -52: nested recursion at the same subject position [all …]
|
/external/grpc-grpc-java/core/src/test/java/io/grpc/ |
D | ClientInterceptorsTest.java | 29 import static org.mockito.Matchers.same; 101 verify(channel).newCall(same(method), same(callOptions)); in channelAndInterceptorCalled() 102 verify(interceptor).interceptCall(same(method), same(callOptions), Mockito.<Channel>any()); in channelAndInterceptorCalled() 106 verify(channel, times(2)).newCall(same(method), same(callOptions)); in channelAndInterceptorCalled() 108 .interceptCall(same(method), same(callOptions), Mockito.<Channel>any()); in channelAndInterceptorCalled() 127 verify(channel, times(2)).newCall(same(method), same(CallOptions.DEFAULT)); in callNextTwice() 233 same(method), same(initialCallOptions), Mockito.<Channel>any()); in callOptions() 234 verify(channel).newCall(same(method), same(newCallOptions)); in callOptions() 407 verify(channel).newCall(same(method), same(callOptions)); in customOptionAccessible() 409 verify(interceptor).interceptCall(same(method), passedOptions.capture(), isA(Channel.class)); in customOptionAccessible()
|
/external/llvm/test/Transforms/GVN/ |
D | condprop.ll | 118 br i1 %cmp, label %same, label %different 120 same: 136 br i1 %cmp, label %same, label %different 138 same: 152 br i1 %cmp, label %same, label %different 154 same: 166 br i1 %cmp, label %same, label %different 168 same: 182 br i1 %cmp, label %same, label %different 184 same: [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/GVN/ |
D | condprop.ll | 118 br i1 %cmp, label %same, label %different 120 same: 136 br i1 %cmp, label %same, label %different 138 same: 152 br i1 %cmp, label %same, label %different 154 same: 166 br i1 %cmp, label %same, label %different 168 same: 182 br i1 %cmp, label %same, label %different 184 same: [all …]
|