/external/skia/tools/skpdiff/ |
D | skpdiff_server.py | 335 for expectation in self._expectations: 338 expectation.device_name + '-' + 339 expectation.image_name) 342 expectation.device_name + '-' + 343 expectation.image_name) 346 expectation.image_name, expectation.device_name)) 349 download_gm_image(expectation.image_name, 351 expectation.expected_hash) 353 download_gm_image(expectation.image_name, 355 expectation.actual_hash) [all …]
|
/external/vogar/src/vogar/ |
D | AnnotatedOutcome.java | 39 private final Expectation expectation; field in AnnotatedOutcome 44 AnnotatedOutcome(Outcome outcome, Expectation expectation) { in AnnotatedOutcome() argument 45 this.expectation = expectation; in AnnotatedOutcome() 62 return outcome.getResultValue(expectation); in getResultValue() 68 previousResultValues.add(previousOutcome.getResultValue(expectation)); in getPreviousResultValues()
|
D | ExpectationStore.java | 95 Expectation expectation = outcomes.get(name); in getByNameOrPackage() local 96 if (expectation != null) { in getByNameOrPackage() 97 return expectation; in getByNameOrPackage() 207 Expectation expectation = in readExpectation() local 211 if (map.put(name, expectation) != null) { in readExpectation() 267 for (Expectation expectation : allExpectations) { in loadBugStatuses() 268 if (expectation.getBug() != -1) { in loadBugStatuses() 269 bugs.add(expectation.getBug()); in loadBugStatuses() 281 for (Expectation expectation : allExpectations) { in loadBugStatuses() 282 if (openBugs.contains(expectation.getBug())) { in loadBugStatuses() [all …]
|
D | XmlReportPrinter.java | 104 Expectation expectation = expectationStore.get(outcome); in testsToSuites() local 105 if (!expectation.matches(outcome)) { in testsToSuites() 151 Expectation expectation = expectationStore.get(outcome); in print() local 152 if (!expectation.matches(outcome)) { in print()
|
D | Driver.java | 149 Expectation expectation = run.expectationStore.get(action.getName()); in enqueueActionTasks() local 150 boolean useLargeTimeout = expectation.getTags().contains("large"); in enqueueActionTasks() 221 Expectation expectation = run.expectationStore.get(outcome); in recordOutcome() local 222 ResultValue resultValue = outcome.getResultValue(expectation); in recordOutcome() 236 run.console.printResult(outcome.getName(), result, resultValue, expectation); in recordOutcome() local
|
D | Outcome.java | 136 public ResultValue getResultValue(Expectation expectation) { in getResultValue() argument 138 if (expectation.matches(this)) { in getResultValue() 140 } else if (expectation.getIsFromExpectationFile()) { in getResultValue()
|
D | Console.java | 157 String outcomeName, Result result, ResultValue resultValue, Expectation expectation) { in printResult() argument 160 if (!expectation.getDescription().isEmpty()) { in printResult() 161 … streamOutput(outcomeName, "\n" + colorString(expectation.getDescription(), Color.COMMENT)); in printResult() 163 if (expectation.getBug() != -1) { in printResult() 164 … streamOutput(outcomeName, "\n" + colorString("http://b/" + expectation.getBug(), Color.COMMENT)); in printResult()
|
D | OutcomeStore.java | 72 Expectation expectation = expectationStore.get(outcome); in read() local 73 result.put(entry.getKey(), new AnnotatedOutcome(outcome, expectation)); in read()
|
/external/android-mock/src/com/google/android/testing/mocking/ |
D | AndroidMock.java | 1509 public static boolean not(boolean expectation) { in not() argument 1510 return EasyMock.not(expectation); in not() 1534 public static byte not(byte expectation) { in not() argument 1535 return EasyMock.not(expectation); in not() 1558 public static char not(char expectation) { in not() argument 1559 return EasyMock.not(expectation); in not() 1583 public static double not(double expectation) { in not() argument 1584 return EasyMock.not(expectation); in not() 1608 public static float not(float expectation) { in not() argument 1609 return EasyMock.not(expectation); in not() [all …]
|
/external/chromium-libpac/test/js-unittest/ |
D | bindings.js | 13 function expectEquals(expectation, actual) { argument 14 if (!(expectation === actual)) { 15 throw "FAIL: expected: " + expectation + ", actual: " + actual;
|
D | pac_library_unittest.js | 290 TestContext.prototype.expectEquals = function(expectation, actual) { argument 291 if (!(expectation === actual)) { 293 this.log("FAIL: expected: " + expectation + ", actual: " + actual);
|
/external/google-breakpad/src/testing/test/ |
D | gmock_output_test_golden.txt | 36 Google Mock tried the following 1 expectation, but it didn't match: 49 Google Mock tried the following 1 expectation, but it didn't match: 95 FILE:#: tried expectation #0: EXPECT_CALL(foo_, Bar2(_, _))... 96 Expected: the expectation is active 100 FILE:#: tried expectation #1: EXPECT_CALL(foo_, Bar2(0, 0))... 116 FILE:#: tried expectation #0: EXPECT_CALL(foo_, Bar2(0, 0))... 121 FILE:#: tried expectation #1: EXPECT_CALL(foo_, Bar2(1, _))... 137 FILE:#: tried expectation #0: EXPECT_CALL(foo_, Bar2(0, 0))... 142 FILE:#: tried expectation #1: EXPECT_CALL(foo_, Bar2(1, _))... 174 Google Mock tried the following 1 expectation, but it didn't match: [all …]
|
/external/v8/test/preparser/ |
D | duplicate-parameter.pyt | 37 expectation = "strict_param_dupe" 40 Template(name, '"use strict";\n' + source)(non_selfstrict, expectation) 43 non_selfstrict, expectation) 46 source +'\n }\n}\n')(non_selfstrict, expectation) 56 selftest(selfstrict, expectation) 57 selftest(selfstrictnestedclean, expectation)
|
D | testcfg.py | 62 def Test(name, source, expectation): argument 66 if expectation: 71 def MkTest(replacement, expectation): argument 77 Test(testname, testsource, expectation)
|
D | strict-identifiers.pyt | 74 def MakeTests(replacement, expectation): 75 Template(name, '"use strict";\n' + source)(replacement, expectation) 78 replacement, expectation) 81 source +'\n }\n}\n')(replacement, expectation)
|
/external/v8/test/mjsunit/regress/ |
D | regress-phi-truncation.js | 30 function test(fun, expectation) { argument 33 assertEquals(expectation, fun(0));
|
/external/skia/tools/ |
D | image_expectations.cpp | 167 Expectation expectation = this->getExpectation(sourceName, tileNumber); in add() local 179 if (expectation.empty()) { in add() 181 } else if (expectation.matches(digest)) { in add() 183 } else if (expectation.ignoreFailure()) { in add()
|
/external/v8/test/mjsunit/ |
D | debug-evaluate-const.js | 84 var expectation = { "const0" : 0, variable 93 assertEquals(expectation[name], value);
|
/external/skia/bench/ |
D | check_bench_regressions.py | 110 for expectation in open(filename).readlines(): 111 elements = expectation.strip().split(',') 116 expectation)
|
/external/google-breakpad/src/testing/include/gmock/ |
D | gmock-spec-builders.h | 618 void AddExpectation(const Expectation& expectation) const; 1535 TypedExpectation<F>* const expectation = in AddNewExpectation() local 1537 const linked_ptr<ExpectationBase> untyped_expectation(expectation); in AddNewExpectation() 1546 return *expectation; in AddNewExpectation() 1682 TypedExpectation<F>* const expectation = in PrintTriedExpectationsLocked() local 1685 expectation->DescribeLocationTo(why); in PrintTriedExpectationsLocked() 1689 *why << expectation->source_text() << "...\n"; in PrintTriedExpectationsLocked() 1690 expectation->ExplainMatchResultTo(args, why); in PrintTriedExpectationsLocked() 1691 expectation->DescribeCallCountTo(why); in PrintTriedExpectationsLocked()
|
/external/google-breakpad/src/testing/src/ |
D | gmock-spec-builders.cc | 784 void Sequence::AddExpectation(const Expectation& expectation) const { in AddExpectation() 785 if (*last_expectation_ != expectation) { in AddExpectation() 787 expectation.expectation_base()->immediate_prerequisites_ in AddExpectation() 790 *last_expectation_ = expectation; in AddExpectation()
|
/external/deqp/modules/glshared/ |
D | glsStateQueryUtil.cpp | 1646 std::ostringstream expectation; in verifyFloatVec4() local 1659 expectation << " ,"; in verifyFloatVec4() 1671 …buf << "Expected {" << expectation.str() << "}, got " << tcu::formatArray(state.getIntVec4Access()… in verifyFloatVec4() 1679 std::ostringstream expectation; in verifyFloatVec4() local 1692 expectation << " ,"; in verifyFloatVec4() 1704 …buf << "Expected {" << expectation.str() << "}, got " << tcu::formatArray(state.getUintVec4Access(… in verifyFloatVec4() 1764 std::ostringstream expectation; in verifyNormalizedI32Vec4() local 1774 expectation << " ,"; in verifyNormalizedI32Vec4() 1782 …buf << "Expected {" << expectation.str() << "}, got " << tcu::formatArray(state.getFloatVec4Access… in verifyNormalizedI32Vec4() 1790 std::ostringstream expectation; in verifyNormalizedI32Vec4() local [all …]
|
/external/v8/test/test262/ |
D | README | 18 have to update the test expectation file.
|
/external/v8/test/test262-es6/ |
D | README | 18 have to update the test expectation file.
|
/external/llvm/test/CodeGen/X86/ |
D | x86-upgrade-avx-vbroadcast.ll | 4 ; expectation is that we should still get the original instruction back that
|