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

1 2

  /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/chrome/browser/ui/webui/
web_ui_util.h 20 // resource_id as an image. This function does not check if the
21 // resource for the |resource_id| is an image, therefore it is the
24 // |resource_id|.
25 std::string GetImageDataUrlFromResource(int resource_id);
theme_source.cc 58 int resource_id = ResourcesUtil::GetThemeResourceId(uncached_path); local
59 if (resource_id != -1) {
60 SendThemeBitmap(request_id, resource_id);
91 int resource_id = ResourcesUtil::GetThemeResourceId(uncached_path); local
92 if (!ThemeService::IsThemeableImage(resource_id))
107 void ThemeSource::SendThemeBitmap(int request_id, int resource_id) {
108 if (ThemeService::IsThemeableImage(resource_id)) {
113 scoped_refptr<RefCountedMemory> image_data(tp->GetRawData(resource_id));
118 SendResponse(request_id, rb.LoadDataResourceBytes(resource_id));
devtools_ui.cc 52 int resource_id = -1; local
55 resource_id = kDevtoolsResources[i].value;
60 DLOG_IF(WARNING, -1 == resource_id) << "Unable to find dev tool resource: "
65 resource_id));
theme_source.h 37 void SendThemeBitmap(int request_id, int resource_id);
extension_icon_source.cc 55 SkBitmap* LoadImageByResourceId(int resource_id) {
57 .GetRawDataResource(resource_id).as_string();
  /external/chromium/chrome/browser/ui/webui/chromeos/
enterprise_enrollment_ui_unittest.cc 13 void TestStringStillOkForEnterpriseEnrollment(int resource_id) {
14 std::string resource_string = l10n_util::GetStringUTF8(resource_id);
enterprise_enrollment_ui.cc 74 // Saves i18n string for |resource_id| to the |key| property of |dictionary|.
77 int resource_id);
80 int resource_id,
262 int resource_id) {
263 dictionary->SetString(key, l10n_util::GetStringUTF16(resource_id));
268 int resource_id,
270 dictionary->SetString(key, l10n_util::GetStringFUTF16(resource_id, arg1));
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_setup_source_unittest.cc 16 void TestStringStillOkForCloudPrint(int resource_id) {
17 std::string resource_string = l10n_util::GetStringUTF8(resource_id);
cloud_print_setup_source.cc 36 int resource_id) {
37 dictionary->SetString(key, l10n_util::GetStringUTF16(resource_id));
  /external/chromium/chrome/browser/chromeos/login/
default_images_view.h 58 void InitButton(int resource_id, UserImageButton* button) const;
default_images_view.cc 155 void DefaultImagesView::InitButton(int resource_id,
158 ResourceBundle::GetSharedInstance().GetBitmapNamed(resource_id);
user_manager.cc 268 int resource_id = kDefaultImageResources[default_image_id];
271 resource_id));
480 int resource_id = kDefaultImageResources[selected_id];
482 resource_id);
  /external/chromium/chrome/browser/ssl/
ssl_blocking_page.cc 75 int resource_id; local
77 resource_id = IDR_SSL_ROAD_BLOCK_HTML;
86 resource_id = IDR_SSL_ERROR_HTML;
96 ResourceBundle::GetSharedInstance().GetRawDataResource(resource_id));
  /external/chromium/chrome/browser/
character_encoding.cc 27 int resource_id; member in struct:__anon2938::__anon2939
143 int resource_id = canonical_encoding_names[i].resource_id; local
144 (*id_to_encoding_name_map_)[resource_id] =
158 canonical_encoding_names[i].resource_id;
369 return canonical_encoding_names[index].resource_id;
  /external/chromium/chrome/browser/ui/toolbar/
wrench_menu_model.cc 279 int resource_id; local
284 resource_id = IDR_UPDATE_MENU4;
287 resource_id = IDR_UPDATE_MENU3;
290 resource_id = IDR_UPDATE_MENU2;
293 resource_id = IDR_UPDATE_MENU;
296 *icon = *rb.GetBitmapNamed(resource_id);
  /external/chromium/chrome/browser/extensions/
extension_protocols.cc 38 const FilePath& filename, int resource_id)
41 resource_id_(resource_id) { }
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_mac.h 121 // If |resource_id| has a PDF image which can be used, return it.
123 static NSImage* ImageForResource(int resource_id);
  /external/chromium/chrome/browser/chromeos/offline/
offline_load_page.cc 39 // A utility function to set the dictionary's value given by |resource_id|.
40 void SetString(DictionaryValue* strings, const char* name, int resource_id) {
41 strings->SetString(name, l10n_util::GetStringUTF16(resource_id));
  /external/chromium/chrome/browser/chromeos/input_method/
input_method_util.cc 121 int resource_id; member in struct:__anon2957::EnglishToResouceId
251 int resource_id; member in struct:__anon2957::EnglishAndInputMethodIdToResouceId
315 map_entry.english_string_from_ibus, map_entry.resource_id)).second;
333 std::make_pair(key, map_entry.resource_id)).second;
  /external/chromium/chrome/browser/themes/
theme_service.h 64 static bool IsThemeableImage(int resource_id);
theme_service.cc 192 bool ThemeService::IsThemeableImage(int resource_id) {
193 return HasThemeableImage(resource_id);
  /external/chromium/webkit/glue/
webkit_glue.h 170 base::StringPiece GetDataResource(int resource_id);
  /external/chromium/chrome/browser/ui/gtk/
browser_titlebar.cc     [all...]

Completed in 399 milliseconds

1 2