OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PrefetchData
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/chrome/browser/predictors/
resource_prefetch_predictor_tables.h
76
struct
PrefetchData
{
77
PrefetchData
(PrefetchKeyType key_type, const std::string& primary_key);
78
PrefetchData
(const
PrefetchData
& other);
79
~
PrefetchData
();
80
bool operator==(const
PrefetchData
& rhs) const;
91
// Map from primary key to
PrefetchData
for the key.
92
typedef std::map<std::string,
PrefetchData
> PrefetchDataMap;
102
virtual void UpdateData(const
PrefetchData
& url_data,
103
const
PrefetchData
& host_data)
[
all
...]
resource_prefetch_predictor_tables.cc
139
ResourcePrefetchPredictorTables::
PrefetchData
::
PrefetchData
(
146
ResourcePrefetchPredictorTables::
PrefetchData
::
PrefetchData
(
147
const
PrefetchData
& other)
154
ResourcePrefetchPredictorTables::
PrefetchData
::~
PrefetchData
() {
157
bool ResourcePrefetchPredictorTables::
PrefetchData
::operator==(
158
const
PrefetchData
& rhs) const {
184
const
PrefetchData
& url_data
[
all
...]
resource_prefetch_predictor_tables_unittest.cc
43
typedef ResourcePrefetchPredictorTables::
PrefetchData
PrefetchData
;
49
// Checks that the input
PrefetchData
are the same, although the resources
59
void PrintPrefetchData(const
PrefetchData
& data) const {
168
PrefetchData
google(PREFETCH_KEY_TYPE_URL, "http://www.google.com");
200
PrefetchData
yahoo(PREFETCH_KEY_TYPE_HOST, "www.yahoo.com");
288
PrefetchData
google(PREFETCH_KEY_TYPE_URL, "http://www.google.com");
327
PrefetchData
reddit(PREFETCH_KEY_TYPE_URL, "http://www.reddit.com");
346
PrefetchData
yahoo(PREFETCH_KEY_TYPE_URL, "http://www.yahoo.com");
361
PrefetchData
empty_host_data(PREFETCH_KEY_TYPE_HOST, std::string())
[
all
...]
resource_prefetch_predictor_unittest.cc
33
typedef ResourcePrefetchPredictorTables::
PrefetchData
PrefetchData
;
44
void PrintTo(const
PrefetchData
& data, ::std::ostream* os) {
62
MOCK_METHOD2(UpdateData, void(const
PrefetchData
& url_data,
63
const
PrefetchData
& host_data));
168
PrefetchData
empty_url_data_;
169
PrefetchData
empty_host_data_;
213
PrefetchData
google(PREFETCH_KEY_TYPE_URL, "http://www.google.com/");
251
PrefetchData
reddit(PREFETCH_KEY_TYPE_URL, "http://www.reddit.com/");
270
PrefetchData
yahoo(PREFETCH_KEY_TYPE_URL, "http://www.yahoo.com/")
[
all
...]
resource_prefetch_predictor.h
168
typedef ResourcePrefetchPredictorTables::
PrefetchData
PrefetchData
;
203
// Returns true if there is
PrefetchData
that can be used for the
210
// Converts a
PrefetchData
into a ResourcePrefetcher::RequestVector.
211
void PopulatePrefetcherRequest(const
PrefetchData
& data,
resource_prefetch_predictor.cc
591
const
PrefetchData
& data,
865
key,
PrefetchData
(key_type, key))).first;
[
all
...]
Completed in 1194 milliseconds