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[fileapi::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 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.h 55 std::map<fileapi::FileSystemType, int64> usage_map; member in struct:BrowsingDataFileSystemHelper::FileSystemInfo
browsing_data_file_system_helper.cc 151 inserted->second.usage_map[type] = usage;
227 file_system->usage_map[type] = size;
239 info.usage_map[type] = size;
  /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/webkit/browser/appcache/
appcache_database.h 91 bool GetAllOriginUsage(std::map<GURL, int64>* usage_map);
appcache_quota_client.cc 207 return service_->storage()->usage_map();
appcache_storage.h 190 const UsageMap* usage_map() { return &usage_map_; } function in class:appcache::AppCacheStorage
appcache_database_unittest.cc 664 std::map<GURL, int64> usage_map; local
665 EXPECT_TRUE(db.GetAllOriginUsage(&usage_map));
666 EXPECT_EQ(2U, usage_map.size());
667 EXPECT_EQ(1100, usage_map[kOrigin]);
668 EXPECT_EQ(5000, usage_map[kOtherOrigin]);
    [all...]
appcache_database.cc 231 bool AppCacheDatabase::GetAllOriginUsage(std::map<GURL, int64>* usage_map) {
237 (*usage_map)[*origin] = GetOriginUsage(*origin);
    [all...]

Completed in 1289 milliseconds