OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetHashState
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/content/browser/download/
download_file.h
74
virtual std::string
GetHashState
() = 0;
mock_download_file.h
46
MOCK_METHOD0(
GetHashState
, std::string());
base_file.h
101
virtual std::string
GetHashState
();
download_file_impl.h
63
virtual std::string
GetHashState
() OVERRIDE;
download_file_impl.cc
239
std::string DownloadFileImpl::
GetHashState
() {
240
return file_.
GetHashState
();
353
GetHashState
()));
base_file_unittest.cc
335
EXPECT_STRNE(std::string().c_str(), base_file_->
GetHashState
().c_str());
337
EXPECT_STRNE(std::string().c_str(), base_file_->
GetHashState
().c_str());
391
hash_state = base_file_->
GetHashState
();
download_item_impl_unittest.cc
[
all
...]
base_file.cc
224
std::string BaseFile::
GetHashState
() {
download_item_impl.h
134
virtual const std::string&
GetHashState
() const OVERRIDE;
download_manager_impl_unittest.cc
147
MOCK_CONST_METHOD0(
GetHashState
, const std::string&());
download_item_impl.cc
635
const std::string& DownloadItemImpl::
GetHashState
() const {
[
all
...]
download_file_unittest.cc
788
EXPECT_EQ(download_file_->
GetHashState
(), hash_state_);
/external/chromium_org/content/public/browser/
download_item.h
234
virtual const std::string&
GetHashState
() const = 0;
/external/chromium_org/content/public/test/
mock_download_item.h
76
MOCK_CONST_METHOD0(
GetHashState
, const std::string&());
Completed in 190 milliseconds