/external/protobuf/java/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/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/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/ |
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/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()
|
D | lz77.c | 304 unsigned short same0 = h->same[pos & ZOPFLI_WINDOW_MASK]; in ZopfliFindLongestMatch() 306 unsigned short same1 = h->same[(pos - dist) & ZOPFLI_WINDOW_MASK]; in ZopfliFindLongestMatch() 307 unsigned short same = same0 < same1 ? same0 : same1; in ZopfliFindLongestMatch() local 308 if (same > limit) same = limit; in ZopfliFindLongestMatch() 309 scan += same; in ZopfliFindLongestMatch() 310 match += same; in ZopfliFindLongestMatch() 333 if (hhead != h->head2 && bestlength >= h->same[hpos] && in ZopfliFindLongestMatch()
|
/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/curl/lib/ |
D | splay.c | 116 node->same = t; in Curl_splayinsert() 148 node->same = NULL; /* no identical node (yet) */ in Curl_splayinsert() 179 x = t->same; in Curl_splaygetbest() 239 removenode->smaller->same = removenode->same; in Curl_splayremovebyaddr() 240 if(removenode->same) in Curl_splayremovebyaddr() 241 removenode->same->smaller = removenode->smaller; in Curl_splayremovebyaddr() 265 x = t->same; in Curl_splayremovebyaddr()
|
/external/valgrind/ |
D | solaris12.supp | 12 # The same problem as above. 21 # The same problem as above. 31 # The same problem as above. 40 # The same problem as above. 74 # The same problem as above. 87 # The same problem as above. 99 # The same problem as above. 112 # The same problem as above.
|
/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/opencv3/doc/py_tutorials/py_imgproc/py_contours/py_contours_hierarchy/ |
D | py_contours_hierarchy.markdown | 41 simply they are in **same hierarchy level**. 49 I mentioned these things to understand terms like **same hierarchy level**, **external contour**, 58 <center>*"Next denotes next contour at the same hierarchical level."*</center> 60 For eg, take contour-0 in our picture. Who is next contour in its same level ? It is contour-1. So 63 What about contour-2? There is no next contour in the same level. So simply, put Next = -1. What 64 about contour-4? It is in same level with contour-5. So its next contour is contour-5, so Next = 5. 66 <center>*"Previous denotes previous contour at the same hierarchical level."*</center> 68 It is same as above. Previous contour of contour-1 is contour-0 in the same level. Similarly for 85 in OpenCV with the help of same image given above. ie what do flags like cv2.RETR_LIST, 95 rule, and they are just contours**. ie they all belongs to same hierarchy level. [all …]
|
/external/clang/test/CodeGenObjC/ |
D | default-property-synthesis.m | 4 // Superclass declares property. Subclass redeclares the same property. 6 // Superclass declares a property. Subclass declares a different property with the same name 9 // same property. Do not @synthesize-by-default in the subclass. P3 11 // same protocol or a derived protocol. Do not @synthesize-by-default in the subclass. P4
|
/external/llvm/lib/Target/Mips/ |
D | MSA.txt | 19 same cases. andi.b should use fractionally less power than bclri.b in 24 constant since shf.w covers exactly the same cases. shf.w is used 37 same shuffle. ilvev.d will be emitted instead. 41 same shuffle. ilvod.d will be emitted instead. 48 It is not possible to emit splati.w since shf.w covers the same cases. 67 the same operation and will be emitted instead. 77 Like their non-immediate counterparts, bmnzi.v and bmzi.v are the same
|
/external/valgrind/VEX/useful/ |
D | fp_80_64.c | 468 Bool same; in do_80_to_64_test() local 472 same = True; in do_80_to_64_test() 475 same = False; break; in do_80_to_64_test() 479 if (same) in do_80_to_64_test() 510 Bool same; in do_64_to_80_test() local 514 same = True; in do_64_to_80_test() 517 same = False; break; in do_64_to_80_test() 521 if (same) in do_64_to_80_test()
|
/external/llvm/utils/vim/indent/ |
D | llvm.vim | 7 " - On '}' align the same as the line containing the matching '{' 9 " - If the current line ends with ':' indent at the same level as the 34 " On '}' align the same as the line containing the matching '{' 45 " Indent labels the same as the current opening block
|
/external/skia/tools/lua/ |
D | classify_rrect_clips.lua | 17 local same = true; 30 same = false 37 if (numSquare > 0 and same) then
|
/external/guava/guava-tests/test/com/google/common/hash/ |
D | HashTestUtils.java | 252 int same = 0x0; // bitset for output bits with same values in checkNoFunnels() local 257 while (same != 0xffffffff || diff != 0xffffffff) { in checkNoFunnels() 265 same |= ~(hash1 ^ hash2); in checkNoFunnels() 275 "as follows: " + ~(same & diff) + ". This was " + in checkNoFunnels() 293 int[] same = new int[hashBits]; in checkAvalanche() local 305 same[k] += 1; in checkAvalanche() 313 double prob = (double) diff[j] / (double) (diff[j] + same[j]); in checkAvalanche() 383 int[] same = new int[hashBits]; in check2BitAvalanche() local 395 same[k] += 1; in check2BitAvalanche() 403 double prob = (double) diff[j] / (double) (diff[j] + same[j]); in check2BitAvalanche()
|
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-promote-const.ll | 38 ; Two different uses of the same constant in the same basic block 51 ; Regular access is strickly the same as promoted access. 66 ; Two different uses of the same constant in two different basic blocks, 71 ; Since, the constant is the same as the previous function, 72 ; the same address must be used 107 ; Since, the constant is the same as the previous function, 108 ; the same address must be used 136 ; Since, the constant is the same as the previous function, 137 ; the same address must be used
|
/external/autotest/client/site_tests/graphics_VTSwitch/ |
D | control.100 | 12 - VT1 does not remain the same between VT switches. 13 - VT2 does not remain the same between VT switches. 27 sure each VT remains the same between VT switches, and that VT1 and VT2 are
|
D | control | 12 - VT1 does not remain the same between VT switches. 13 - VT2 does not remain the same between VT switches. 31 sure each VT remains the same between VT switches, and that VT1 and VT2 are
|
/external/autotest/server/samples/ |
D | parallel_sleeptest.srv | 9 starting at the same time. Multiple machines can also be specified 32 required to start these multiple tests at the same time and returns the 42 of running multiple tests on the same machine at the same time.
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
D | DigestInputStream2Test.java | 124 boolean same = true; in test_read$BII() 127 same = false; in test_read$BII() 130 assertTrue("Didn't get the same data", same); in test_read$BII()
|
/external/opencv3/doc/py_tutorials/py_feature2d/py_features_meaning/ |
D | py_features_meaning.markdown | 15 it?** What about the projecting the same theory to a computer program so that computer can play 30 find them, we find the same features in other images, we align them. That's it. (In jigsaw puzzle, 50 but exact location is still difficult. It is because, along the edge, it is same everywhere. Normal 61 patch, it looks the same. For black patch, it is an edge. If you move it in vertical direction (i.e. 62 along the gradient) it changes. Put along the edge (parallel to edge), it looks the same. And for 73 So we found the features in image (Assume you did it). Once you found it, you should find the same 76 glasses etc" and you search for the same area in other images. Basically, you are describing the 79 features and its description, you can find same features in all images and align them, stitch them
|
/external/clang/test/SemaObjC/ |
D | property.m | 18 @synthesize d1; // expected-error {{synthesized property 'd1' must either be named the same as}} 20 … expected-error {{synthesized property 'prop_id' must either be named the same}} // expected-note… 22 @synthesize name; // OK! property with same name as an accessible ivar of same name
|
/external/llvm/test/Verifier/ |
D | AmbiguousPhi.ll | 2 ; CHECK: multiple entries for the same basic block 7 %a = phi i32 [%i, %0], [%j, %0] ; Error, different values from same block!
|