/external/mockito/src/test/java/org/mockito/internal/junit/ |
D | ArgMismatchFinderTest.java | 25 StubbingArgMismatches mismatches = finder.getStubbingArgMismatches(asList(mock1, mock2)); in no_interactions() local 28 assertEquals(0, mismatches.size()); in no_interactions() 38 StubbingArgMismatches mismatches = finder.getStubbingArgMismatches(asList(mock1, mock2)); in no_mismatch_when_mock_different() local 41 assertEquals(0, mismatches.size()); in no_mismatch_when_mock_different() 51 StubbingArgMismatches mismatches = finder.getStubbingArgMismatches(asList(mock1, mock2)); in no_mismatch_when_method_different() local 54 assertEquals(0, mismatches.size()); in no_mismatch_when_method_different() 65 StubbingArgMismatches mismatches = finder.getStubbingArgMismatches(asList(mock1, mock2)); in no_mismatch_when_stubbing_used() local 68 assertEquals(0, mismatches.size()); in no_mismatch_when_stubbing_used() 78 StubbingArgMismatches mismatches = finder.getStubbingArgMismatches(asList(mock1, mock2)); in stubbing_mismatch() local 81 assertEquals(1, mismatches.size()); in stubbing_mismatch() [all …]
|
D | StubbingArgMismatchesTest.java | 19 StubbingArgMismatches mismatches = new StubbingArgMismatches(); field in StubbingArgMismatchesTest 24 mismatches.format("MyTest.myTestMethod", logger); in no_op_when_no_mismatches() 33 mismatches.add( in logs_mismatch() 38 mismatches.format("MyTest.myTestMethod", logger); in logs_mismatch() 51 …mismatches.add(new InvocationBuilder().args("x").location("-> at X.java").toInvocation(), stubbing… in multiple_matching_invocations_per_stub_plus_some_other_invocation() 52 …mismatches.add(new InvocationBuilder().args("y").location("-> at Y.java").toInvocation(), stubbing… in multiple_matching_invocations_per_stub_plus_some_other_invocation() 54 mismatches.add( in multiple_matching_invocations_per_stub_plus_some_other_invocation() 59 mismatches.format("MyTest.myTestMethod", logger); in multiple_matching_invocations_per_stub_plus_some_other_invocation()
|
/external/mockito/src/main/java/org/mockito/internal/junit/ |
D | StubbingArgMismatches.java | 20 …final Map<Invocation, Set<Invocation>> mismatches = new LinkedHashMap<Invocation, Set<Invocation>>… field in StubbingArgMismatches 23 Set<Invocation> matchingInvocations = mismatches.get(stubbing); in add() 26 mismatches.put(stubbing, matchingInvocations); in add() 32 if (mismatches.isEmpty()) { in format() 38 for (Map.Entry<Invocation, Set<Invocation>> m : mismatches.entrySet()) { in format() 49 return mismatches.size(); in size() 53 return "" + mismatches; in toString()
|
D | ArgMismatchFinder.java | 17 StubbingArgMismatches mismatches = new StubbingArgMismatches(); in getStubbingArgMismatches() local 26 mismatches.add(i, stubbing.getInvocation()); in getStubbingArgMismatches() 30 return mismatches; in getStubbingArgMismatches()
|
/external/tensorflow/tensorflow/compiler/xla/tests/ |
D | exhaustive_op_test_utils.cc | 303 void PrintMismatch(int64* mismatches, const ErrorGenerator& err_generator) { in PrintMismatch() argument 310 (*mismatches)++; in PrintMismatch() 311 if (*mismatches < kMaxMismatchesLoggedToGunit) { in PrintMismatch() 313 } else if (*mismatches < kMaxMismatchesLoggedToErr || VLOG_IS_ON(2)) { in PrintMismatch() 315 } else if (*mismatches == kMaxMismatchesLoggedToErr) { in PrintMismatch() 351 int64 mismatches = 0; in ExpectNear() local 378 PrintMismatch(&mismatches, [&] { in ExpectNear() 440 PrintMismatch(&mismatches, [mismatch] { return mismatch; }); in ExpectNear() 442 EXPECT_EQ(mismatches, 0); in ExpectNear()
|
D | literal_test_util.cc | 52 const LiteralSlice& mismatches, in OnMiscompare() argument 61 WriteLiteralToTempFile(mismatches, "mismatches"); in OnMiscompare()
|
/external/tensorflow/tensorflow/stream_executor/cuda/ |
D | redzone_allocator_test.cc | 80 int64 mismatches = 0; in TEST() local 82 if (mismatches == kMaxMismatches) { in TEST() 87 ++mismatches; in TEST()
|
/external/llvm-project/clang/test/SemaObjCXX/ |
D | related-result-type-inference.mm | 19 // Do not infer when instance/class mismatches 57 // Not inferred due to instance/class mismatches
|
/external/clang/test/SemaObjCXX/ |
D | related-result-type-inference.mm | 19 // Do not infer when instance/class mismatches 57 // Not inferred due to instance/class mismatches
|
/external/llvm/test/Other/ |
D | lint.ll | 73 ; CHECK: Call argument count mismatches callee argument count 75 ; CHECK: Call argument count mismatches callee argument count 77 ; CHECK: Call argument type mismatches callee parameter type 179 ; CHECK: Call return type mismatches callee return type
|
/external/tensorflow/tensorflow/compiler/xla/tools/ |
D | run_hlo_module.cc | 78 const LiteralSlice& mismatches, in OnMiscompare() argument 87 WriteLiteralToTempFile(mismatches, "mismatches"); in OnMiscompare()
|
/external/tensorflow/tensorflow/compiler/xla/ |
D | literal_comparison.h | 40 const LiteralSlice& mismatches, const ShapeIndex& shape_index)>;
|
/external/clang/test/CodeGenObjC/ |
D | try.m | 6 // __objc_personality_v0 mismatches with an actual one.
|
/external/llvm-project/clang/test/CodeGenObjC/ |
D | try.m | 6 // __objc_personality_v0 mismatches with an actual one.
|
/external/setupcompat/ |
D | proguard.flags | 2 # and need to have the same class names to avoid (de)serialization errors/mismatches.
|
/external/llvm-project/llvm/test/Transforms/WholeProgramDevirt/ |
D | vcp-type-mismatch.ll | 3 ; Test that we correctly handle function type mismatches in argument counts 5 ; to optimize. For bitwidth mismatches, we allow the optimization in order
|
/external/llvm-project/llvm/test/Other/ |
D | lint.ll | 76 ; CHECK: Call argument count mismatches callee argument count 78 ; CHECK: Call argument count mismatches callee argument count 80 ; CHECK: Call argument type mismatches callee parameter type 186 ; CHECK: Call return type mismatches callee return type
|
/external/llvm-project/lld/test/wasm/lto/ |
D | signature-mismatch.ll | 6 ; mismatches with existing undefined sybmols in normal objects.
|
/external/autotest/server/site_tests/display_Resolution/ |
D | control.suspend_resume | 10 CRITERIA = "This test will fail if the captured display checksum mismatches."
|
D | control.extended | 10 CRITERIA = "This test will fail if the captured display checksum mismatches."
|
D | control.4K.extended | 10 CRITERIA = "This test will fail if the captured display checksum mismatches."
|
D | control.mirrored | 10 CRITERIA = "This test will fail if the captured display checksum mismatches."
|
/external/python/setuptools/setuptools/tests/ |
D | test_manifest.py | 130 for pattern, matches, mismatches in translate_specs 140 zip(itertools.repeat(pattern), mismatches) 141 for pattern, matches, mismatches in translate_specs
|
/external/autotest/server/site_tests/display_ResolutionList/ |
D | control.extended | 10 CRITERIA = "This test will fail if the captured display checksum mismatches."
|
D | control.mirrored | 10 CRITERIA = "This test will fail if the captured display checksum mismatches."
|