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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebImageTest.cpp 71 WebVector<WebImage> images = WebImage::framesFromData(WebData(data)); local
72 ASSERT_EQ(2u, images.size());
73 EXPECT_TRUE(images[0].size() == WebSize(2, 2));
74 EXPECT_TRUE(images[1].size() == WebSize(1, 1));
75 SkAutoLockPixels autoLock1(images[0].getSkBitmap());
76 EXPECT_EQ(SkColorSetARGB(255, 255, 255, 255), images[0].getSkBitmap().getColor(0, 0));
77 SkAutoLockPixels autoLock2(images[1].getSkBitmap());
78 EXPECT_EQ(SkColorSetARGB(255, 0, 0, 0), images[1].getSkBitmap().getColor(0, 0));
86 WebVector<WebImage> images = WebImage::framesFromData(WebData(data)); local
87 ASSERT_TRUE(images.isEmpty())
93 WebVector<WebImage> images = WebImage::framesFromData(WebData(badImage)); local
    [all...]
  /external/chromium_org/content/child/
image_decoder.cc 44 const blink::WebVector<WebImage>& images = WebImage::framesFromData( local
47 for (size_t i = 0; i < images.size(); ++i)
48 result.push_back(images[i].getSkBitmap());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
PasteAction.java 51 ISharedImages images = PlatformUI.getWorkbench().getSharedImages(); local
52 setImageDescriptor(images.getImageDescriptor(ISharedImages.IMG_TOOL_PASTE));
53 setHoverImageDescriptor(images.getImageDescriptor(ISharedImages.IMG_TOOL_PASTE));
55 images.getImageDescriptor(ISharedImages.IMG_TOOL_PASTE_DISABLED));
CopyCutAction.java 82 ISharedImages images = PlatformUI.getWorkbench().getSharedImages(); local
84 setImageDescriptor(images.getImageDescriptor(ISharedImages.IMG_TOOL_CUT));
85 setHoverImageDescriptor(images.getImageDescriptor(ISharedImages.IMG_TOOL_CUT_HOVER));
87 images.getImageDescriptor(ISharedImages.IMG_TOOL_CUT_DISABLED));
89 setImageDescriptor(images.getImageDescriptor(ISharedImages.IMG_TOOL_COPY));
90 setHoverImageDescriptor(images.getImageDescriptor(ISharedImages.IMG_TOOL_COPY_HOVER));
92 images.getImageDescriptor(ISharedImages.IMG_TOOL_COPY_DISABLED));
  /external/chromium_org/chrome/browser/webdata/
web_apps_table_unittest.cc 61 // Web app should initially have no images.
62 std::vector<SkBitmap> images; local
63 ASSERT_TRUE(table_->GetWebAppImages(url, &images));
64 ASSERT_EQ(0U, images.size());
74 ASSERT_TRUE(table_->GetWebAppImages(url, &images));
75 ASSERT_EQ(1U, images.size());
76 ASSERT_EQ(16, images[0].width());
77 ASSERT_EQ(16, images[0].height());
85 // transparent images because of pre-multiplication rounding errors.
94 images.clear()
    [all...]
web_data_service.h 76 // The images, may be empty.
77 std::vector<SkBitmap> images; member in struct:WDAppImagesResult
158 // images, but only one at a particular size. If there was an image for the
162 // Sets whether all the images have been downloaded for the specified web app.
165 // Removes all images for the specified web app.
168 // Fetches the images and whether all images have been downloaded for the
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMapElement.cpp 70 RefPtrWillBeRawPtr<HTMLCollection> images = document().images(); local
71 for (unsigned i = 0; Element* curr = images->item(i); ++i) {
HTMLFormElement.cpp 174 WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> > images(imageElements());
175 notifyFormRemovedFromTree(images, root);
177 WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> > images; local
178 collectImageElements(insertionPoint->highestAncestorOrSelf(), images);
179 notifyFormRemovedFromTree(images, root);
180 collectImageElements(root, images);
181 notifyFormRemovedFromTree(images, root);
  /external/chromium_org/chrome/browser/history/
top_sites_cache.h 51 void SetThumbnails(const URLToImagesMap& images);
52 const URLToImagesMap& images() const { return images_; } function in class:history::TopSitesCache
56 Images* GetImage(const GURL& url);
150 // The images. These map from canonical url to image.
  /external/chromium_org/third_party/WebKit/public/web/
WebCache.h 61 ResourceTypeStat images; member in struct:blink::WebCache::ResourceTypeStats
  /external/oprofile/libpp/
locate_images.h 3 * Location of binary images
72 /// return the archive path used to populate the images name map
94 images_t images; member in class:extra_images
95 /// the archive path passed to populate the images name map.
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
dashboard.py 31 from google.appengine.api import images namespace
155 #avatar = images.resize(self.request.get("avatar"), 128, 128)
  /external/chromium_org/android_webview/renderer/
aw_render_view_ext.cc 174 blink::WebVector<blink::WebElement> images; local
175 webview->mainFrame()->document().images(images);
176 hasImages = !images.isEmpty();
  /external/chromium_org/chrome/browser/extensions/
sandboxed_unpacker.cc 180 // Read the decoded images back from the file we saved them to.
184 DecodedImages* images) {
193 return IPC::ReadParam(&pickle, &iter, images);
370 // installed. For example, the install UI shows images from inside the
647 DecodedImages images; local
648 if (!ReadImagesFromFile(temp_dir_.path(), &images)) {
658 // Delete any images that may be used by the browser. We're going to write
659 // out our own versions of the parsed images, and we want to make sure the
663 if (image_paths.size() != images.size()) {
664 // Decoded images don't match what's in the manifest
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebDocument.cpp 165 void WebDocument::images(WebVector<WebElement>& results) function in class:blink::WebDocument
167 RefPtrWillBeRawPtr<HTMLCollection> images = unwrap<Document>()->images(); local
168 size_t sourceLength = images->length();
172 Element* element = images->item(i);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
BaseDialogFragment.java 118 List<TransitionImage> images = TransitionImage.readMultipleFromIntent( local
123 if (images != null && images.size() > 0) {
132 TransitionImage src = images.get(0);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
RunLintAction.java 144 ISharedImages images = PlatformUI.getWorkbench().getSharedImages(); local
145 ImageDescriptor clear = images.getImageDescriptor(ISharedImages.IMG_ELCL_REMOVEALL);
  /external/chromium_org/chrome/browser/themes/
browser_theme_pack_unittest.cc 229 // The stargazing theme defines the following images:
237 // Here are a few images that we shouldn't expect because even though
252 // The high DPI theme defines the following images:
259 // The high DPI theme does not define the following images:
547 // HasCustomImage should only return true for images that exist in the
548 // extension and not for autogenerated images.
549 std::string images = "{ \"theme_frame\": \"one\" }"; local
551 ParseImageNamesJSON(images, &out_file_paths);
558 std::string images = "{ \"theme_frame\": \"does_not_exist\" }"; local
560 ParseImageNamesJSON(images, &out_file_paths)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
MemoryCache.h 21 This class provides all functionality needed for loading images, style sheets and html
47 // This cache holds subresources used by Web pages: images, scripts, stylesheets, etc.
144 TypeStatistic images; member in struct:WebCore::FINAL::Statistics
  /external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DynamicLoaderPOSIXDYLD.cpp 182 // Don't load dependent images since we are in dyld where we will know
183 // and find out about all images that are loaded
364 const ModuleList &images = target.GetImages(); local
366 images.FindSymbolsWithNameAndType(sym_name, eSymbolTypeCode, target_symbols);
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RootsFragment.java 292 RootItem images = null; local
308 images = new RootItem(root);
328 if (images != null) add(images);
  /external/chromium_org/cc/test/
test_web_graphics_context_3d.cc 549 base::ScopedPtrHashMap<unsigned, Image>& images = namespace_->images; local
550 images.set(image_id, make_scoped_ptr(new Image).Pass());
551 images.get(image_id)->pixels.reset(new uint8[width * height * 4]);
565 DCHECK_GT(namespace_->images.count(image_id), 0u);
572 base::ScopedPtrHashMap<unsigned, Image>& images = namespace_->images; local
573 DCHECK_GT(images.count(image_id), 0u);
580 return images.get(image_id)->pixels.get();
586 DCHECK_GT(namespace_->images.count(image_id), 0u)
    [all...]
test_web_graphics_context_3d.h 397 base::ScopedPtrHashMap<unsigned, Image> images; member in struct:cc::TestWebGraphicsContext3D::Namespace
  /external/oprofile/pp/
opannotate.cpp 765 bool annotate_source(list<string> const & images)
794 list<string>::const_iterator it = images.begin();
795 list<string>::const_iterator const end = images.end();
825 list<string> images; local
839 images.push_back(it->image);
849 annotate_source(images);
  /external/chromium_org/ash/system/chromeos/network/
network_icon.cc 56 // class used for maintaining a map of network state and images.
168 // Utilities for generating icon images.
181 // Images for strength bars for wired networks.
187 // Number of discrete images to use for alpha fade animation
191 // Classes for generating scaled images.
271 // Utilities for extracting icon images.
337 gfx::ImageSkia* images = BaseImageForType(image_type, icon_type);
338 int width = images->width();
339 int height = images->height() / num_images;
340 return gfx::ImageSkiaOperations::ExtractSubset(*images,
377 gfx::ImageSkia** images; local
    [all...]

Completed in 758 milliseconds

1 2 3