/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 // RUN: not %clang_cc1 -fmodules -fmodules-cache-path=%t -I %S/Inputs/modules-with-same-name/Depend… 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-…
|
D | import-self.m | 4 // CHECK: import of module 'import_self.c' appears within same top-level module 'import_self' 9 // CHECK-fmodule-name: import of module 'import_self.b' appears within same top-level module 'impor…
|
/external/v8/test/webkit/ |
D | object-literal-syntax-expected.txt | 29 …w exception SyntaxError: Object literal may not have data and accessor property with the same name. 30 …w exception SyntaxError: Object literal may not have data and accessor property with the same name. 31 …w exception SyntaxError: Object literal may not have data and accessor property with the same name. 32 …w exception SyntaxError: Object literal may not have data and accessor property with the same name. 33 …w exception SyntaxError: Object literal may not have multiple get/set accessors with the same name. 34 …w exception SyntaxError: Object literal may not have multiple get/set accessors with the same name. 35 …w exception SyntaxError: Object literal may not have multiple get/set accessors with the same name. 36 …w exception SyntaxError: Object literal may not have data and accessor property with the same name. 37 …w exception SyntaxError: Object literal may not have data and accessor property with the same name. 38 …w exception SyntaxError: Object literal may not have data and accessor property with the same name. [all …]
|
/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/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/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/skia/tools/lua/ |
D | classify_rrect_clips.lua | 17 local same = true; 30 same = false 37 if (numSquare > 0 and same) then
|
/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/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/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/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!
|
/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/openssh/ |
D | deattack.c | 108 u_int32_t i, j, l, same; in detect_attack() local 150 for (c = buf, same = j = 0; c < (buf + len); c += SSH_BLOCKSIZE, j++) { in detect_attack() 154 if (++same > MAX_IDENTICAL) in detect_attack()
|
/external/protobuf/gtest/test/ |
D | gtest_output_test_golden_win.txt | 219 All tests in the same test case must use the same test fixture 224 units and have the same name. You should probably rename one 229 All tests in the same test case must use the same test fixture 234 units and have the same name. You should probably rename one 242 All tests in the same test case must use the same test fixture 247 units and have the same name. You should probably rename one 255 All tests in the same test case must use the same test fixture 256 class, so mixing TEST_F and TEST in the same test case is 268 All tests in the same test case must use the same test fixture 269 class, so mixing TEST_F and TEST in the same test case is
|
/external/pdfium/samples/ |
D | image_diff.cc | 297 bool same = (image1.w() == image2.w()) && (image1.h() == image2.h()); in CreateImageDiff() local 307 same = false; in CreateImageDiff() 317 return same; in CreateImageDiff() 336 bool same = CreateImageDiff(baseline_image, actual_image, &diff_image); in DiffImages() local 337 if (same) in DiffImages()
|
/external/llvm/test/MC/Mips/ |
D | sort-relocation-table.s | 5 # corresponding *LO16 relocation against the same symbol. 7 # We try to implement the same semantics as gas, ie. to order the relocation 8 # table the same way as gas.
|
/external/antlr/antlr-3.4/runtime/Python/unittests/ |
D | testtreewizard.py | 635 same = wiz.equals(t1, t2) 636 self.failUnless(same) 643 same = wiz.equals(t1, t2) 644 self.failUnless(same) 651 same = wiz.equals(t1, t2) 652 self.failUnless(not same) 659 same = wiz.equals(t1, t2) 660 self.failUnless(not same) 667 same = wiz.equals(t1, t2) 668 self.failUnless(not same)
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | PluralFormatUnitTest.java | 192 Map<ULocale,Set<ULocale>> same = new LinkedHashMap(); in TestSamples() local 195 Set<ULocale> others = same.get(otherLocale); in TestSamples() 196 if (others == null) same.put(otherLocale, others = new LinkedHashSet()); in TestSamples() 200 for (ULocale locale0 : same.keySet()) { in TestSamples() 203 logln(localeName + "\t=\t" + same.get(locale0)); in TestSamples()
|
/external/libxml2/os400/libxmlrpg/ |
D | HTMLtree.rpgle | 21 * the same way as a text node in an XML document. 28 * the same way as an entity reference in an XML document. 36 * the same way as a comment in an XML document. 44 * the same way as a CDATA section in an XML document. 52 * the same way as a processing instruction in an XML document.
|