HomeSort by relevance Sort by last modified time
    Searched refs:Image (Results 101 - 125 of 979) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
ImageFlipper.java 35 import com.jme3.texture.Image;
41 * Due to the standard of where the image origin is between OpenGL and
48 public static void flipImage(Image img, int index){
  /external/proguard/src/proguard/gui/splash/
ImageSprite.java 26 * This Sprite represents an animated image.
32 private final Image image; field in class:ImageSprite
41 * @param image the Image to be painted.
42 * @param x the variable x-coordinate of the upper-left corner of the image.
43 * @param y the variable y-coordinate of the upper-left corner of the image.
44 * @param scaleX the variable x-scale of the image.
45 * @param scaleY the variable y-scale of the image.
47 public ImageSprite(Image image
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
ImageReaderTest.java 22 import android.media.Image;
23 import android.media.Image.Plane;
39 private Image mImage1;
40 private Image mImage2;
41 private Image mImage3;
59 mImage1 = mock(Image.class);
60 mImage2 = mock(Image.class);
61 mImage3 = mock(Image.class);
81 * Return null when there is nothing in the image queue.
91 * Return the last image from the image queue, close up the rest
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/launcher/
chrome_launcher_app_menu_item_browser.h 22 const gfx::Image* icon,
chrome_launcher_app_menu_item_v2app.cc 11 const gfx::Image* icon,
chrome_launcher_app_menu_item_v2app.h 13 class image;
25 const gfx::Image* icon,
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_view_delegate.h 16 #include "ui/gfx/image/image.h"
70 virtual gfx::Image AccountChooserImage() = 0;
78 // Returns the image that should be shown on the left of the button strip
79 // or an empty image if none should be shown.
80 virtual gfx::Image ButtonStripImage() const = 0;
129 virtual gfx::Image IconForField(ServerFieldType type,
167 // The image to show in the splash screen when the dialog is first shown. If
168 // no splash screen should be shown, this image will be empty.
169 virtual gfx::Image SplashPageImage() const = 0
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
extension_install_prompt_test_utils.h 37 gfx::Image LoadInstallPromptIcon();
  /external/chromium_org/chrome/common/favicon/
favicon_types.h 10 #include "ui/gfx/image/image.h"
30 // Defines a gfx::Image of size desired_size_in_dip composed of image
36 // The resulting image.
37 gfx::Image image; member in struct:chrome::FaviconImageResult
39 // The URL of the favicon which contains all of the image representations of
40 // |image|.
41 // TODO(pkotwicz): Return multiple |icon_urls| to allow |image| to hav
    [all...]
  /external/chromium_org/content/shell/common/
shell_content_client.h 27 virtual gfx::Image& GetNativeImageNamed(int resource_id) const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ImageLayerChromiumTest.cpp 29 #include "core/platform/graphics/Image.h"
44 class TestImage : public Image {
53 : Image(0)
86 // Stub implementations of pure virtual Image functions.
119 RefPtr<Image> opaqueImage = TestImage::create(IntSize(100, 100), true);
121 RefPtr<Image> nonOpaqueImage = TestImage::create(IntSize(100, 100), false);
  /external/chromium_org/ui/message_center/
notifier_settings.h 11 #include "ui/gfx/image/image.h"
80 // The icon image of the notifier. The extension icon or favicon.
81 gfx::Image icon;
88 NotifierGroup(const gfx::Image& icon,
95 const gfx::Image icon;
122 const gfx::Image& icon) = 0;
  /external/jmonkeyengine/engine/src/core/com/jme3/texture/
Image.java 45 * <code>Image</code> defines a data format for a graphical image. The image
46 * is defined by a format, a height and width, and the image data. The width and
48 * should be packed before creation of the image object.
52 * @version $Id: Image.java 4131 2009-03-19 20:15:28Z blaine.dev $
54 public class Image extends NativeObject implements Savable /*, Cloneable*/ {
295 * @return True if this is a compressed image format, false if
303 * @return True if this image format is in floating point,
312 // image attribute
    [all...]
TextureArray.java 36 public TextureArray(List<Image> images) {
40 Image arrayImage = new Image(images.get(0).getFormat(), width, height,
43 for (Image img : images) {
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
PlaceholderAssets.java 11 import com.jme3.texture.Image;
12 import com.jme3.texture.Image.Format;
42 public static Image getPlaceholderImage(){
45 return new Image(Format.RGB8, 4, 4, tempData);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
ErrorImageComposite.java 11 import org.eclipse.swt.graphics.Image;
23 private Image mBaseImage;
30 * @param baseImage the base image to overlay an icon on top of
32 public ErrorImageComposite(Image baseImage) {
39 * @param baseImage the base image to overlay an icon on top of
42 public ErrorImageComposite(Image baseImage, boolean warning) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceLabelProvider.java 26 import org.eclipse.swt.graphics.Image;
54 private Image mWarningImage;
65 public Image getImage(Object element) {
99 public Image getColumnImage(Object element, int columnIndex) {
  /external/chromium_org/chrome/browser/extensions/
extension_uninstall_dialog.h 14 #include "ui/gfx/image/image_skia.h"
28 class Image;
84 // image, then we use a default icon instead.
85 void SetIcon(const gfx::Image& image);
87 void OnImageLoaded(const gfx::Image& image);
98 // Keeps track of whether we're still waiting for an image to load before
101 kImageIsLoading, // Image is loading asynchronously.
102 kDialogIsShowing, // Dialog is shown after image is loaded
    [all...]
  /external/chromium_org/chrome/browser/profiles/
avatar_menu_model.h 18 #include "ui/gfx/image/image.h"
33 Item(size_t model_index, const gfx::Image& icon);
37 gfx::Image icon;
102 const gfx::Image& GetManagedUserIcon() const;
  /external/chromium_org/chrome/browser/themes/
theme_service_aurax11.cc 12 #include "ui/gfx/image/image.h"
25 virtual gfx::Image GetImageNamed(int id) OVERRIDE;
55 gfx::Image NativeThemeX11::GetImageNamed(int id) {
56 return linux_ui_ ? linux_ui_->GetThemeImageNamed(id) : gfx::Image();
  /external/chromium_org/chrome/browser/ui/gtk/
avatar_menu_button_gtk.cc 41 void AvatarMenuButtonGtk::SetIcon(const gfx::Image& image,
43 icon_.reset(new gfx::Image(image));
81 // subtracting border, tries to resize the profile image to a size of -1).
82 gfx::Image icon = profiles::GetAvatarIconForTitleBar(
  /external/chromium_org/chrome/browser/ui/tests/
ui_gfx_image_unittest.cc 8 #include "ui/gfx/image/image.h"
9 #include "ui/gfx/image/image_unittest_util.h"
26 gfx::Image image(gfx::test::CreatePlatformImage());
33 image_view->SetImage(*image.ToImageSkia());
47 gfx::Image image = gfx::Image::CreateFrom1xBitmap( local
49 GtkWidget* image_view = gtk_image_new_from_pixbuf(image.ToGdkPixbuf())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImageCache.cpp 83 Image* SVGImageCache::imageForRenderer(const RenderObject* renderer)
86 return Image::nullImage();
90 return Image::nullImage();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
GraphicsUtilitiesTest.java 23 import org.eclipse.swt.graphics.Image;
39 Image image = new Image(Display.getDefault(), local
41 ImageData baseData = image.getImageData();
79 Image image = new Image(Display.getDefault(), local
82 ImageData baseData = image.getImageData();
100 Image image = new Image(Display.getDefault() local
134 Image image = new Image(Display.getDefault(), local
208 Image image = new Image(Display.getDefault(), local
224 Image image = new Image(Display.getDefault(), local
299 Image image = new Image(Display.getDefault(), local
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
Image.cpp 8 // Image.h: Implements the rx::Image class, an abstract base class for the
12 #include "libGLESv2/renderer/Image.h"
17 Image::Image()
25 void Image::loadAlphaDataToBGRA(GLsizei width, GLsizei height,
45 void Image::loadAlphaDataToNative(GLsizei width, GLsizei height,
59 void Image::loadAlphaFloatDataToRGBA(GLsizei width, GLsizei height,
79 void Image::loadAlphaHalfFloatDataToRGBA(GLsizei width, GLsizei height,
99 void Image::loadLuminanceDataToNativeOrBGRA(GLsizei width, GLsizei height
    [all...]

Completed in 773 milliseconds

1 2 3 45 6 7 8 91011>>