OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:usage_map
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/chrome/browser/browsing_data/
browsing_data_file_system_helper_unittest.cc
218
EXPECT_FALSE(ContainsKey(info->
usage_map
, kPersistent));
219
EXPECT_TRUE(ContainsKey(info->
usage_map
, kTemporary));
221
info->
usage_map
[fileapi::kFileSystemTypeTemporary]);
225
EXPECT_TRUE(ContainsKey(info->
usage_map
, kPersistent));
226
EXPECT_FALSE(ContainsKey(info->
usage_map
, kTemporary));
227
EXPECT_EQ(kEmptyFileSystemSize, info->
usage_map
[kPersistent]);
231
EXPECT_TRUE(ContainsKey(info->
usage_map
, kPersistent));
232
EXPECT_TRUE(ContainsKey(info->
usage_map
, kTemporary));
233
EXPECT_EQ(kEmptyFileSystemSize, info->
usage_map
[kPersistent]);
234
EXPECT_EQ(kEmptyFileSystemSize, info->
usage_map
[kTemporary])
[
all
...]
mock_browsing_data_file_system_helper.cc
34
info.
usage_map
[fileapi::kFileSystemTypePersistent] = 0;
36
info.
usage_map
[fileapi::kFileSystemTypeTemporary] = 0;
38
info.
usage_map
[fileapi::kFileSystemTypeSyncable] = 0;
browsing_data_file_system_helper.cc
149
inserted->second.
usage_map
[type] = usage;
223
file_system->
usage_map
[type] = size;
235
info.
usage_map
[type] = size;
browsing_data_file_system_helper.h
55
std::map<fileapi::FileSystemType, int64>
usage_map
;
member in struct:BrowsingDataFileSystemHelper::FileSystemInfo
/external/chromium_org/chrome/browser/ui/webui/
cookies_tree_model_util.cc
208
ContainsKey(file_system_info.
usage_map
, kPerm) ?
210
file_system_info.
usage_map
.find(kPerm)->second)) :
214
ContainsKey(file_system_info.
usage_map
, kTemp) ?
216
file_system_info.
usage_map
.find(kTemp)->second)) :
/external/chromium_org/content/browser/appcache/
appcache_database_unittest.cc
144
std::map<GURL, int64>
usage_map
;
local
145
EXPECT_FALSE(db.GetAllOriginUsage(&
usage_map
));
744
std::map<GURL, int64>
usage_map
;
local
745
EXPECT_TRUE(db.GetAllOriginUsage(&
usage_map
));
746
EXPECT_EQ(2U,
usage_map
.size());
747
EXPECT_EQ(1100,
usage_map
[kOrigin]);
748
EXPECT_EQ(5000,
usage_map
[kOtherOrigin]);
[
all
...]
/external/chromium_org/webkit/browser/appcache/
appcache_database.h
110
bool GetAllOriginUsage(std::map<GURL, int64>*
usage_map
);
appcache_quota_client.cc
211
return service_->storage()->
usage_map
();
appcache_storage.h
199
const UsageMap*
usage_map
() { return &usage_map_; }
function in class:appcache::AppCacheStorage
appcache_database.cc
234
bool AppCacheDatabase::GetAllOriginUsage(std::map<GURL, int64>*
usage_map
) {
240
(*
usage_map
)[*origin] = GetOriginUsage(*origin);
[
all
...]
Completed in 263 milliseconds