HomeSort by relevance Sort by last modified time
    Searched defs:expectations (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/ocmock/OCMock/
OCMockObject.h 13 NSMutableArray *expectations; variable
  /external/chromium_org/chrome/browser/extensions/
startup_helper_browsertest.cc 33 std::vector<std::pair<base::FilePath, bool> > expectations; local
34 expectations.push_back(
36 expectations.push_back(
38 expectations.push_back(
40 expectations.push_back(
44 expectations.begin();
45 i != expectations.end(); ++i) {
  /external/chromium/chrome/browser/parsers/
metadata_parser_filebase_unittest.cc 78 std::map<std::string, std::string> expectations; local
79 expectations[MetadataParser::kPropertyFilesize] = test_file_size();
80 expectations[MetadataParser::kPropertyTitle] = test_file_str();
88 ASSERT_TRUE(expectations.find(key) != expectations.end());
89 EXPECT_EQ(expectations[key], value);
91 expectations.erase(key);
96 EXPECT_TRUE(expectations.empty());
  /external/chromium_org/chrome/browser/parsers/
metadata_parser_filebase_unittest.cc 78 std::map<std::string, std::string> expectations; local
79 expectations[MetadataParser::kPropertyFilesize] = test_file_size();
80 expectations[MetadataParser::kPropertyTitle] = test_file_str();
88 ASSERT_TRUE(expectations.find(key) != expectations.end());
89 EXPECT_EQ(expectations[key], value);
91 expectations.erase(key);
96 EXPECT_TRUE(expectations.empty());
  /libcore/luni/src/test/java/libcore/java/security/
MessageDigestTest.java 78 private static final Map<String, Map<String, byte[]>> EXPECTATIONS
82 Map<String, byte[]> expectations = EXPECTATIONS.get(algorithm); local
83 if (expectations == null) {
84 expectations = new HashMap<String, byte[]>();
85 EXPECTATIONS.put(algorithm, expectations);
87 expectations.put(inputName, expected);
91 Map<String, byte[]> expectations = EXPECTATIONS.get(algorithm) local
    [all...]
  /external/chromium_org/base/mac/
libdispatch_task_runner_unittest.cc 31 // VerifyTaskOrder takes the expectations from TaskOrderMarkers and compares
33 void VerifyTaskOrder(const char* const expectations[],
39 EXPECT_LE(i, actual_size) << "Expected " << expectations[i];
43 EXPECT_EQ(expectations[i], task_order_[i]);
94 const char* const expectations[] = { local
98 VerifyTaskOrder(expectations, arraysize(expectations));
108 const char* const expectations[] = { local
114 VerifyTaskOrder(expectations, arraysize(expectations));
124 const char* const expectations[] = { local
142 const char* const expectations[] = { local
167 const char* const expectations[] = { local
193 const char* const expectations[] = { local
217 const char* const expectations[] = { local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/input_method/
textinput_browsertest.cc 244 InputTypeExpectation expectations[] = { local
256 for (size_t i = 0; i < arraysize(expectations); ++i) {
259 helper.WaitForTextInputStateChanged(expectations[i].type);
260 EXPECT_EQ(expectations[i].type, helper.GetTextInputType());
263 for (size_t i = 0; i < arraysize(expectations); ++i) {
264 helper.ClickElement(expectations[i].node_id, tab);
266 helper.WaitForTextInputStateChanged(expectations[i].type);
267 EXPECT_EQ(expectations[i].type, helper.GetTextInputType());
  /external/chromium_org/chrome/installer/util/
installation_validator.cc 31 SwitchExpectations* expectations) const {
47 expectations->push_back(std::make_pair(std::string(switches::kChromeFrame),
49 expectations->push_back(
55 SwitchExpectations* expectations) const {
63 expectations->push_back(
65 expectations->push_back(
83 SwitchExpectations* expectations) const {
85 expectations->push_back(std::make_pair(std::string(switches::kChromeFrame),
88 expectations->push_back(std::make_pair(std::string(switches::kChrome),
94 SwitchExpectations* expectations) const
449 CommandExpectations expectations; local
755 CommandExpectations expectations; local
    [all...]
google_update_settings_unittest.cc 72 static struct Expectations {
75 } expectations[] = { local
96 for (size_t j = 0; j < arraysize(expectations); ++j) {
99 ap += expectations[j].ap_value;
101 const wchar_t* channel = expectations[j].channel;
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_controller_browsertest.cc 502 std::vector<string16> expectations; local
511 expectations.push_back(expectation);
521 EXPECT_EQ(expectations[i], view->GetTextContentsOfInput(inputs[i]));
    [all...]
  /cts/tools/utils/
CollectAllTests.java 173 ExpectationStore[] expectations = new ExpectationStore[] { local
217 addToTests(expectations, testCases, klass.asSubclass(TestCase.class));
227 addToTests(expectations, testCases, klass.asSubclass(TestCase.class));
374 private static void addToTests(ExpectationStore[] expectations,
399 addToTests(expectations, testCases, test, testName);
405 private static void addToTests(ExpectationStore[] expectations,
425 } else if (VogarUtils.isVogarKnownFailure(expectations,
  /external/skia/gm/
gmmain.cpp 776 * Compares actual hash digest to expectations, returning the set of errors
783 * @param expectations what expectations to compare actualBitmap against
795 ErrorCombination compare_to_expectations(Expectations expectations,
808 if (expectations.empty()) {
811 // Write out the "actuals" for any tests without expectations, if we have
820 } else if (!expectations.match(actualBitmapAndDigest.fDigest)) {
963 Expectations expectations = expectationsSource->get(nameWithExtension.c_str()); local
    [all...]

Completed in 205 milliseconds