HomeSort by relevance Sort by last modified time
    Searched refs:usage_map (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_file_system_helper_unittest.cc 219 EXPECT_FALSE(ContainsKey(info->usage_map, kPersistent));
220 EXPECT_TRUE(ContainsKey(info->usage_map, kTemporary));
222 info->usage_map[storage::kFileSystemTypeTemporary]);
226 EXPECT_TRUE(ContainsKey(info->usage_map, kPersistent));
227 EXPECT_FALSE(ContainsKey(info->usage_map, kTemporary));
228 EXPECT_EQ(kEmptyFileSystemSize, info->usage_map[kPersistent]);
232 EXPECT_TRUE(ContainsKey(info->usage_map, kPersistent));
233 EXPECT_TRUE(ContainsKey(info->usage_map, kTemporary));
234 EXPECT_EQ(kEmptyFileSystemSize, info->usage_map[kPersistent]);
235 EXPECT_EQ(kEmptyFileSystemSize, info->usage_map[kTemporary])
    [all...]
mock_browsing_data_file_system_helper.cc 39 info.usage_map[storage::kFileSystemTypePersistent] = 0;
41 info.usage_map[storage::kFileSystemTypeTemporary] = 0;
43 info.usage_map[storage::kFileSystemTypeSyncable] = 0;
browsing_data_file_system_helper.h 55 std::map<storage::FileSystemType, int64> usage_map; member in struct:BrowsingDataFileSystemHelper::FileSystemInfo
browsing_data_file_system_helper.cc 152 inserted->second.usage_map[type] = usage;
214 file_system->usage_map[type] = size;
226 info.usage_map[type] = size;
  /external/chromium_org/chrome/browser/ui/webui/
cookies_tree_model_util.cc 216 ContainsKey(file_system_info.usage_map, kPerm) ?
218 file_system_info.usage_map.find(kPerm)->second)) :
222 ContainsKey(file_system_info.usage_map, kTemp) ?
224 file_system_info.usage_map.find(kTemp)->second)) :
  /external/chromium_org/content/browser/appcache/
appcache_database_unittest.cc 138 std::map<GURL, int64> usage_map; local
139 EXPECT_FALSE(db.GetAllOriginUsage(&usage_map));
738 std::map<GURL, int64> usage_map; local
739 EXPECT_TRUE(db.GetAllOriginUsage(&usage_map));
740 EXPECT_EQ(2U, usage_map.size());
741 EXPECT_EQ(1100, usage_map[kOrigin]);
742 EXPECT_EQ(5000, usage_map[kOtherOrigin]);
    [all...]
appcache_database.h 107 bool GetAllOriginUsage(std::map<GURL, int64>* usage_map);
appcache_quota_client.cc 209 return service_->storage()->usage_map();
appcache_storage.h 195 const UsageMap* usage_map() { return &usage_map_; } function in class:content::AppCacheStorage
appcache_database.cc 235 bool AppCacheDatabase::GetAllOriginUsage(std::map<GURL, int64>* usage_map) {
241 (*usage_map)[*origin] = GetOriginUsage(*origin);
    [all...]

Completed in 252 milliseconds