/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
D | openbugs_unittest.py | 45 for expectation in self.find_bugs_in_string_expectations: 46 self.assertEquals(openbugs._find_bugs_in_string(expectation[0]), expectation[1])
|
/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/net/data/proxy_resolver_v8_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/chromium/testing/gmock/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 | 101 def Test(name, source, expectation): argument 103 if (expectation is not None): 104 throws = [expectation] 112 def MkTest(replacement, expectation): argument 118 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)
|
D | duplicate-property.pyt | 38 def StrictTest(name, source, replacement, expectation): 41 "\"use strict\";\n" + source)(replacement, expectation) 42 Template(name, source)(replacement, expectation)
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
D | test_expectations.py | 138 for expectation in expectations: 139 retval.append(self.expectation_to_string(expectation)) 143 def expectation_to_string(self, expectation): argument 146 if item[1] == expectation: 148 raise ValueError(expectation) 403 def get_test_set(self, modifier, expectation=None, include_skips=True): argument 404 if expectation is None: 407 tests = (self._expectation_to_tests[expectation] & 411 tests = tests - self.get_test_set(SKIP, expectation) 538 expectation = self.EXPECTATIONS[part] [all …]
|
D | result_summary.py | 62 for expectation in TestExpectationsFile.EXPECTATIONS.values(): 63 self.tests_by_expectation[expectation] = set()
|
/external/chromium/chrome/browser/password_manager/ |
D | password_store_mac_unittest.cc | 199 PasswordFormData* expectation = expectations[i]; in CheckFormsAgainstExpectations() local 200 EXPECT_EQ(expectation->scheme, form->scheme) << test_label; in CheckFormsAgainstExpectations() 201 EXPECT_EQ(std::string(expectation->signon_realm), form->signon_realm) in CheckFormsAgainstExpectations() 203 EXPECT_EQ(GURL(expectation->origin), form->origin) << test_label; in CheckFormsAgainstExpectations() 204 EXPECT_EQ(GURL(expectation->action), form->action) << test_label; in CheckFormsAgainstExpectations() 205 EXPECT_EQ(WideToUTF16(expectation->submit_element), form->submit_element) in CheckFormsAgainstExpectations() 207 EXPECT_EQ(WideToUTF16(expectation->username_element), in CheckFormsAgainstExpectations() 209 EXPECT_EQ(WideToUTF16(expectation->password_element), in CheckFormsAgainstExpectations() 211 if (expectation->username_value) { in CheckFormsAgainstExpectations() 212 EXPECT_EQ(WideToUTF16(expectation->username_value), in CheckFormsAgainstExpectations() [all …]
|
/external/chromium/net/proxy/ |
D | proxy_config_unittest.cc | 13 void ExpectProxyServerEquals(const char* expectation, in ExpectProxyServerEquals() argument 15 if (expectation == NULL) { in ExpectProxyServerEquals() 18 EXPECT_EQ(expectation, proxy_server.ToURI()); in ExpectProxyServerEquals()
|
/external/chromium/testing/gmock/include/gmock/ |
D | gmock-spec-builders.h | 613 void AddExpectation(const Expectation& expectation) const; 1512 TypedExpectation<F>* const expectation = in AddNewExpectation() local 1514 const linked_ptr<ExpectationBase> untyped_expectation(expectation); in AddNewExpectation() 1523 return *expectation; in AddNewExpectation() 1656 TypedExpectation<F>* const expectation = in PrintTriedExpectationsLocked() local 1659 expectation->DescribeLocationTo(why); in PrintTriedExpectationsLocked() 1663 *why << expectation->source_text() << "...\n"; in PrintTriedExpectationsLocked() 1664 expectation->ExplainMatchResultTo(args, why); in PrintTriedExpectationsLocked() 1665 expectation->DescribeCallCountTo(why); in PrintTriedExpectationsLocked()
|
/external/chromium/testing/gmock/src/ |
D | gmock-spec-builders.cc | 768 void Sequence::AddExpectation(const Expectation& expectation) const { in AddExpectation() 769 if (*last_expectation_ != expectation) { in AddExpectation() 771 expectation.expectation_base()->immediate_prerequisites_ in AddExpectation() 774 *last_expectation_ = expectation; in AddExpectation()
|
/external/v8/test/es5conform/ |
D | README | 14 have to update the test expectation file.
|
/external/v8/test/test262/ |
D | README | 16 have to update the test expectation file.
|
D | test262.status | 50 # expectation values by far deviates from the actual result given by an
|
/external/chromium/chrome/browser/download/ |
D | download_browsertest.cc | 506 SelectExpectation expectation, in DownloadAndWaitWithDisposition() argument 520 if (expectation != EXPECT_NOTHING) { in DownloadAndWaitWithDisposition() 521 EXPECT_EQ(expectation == EXPECT_SELECT_DIALOG, in DownloadAndWaitWithDisposition() 529 SelectExpectation expectation) { in DownloadAndWait() argument 534 expectation, in DownloadAndWait()
|
/external/iptables/extensions/ |
D | libxt_CT.man | 20 Only generate the specified expectation events for this connection.
|
/external/chromium/chrome/browser/accessibility/ |
D | accessibility_mac_uitest.mm | 32 // This is a order sensitive expectation.
|
/external/chromium/testing/gmock/ |
D | CHANGES | 60 * New feature: the .After() clause for specifying expectation order.
|
/external/openfst/src/include/ |
D | Makefile.am | 62 fst/sparse-tuple-weight.h fst/sparse-power-weight.h fst/expectation-weight.h \
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | cocoa_test_helper.mm | 156 // NOTE(shess): Failing this expectation means that the test
|
/external/mesa3d/docs/ |
D | MESA_texture_signed_rgba.spec | 162 expectation is clearly that this extension would be co-implemented
|