/external/chromium_org/base/test/expectations/ |
parser_unittest.cc | 20 expectations_.push_back(expectation); 32 std::vector<test_expectations::Expectation> expectations_; member in class:TestExpectationParserTest 44 ASSERT_EQ(1u, expectations_.size()); 45 EXPECT_EQ("DouglasTest.PoopsOk", expectations_[0].test_name); 46 EXPECT_EQ(test_expectations::RESULT_TIMEOUT, expectations_[0].result); 48 expectations_[0].configuration); 50 ASSERT_EQ(1u, expectations_[0].platforms.size()); 51 EXPECT_EQ("Win", expectations_[0].platforms[0].name); 52 EXPECT_EQ("8", expectations_[0].platforms[0].variant); 60 ASSERT_EQ(1u, expectations_.size()) [all...] |
/external/chromium_org/chrome/browser/extensions/api/desktop_capture/ |
desktop_capture_apitest.cc | 83 expectations_.push(expectation_array[i]); 91 EXPECT_TRUE(!expectations_.empty()); 92 if (!expectations_.empty()) { 93 EXPECT_EQ(expectations_.front().screens, show_screens); 94 EXPECT_EQ(expectations_.front().windows, show_windows); 101 if (!expectations_.empty()) { 102 next_source = expectations_.front().selected_source; 103 expect_cancelled = expectations_.front().cancelled; 104 expectations_.pop(); 111 std::queue<Expectation> expectations_; member in class:extensions::__anon4683::FakeDesktopMediaPickerFactory [all...] |
/external/chromium_org/chrome/browser/component_updater/test/ |
url_request_post_interceptor.cc | 61 while (!expectations_.empty()) { 62 Expectation expectation(expectations_.front()); 64 expectations_.pop(); 74 expectations_.push(std::make_pair(request_matcher, "")); 84 expectations_.push(std::make_pair(request_matcher, response)); 194 if (interceptor->expectations_.empty()) 197 interceptor->expectations_.front()); 201 interceptor->expectations_.pop();
|
url_request_post_interceptor.h | 84 mutable std::queue<Expectation> expectations_; member in class:component_updater::URLRequestPostInterceptor
|
/external/chromium_org/chromeos/process_proxy/ |
process_output_watcher_unittest.cc | 76 expectations_.Init(expectations); 85 bool success = expectations_.CheckExpectations(output, type); 86 if (!success || expectations_.IsDone()) 139 ProcessWatcherExpectations expectations_; member in class:chromeos::ProcessOutputWatcherTest
|
/external/chromium/testing/gmock/include/gmock/ |
gmock-spec-builders.h | 581 return expectations_ == rhs.expectations_; 589 expectations_.insert(e); 593 int size() const { return static_cast<int>(expectations_.size()); } 595 const_iterator begin() const { return expectations_.begin(); } 596 const_iterator end() const { return expectations_.end(); } 599 Expectation::Set expectations_; [all...] |