HomeSort by relevance Sort by last modified time
    Searched refs:resource_id (Results 1 - 25 of 344) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/android/
resource_mapper.h 18 // Converts the given chromium |resource_id| (e.g. IDR_INFOBAR_TRANSLATE) to
20 static int MapFromChromiumId(int resource_id);
  /external/chromium_org/chrome/browser/drive/
drive_api_util_unittest.cc 63 std::string resource_id("1YsCnrMxxgp7LDdtlFDt-WdtEIth89vA9inrILtvK-Ug");
66 EXPECT_EQ(resource_id, CanonicalizeResourceId(resource_id));
69 EXPECT_EQ(resource_id, CanonicalizeResourceId("document:" + resource_id));
70 EXPECT_EQ(resource_id, CanonicalizeResourceId("spreadsheet:" + resource_id));
71 EXPECT_EQ(resource_id, CanonicalizeResourceId("presentation:" + resource_id));
72 EXPECT_EQ(resource_id, CanonicalizeResourceId("drawing:" + resource_id))
    [all...]
  /external/chromium_org/ui/base/resource/
resource_handle.h 30 // Returns true if the DataPack contains a resource with id |resource_id|.
31 virtual bool HasResource(uint16 resource_id) const = 0;
33 // Get resource by id |resource_id|, filling in |data|.
36 virtual bool GetStringPiece(uint16 resource_id,
42 uint16 resource_id) const = 0;
resource_data_dll_win.cc 20 bool ResourceDataDLL::HasResource(uint16 resource_id) const {
24 resource_id,
29 bool ResourceDataDLL::GetStringPiece(uint16 resource_id,
35 resource_id,
45 uint16 resource_id) const {
48 if (base::win::GetDataResourceFromModule(module_, resource_id, &data_ptr,
resource_data_dll_win.h 21 virtual bool HasResource(uint16 resource_id) const OVERRIDE;
22 virtual bool GetStringPiece(uint16 resource_id,
25 uint16 resource_id) const OVERRIDE;
resource_bundle_android.cc 28 gfx::Image& ResourceBundle::GetNativeImageNamed(int resource_id, ImageRTL rtl) {
31 return GetImageNamed(resource_id);
  /external/chromium_org/chrome/browser/chromeos/drive/
sync_client.cc 44 // Appends |resource_id| to |to_fetch| if the file is pinned but not fetched
49 const std::string& resource_id,
55 to_fetch->push_back(resource_id);
58 to_upload->push_back(resource_id);
114 void SyncClient::AddFetchTask(const std::string& resource_id) {
117 AddTaskToQueue(FETCH, resource_id, delay_);
120 void SyncClient::RemoveFetchTask(const std::string& resource_id) {
124 pending_fetch_list_.erase(resource_id);
127 void SyncClient::AddUploadTask(const std::string& resource_id) {
130 AddTaskToQueue(UPLOAD, resource_id, delay_)
211 const std::string& resource_id = (*to_upload)[i]; local
217 const std::string& resource_id = (*to_fetch)[i]; local
    [all...]
file_cache_unittest.cc 42 const std::string& resource_id,
44 out_resource_ids->push_back(resource_id);
109 void TestGetFile(const std::string& resource_id,
113 cache_->GetFileOnUIThread(resource_id,
121 EXPECT_EQ(util::EscapeCacheFileName(resource_id),
128 void TestStoreToCache(const std::string& resource_id,
138 resource_id, md5, source_path,
145 EXPECT_TRUE(GetCacheEntryFromOriginThread(resource_id, &cache_entry));
149 VerifyCacheFileState(error, resource_id);
152 void TestRemoveFromCache(const std::string& resource_id,
    [all...]
file_cache.h 35 typedef base::Callback<void(const std::string& resource_id,
97 // Gets the cache entry for file corresponding to |resource_id| and runs
102 void GetCacheEntryOnUIThread(const std::string& resource_id,
107 bool GetCacheEntry(const std::string& resource_id,
129 void GetFileOnUIThread(const std::string& resource_id,
132 // Checks if file corresponding to |resource_id| exists in cache, and returns
135 FileError GetFile(const std::string& resource_id,
142 void StoreOnUIThread(const std::string& resource_id,
149 // with |resource_id| and |md5|.
150 FileError Store(const std::string& resource_Id,
    [all...]
  /external/chromium_org/cc/quads/
stream_video_draw_quad.cc 13 StreamVideoDrawQuad::StreamVideoDrawQuad() : resource_id(0) {}
22 unsigned resource_id,
28 this->resource_id = resource_id;
37 unsigned resource_id,
41 this->resource_id = resource_id;
47 resource_id = callback.Run(resource_id);
57 value->SetInteger("resource_id", resource_id)
    [all...]
tile_draw_quad.cc 14 : resource_id(0) {
27 unsigned resource_id,
34 this->resource_id = resource_id;
42 unsigned resource_id,
49 this->resource_id = resource_id;
54 resource_id = callback.Run(resource_id);
64 value->SetInteger("resource_id", resource_id)
    [all...]
stream_video_draw_quad.h 22 unsigned resource_id,
30 unsigned resource_id,
33 unsigned resource_id; member in class:cc::StreamVideoDrawQuad
  /external/chromium_org/content/shell/common/
shell_content_client.cc 57 int resource_id,
60 switch (resource_id) {
63 resource_id = IDR_CONTENT_SHELL_MISSING_IMAGE_PNG;
65 resource_id = IDR_CONTENT_SHELL_MISSING_IMAGE_GIF;
70 resource_id = IDR_CONTENT_SHELL_TEXT_AREA_RESIZE_CORNER_PNG;
75 resource_id, scale_factor);
79 int resource_id) const {
80 return ResourceBundle::GetSharedInstance().LoadDataResourceBytes(resource_id);
83 gfx::Image& ShellContentClient::GetNativeImageNamed(int resource_id) const {
84 return ResourceBundle::GetSharedInstance().GetNativeImageNamed(resource_id);
    [all...]
shell_content_client.h 23 int resource_id,
26 int resource_id) const OVERRIDE;
27 virtual gfx::Image& GetNativeImageNamed(int resource_id) const OVERRIDE;
  /external/chromium_org/chrome/browser/google_apis/
drive_api_url_generator.h 59 // Returns a URL to copy a file specified by |resource_id|.
60 GURL GetFileCopyUrl(const std::string& resource_id) const;
62 // Returns a URL to touch a resource specified by |resource_id|.
63 GURL GetFileTouchUrl(const std::string& resource_id) const;
65 // Returns a URL to trash a resource with the given |resource_id|.
66 // Note that the |resource_id| is corresponding to the "file id" in the
69 GURL GetFileTrashUrl(const std::string& resource_id) const;
71 // Returns a URL to add a resource to a directory with |resource_id|.
72 // Note that the |resource_id| is corresponding to the "folder id" in the
75 GURL GetChildrenUrl(const std::string& resource_id) const
    [all...]
gdata_wapi_url_generator.h 83 GURL GenerateEditUrl(const std::string& resource_id) const;
92 GURL GenerateEditUrlWithoutParams(const std::string& resource_id) const;
98 GURL GenerateEditUrlWithEmbedOrigin(const std::string& resource_id,
103 GURL GenerateContentUrl(const std::string& resource_id) const;
105 // Generates a URL to remove an entry specified by |resource_id| from
108 const std::string& resource_id) const;
116 // file specified by |resource_id|.
118 const std::string& resource_id) const;
131 GURL GenerateDownloadFileUrl(const std::string& resource_id) const;
  /external/chromium/base/
resource_util.h 22 bool BASE_API GetDataResourceFromModule(HMODULE module, int resource_id,
resource_util.cc 9 bool GetDataResourceFromModule(HMODULE module, int resource_id,
14 if (!IS_INTRESOURCE(resource_id)) {
19 HRSRC hres_info = FindResource(module, MAKEINTRESOURCE(resource_id),
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
metadata_db_migration_util.h 38 std::string AddWapiFilePrefix(const std::string& resource_id);
42 std::string AddWapiFolderPrefix(const std::string& resource_id);
45 std::string AddWapiIdPrefix(const std::string& resource_id,
53 std::string RemoveWapiIdPrefix(const std::string& resource_id);
  /external/chromium_org/ppapi/shared_impl/
callback_tracker.cc 36 void CallbackTracker::PostAbortForResource(PP_Resource resource_id) {
37 CHECK(resource_id != 0);
38 CallbackSetMap::iterator it1 = pending_callbacks_.find(resource_id);
55 PP_Resource resource_id = tracked_callback->resource_id(); local
56 DCHECK(pending_callbacks_[resource_id].find(tracked_callback) ==
57 pending_callbacks_[resource_id].end());
58 pending_callbacks_[resource_id].insert(tracked_callback);
64 pending_callbacks_.find(tracked_callback->resource_id());
  /external/chromium_org/base/win/
resource_util.h 23 int resource_id,
32 int resource_id,
resource_util.cc 12 int resource_id,
19 if (!IS_INTRESOURCE(resource_id)) {
24 HRSRC hres_info = FindResource(module, MAKEINTRESOURCE(resource_id),
44 int resource_id,
47 return GetResourceFromModule(module, resource_id, L"BINDATA", data, length);
  /external/chromium_org/ui/base/cursor/
cursor_loader_null.cc 16 int resource_id,
19 int resource_id,
cursor_loader_null.h 21 int resource_id,
24 int resource_id,
cursors_aura.h 19 // ui::kCursorHelp. The IDR will be placed in |resource_id| and the hotspots
24 int* resource_id,
30 int* resource_id,

Completed in 1055 milliseconds

1 2 3 4 5 6 7 8 91011>>