HomeSort by relevance Sort by last modified time
    Searched defs:resource (Results 1 - 25 of 243) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium/base/
resource_util.cc 29 void* resource = LockResource(hres); local
30 if (!resource)
33 *data = resource;
  /external/chromium/chrome/browser/chromeos/notifications/
system_notification_factory.cc 36 int resource = IDR_NOTIFICATION_ICON_HTML; local
48 resource = IDR_NOTIFICATION_ICON_LINK_HTML;
52 string16 content_url = DesktopNotificationService::CreateDataUrl(resource,
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebresourceprivate.h 32 WebCore::ArchiveResource* resource; member in struct:_WebKitWebResourcePrivate
  /external/chromium/chrome/browser/extensions/
convert_web_app_unittest.cc 138 ExtensionResource resource = extension->GetIconResource( local
140 ASSERT_TRUE(!resource.empty());
141 EXPECT_TRUE(file_util::PathExists(resource.GetFilePath()));
  /external/chromium/chrome/common/extensions/
extension_resource_unittest.cc 18 ExtensionResource resource; local
20 EXPECT_TRUE(resource.extension_root().empty());
21 EXPECT_TRUE(resource.relative_path().empty());
22 EXPECT_TRUE(resource.GetFilePath().empty());
38 ExtensionResource resource(extension_id, root_path, relative_path);
41 EXPECT_EQ(root_path.value(), resource.extension_root().value());
42 EXPECT_EQ(relative_path.value(), resource.relative_path().value());
43 EXPECT_TRUE(resource.GetFilePath().empty());
50 // Create resource in the extension root.
74 ExtensionResource resource(extension_id, temp.path()
    [all...]