HomeSort by relevance Sort by last modified time
    Searched refs:Image (Results 251 - 275 of 1015) sorted by null

<<11121314151617181920>>

  /external/chromium_org/ui/gfx/
icon_util_unittest.cc 13 #include "ui/gfx/image/image.h"
14 #include "ui/gfx/image/image_family.h"
38 // Given a file name for an .ico file and an image dimensions, this
131 gfx::Image image = gfx::Image::CreateFrom1xPNGBytes( local
133 SkBitmap bitmap = image.AsBitmap();
211 // return an empty image.
214 image_family.Add(gfx::Image::CreateFrom1xBitmap(*bitmap))
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
TextureBlenderDDS.java 12 import com.jme3.texture.Image;
13 import com.jme3.texture.Image.Format;
64 LOGGER.log(Level.WARNING, "Image type not yet supported for blending: {0}", format);
67 throw new IllegalStateException("Invalid image format type for DDS texture blender: " + format);
89 return new Texture2D(new Image(format, width, height, newData));
93 return new Texture3D(new Image(format, width, height, depth, dataArray));
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
PFMLoader.java 38 import com.jme3.texture.Image;
39 import com.jme3.texture.Image.Format;
76 private Image load(InputStream in, boolean needYFlip) throws IOException{
133 return new Image(format, width, height, imageData);
  /external/skia/src/svg/
SkSVGImage.cpp 21 DEFINE_SVG_INFO(Image)
24 parser._startElement("image");
37 SkASSERT(strncmp(data, "data:image/", 11) == 0);
  /pdk/apps/CameraITS/service/src/com/android/camera2/its/
ItsUtils.java 25 import android.media.Image;
26 import android.media.Image.Plane;
75 // A single output image callback is made, with either the JPEG or the YUV data.
98 public static byte[] getDataFromImage(Image image)
100 int format = image.getFormat();
101 int width = image.getWidth();
102 int height = image.getHeight();
106 // Read image data
107 Plane[] planes = image.getPlanes()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/
LayoutView.java 30 import org.eclipse.swt.graphics.Image;
43 private Image mOnBlack;
45 private Image mOnWhite;
80 Image image = imageLoader.loadImage("show-extras.png", Display.getDefault()); //$NON-NLS-1$ local
81 mShowExtrasAction.setImageDescriptor(ImageDescriptor.createFromImage(image));
93 image = imageLoader.loadImage("load-all-views.png", Display.getDefault()); //$NON-NLS-1$
94 mLoadAllViewsAction.setImageDescriptor(ImageDescriptor.createFromImage(image));
  /external/chromium_org/ui/views/corewm/
image_grid.cc 13 #include "ui/gfx/image/image.h"
48 void ImageGrid::SetImages(const gfx::Image* top_left_image,
49 const gfx::Image* top_image,
50 const gfx::Image* top_right_image,
51 const gfx::Image* left_image,
52 const gfx::Image* center_image,
53 const gfx::Image* right_image,
54 const gfx::Image* bottom_left_image,
55 const gfx::Image* bottom_image
    [all...]
  /external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_data.h 15 #include "ui/gfx/image/image_skia.h"
29 class Image;
98 void OnExtensionIconLoaded(const gfx::Image& icon);
  /external/chromium_org/chrome/browser/chromeos/login/
screen_locker.h 27 class Image;
89 const gfx::Image& icon,
  /external/chromium_org/chrome/browser/extensions/
extension_uninstall_dialog.cc 24 #include "ui/gfx/image/image.h"
25 #include "ui/gfx/image/image_skia.h"
40 const gfx::ImageSkia& image = is_app ? local
43 return image.GetRepresentation(
76 extensions::ExtensionResource image = extensions::IconsInfo::GetIconResource( local
84 // Load the image asynchronously. The response will be sent to OnImageLoaded.
88 loader->LoadImageAsync(extension_, image,
94 void ExtensionUninstallDialog::SetIcon(const gfx::Image& image) {
    [all...]
  /external/chromium_org/chrome/browser/infobars/
infobar_delegate.cc 109 gfx::Image InfoBarDelegate::GetIcon() const {
111 return (icon_id == kNoIconID) ? gfx::Image() :
  /external/chromium_org/chrome/browser/notifications/
notification.h 16 #include "ui/gfx/image/image.h"
45 // Initializes a notification with text content and an icon image. Currently
48 const gfx::Image& icon,
61 const gfx::Image& icon,
92 // A url for the image to be shown (optional).
125 // The URL of a large image to be displayed for a a rich notification.
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_models.h 46 // As above, but also accepts an image which will be displayed alongside the
50 const gfx::Image& icon);
58 // As above, but also accepts an image which will be displayed alongside the
64 const gfx::Image& icon);
  /external/chromium_org/chrome/browser/ui/toolbar/
recent_tabs_sub_menu_model.h 31 class Image;
160 gfx::Image default_favicon_;
  /external/chromium_org/chrome/browser/ui/views/
avatar_menu_button.cc 58 // Scale the image to fit the width of the button.
71 // pixel below the image center rather than above. This is because the
72 // incognito image has shadows at the top that make the apparent center below
85 void AvatarMenuButton::SetAvatarIcon(const gfx::Image& icon,
87 icon_.reset(new gfx::Image(icon));
  /external/chromium_org/chrome/browser/ui/views/toolbar/
browser_action_test_util_views.cc 15 #include "ui/gfx/image/image.h"
49 gfx::Image BrowserActionTestUtil::GetIcon(int index) {
52 return gfx::Image(icon);
  /external/chromium_org/content/public/common/
content_client.h 30 class Image;
132 // Returns a native image given its id.
133 virtual gfx::Image& GetNativeImageNamed(int resource_id) const;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
DragImageTest.cpp 36 #include "platform/graphics/Image.h"
50 class TestImage : public Image {
59 : Image(0)
81 // Stub implementations of pure virtual Image functions.
134 // Tests that the drag image is a deep copy.
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
Image9.h 13 #include "libGLESv2/renderer/Image.h"
28 class Image9 : public Image
34 static Image9 *makeImage9(Image *img);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/
PageSiteComposite.java 15 import org.eclipse.swt.graphics.Image;
68 * Sets the {@link Image} for title;
70 public void setTitleImage(Image image) {
71 m_title.setImage(image);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentation.java 19 import org.eclipse.swt.graphics.Image;
97 * @return the {@link Image} to display on {@link Button}.
99 protected Image getImage() {
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Renderer.java 43 import com.jme3.texture.Image;
243 public void deleteImage(Image image);
  /external/jmonkeyengine/engine/src/test/jme3test/conversion/
TestMipMapGen.java 40 import com.jme3.texture.Image;
73 Image imageCustomMip = texCustomMip.getImage().clone();
  /external/proguard/src/proguard/gui/splash/
BufferedSprite.java 24 import java.awt.image.BufferedImage;
27 * This Sprite encapsulates another Sprite, which is then buffered in an Image.
35 private final Image bufferImage;
45 * Creates a new BufferedSprite with an ABGR image.
46 * @param bufferX the x offset of the buffer image.
47 * @param bufferY the y offset of the buffer image.
48 * @param width the width of the buffer image.
49 * @param height the height of the buffer image.
51 * @param x the variable x ordinate of the image buffer for painting.
52 * @param y the variable y ordinate of the image buffer for painting
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageOverlay.java 30 import org.eclipse.swt.graphics.Image;
34 import java.awt.image.BufferedImage;
35 import java.awt.image.DataBufferInt;
36 import java.awt.image.WritableRaster;
40 * The {@link ImageOverlay} class renders an image as an overlay.
44 * Whether the image should be pre-scaled (scaled to the zoom level) once
54 /** Current background image. Null when there's no image. */
55 private Image mImage;
57 /** A pre-scaled version of the image */
    [all...]

Completed in 1293 milliseconds

<<11121314151617181920>>