/external/chromium_org/third_party/WebKit/Source/core/history/ |
HistoryItem.h | 40 class Image;
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLPlugInImageElement.h | 34 class Image;
|
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/ |
BitmapImage.h | 33 #include "core/platform/graphics/Image.h" 44 class BitmapImage : public Image { 73 // we start and stop animating lazily. Animation begins whenever someone draws the image. It will 74 // automatically pause once all observers no longer want to render the image anywhere. 97 Uncertain, // We have a repetition count, but it might be wrong (some GIFs have a count after the image data, and will report "loop once" until all data has been decoded). 121 // the entire frame buffer cache and tell the image source to destroy 122 // everything; this is used when e.g. we want to free some room in the image 126 // other frames to avoid redecoding the whole image on every frame. 129 // If the image is large enough, calls destroyDecodedData(). 132 // Generally called by destroyDecodedData(), destroys whole-image metadat [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderThemeChromiumSkia.h | 159 bool paintMediaButtonInternal(GraphicsContext*, const IntRect&, Image*);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebElement.cpp | 168 WebCore::Image* image = unwrap<Element>()->imageContents(); 169 if (!image) 172 RefPtr<NativeImageSkia> bitmap = image->nativeImageForCurrentFrame();
|
/external/chromium_org/third_party/mesa/src/docs/ |
MESA_ycbcr_texture.spec | 43 image columns, the second component is Cb. For pixels in odd-numbered 44 image columns, the second component is Cr. If one were to convert the 115 In section 3.8.1, Texture Image Specification, on page 125, add 120 indicate that the image data is in YCbCr format. type must 132 In section 3.8.1, Texture Image Specification, on page 126, add 139 In section 3.8.2, Alternate Texture Image Specification Commands, on 143 "If the internal storage format of the image being updated by 185 INVALID_OPERATION is generated by TexSubImage2D if the internal image 189 image is YCBCR_MESA.
|
/external/chromium_org/ui/views/controls/button/ |
label_button.h | 11 #include "ui/gfx/image/image_skia.h" 28 // Get or set the image shown for the specified button state. 29 // GetImage returns the image for STATE_NORMAL if the state's image is empty. 31 void SetImage(ButtonState for_state, const gfx::ImageSkia& image); 49 // The optional image will lead the text, unless the button is right-aligned. 76 // Updates the image view to contain the appropriate button state image. 82 FRIEND_TEST_ALL_PREFIXES(LabelButtonTest, Image); 107 // The image and label shown in the button [all...] |
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/ |
CartoonEdgeFilter.java | 42 import com.jme3.texture.Image.Format;
|
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/ |
TextureUtil.java | 36 import com.jme3.texture.Image; 37 import com.jme3.texture.Image.Format; 91 throw new RendererException("Image format '" + fmt + "' is unsupported by the video hardware."); 168 public static void uploadTexture(Image img, 173 Image.Format fmt = img.getFormat();
|
/external/mesa3d/docs/ |
MESA_ycbcr_texture.spec | 43 image columns, the second component is Cb. For pixels in odd-numbered 44 image columns, the second component is Cr. If one were to convert the 115 In section 3.8.1, Texture Image Specification, on page 125, add 120 indicate that the image data is in YCbCr format. type must 132 In section 3.8.1, Texture Image Specification, on page 126, add 139 In section 3.8.2, Alternate Texture Image Specification Commands, on 143 "If the internal storage format of the image being updated by 185 INVALID_OPERATION is generated by TexSubImage2D if the internal image 189 image is YCBCR_MESA.
|
/external/proguard/src/proguard/gui/ |
TabbedPane.java | 31 * An image can be added below these buttons. 144 * Adds an image below the tab buttons, after all tabs have been added. 145 * The image will only be as visible as permitted by the available space. 147 * @param image the image. 148 * @return the component containing the image. 150 public Component addImage(final Image image) 158 JButton component = new JButton(new ImageIcon(image));
|
/frameworks/base/core/tests/coretests/src/android/hardware/display/ |
VirtualDisplayTest.java | 27 import android.media.Image; 364 // Create a solid color image to use as the content of the presentation. 374 * Watches for an image with a large amount of some particular solid color to be shown. 411 Log.d(TAG, "New image available from virtual display."); 414 Image image = reader.acquireLatestImage(); local 415 if (image != null) { 418 int color = scanImage(image); 426 image.close(); 434 private int scanImage(Image image) [all...] |
/packages/apps/Gallery/src/com/android/camera/gallery/ |
ImageList.java | 27 * Represents an ordered collection of Image objects. Provides an API to add 28 * and remove an image. 36 new String[] { "image/jpeg", "image/png", "image/gif" }; 134 return new Image(this, mContentResolver, id, cursor.getPosition(),
|
/pdk/apps/CameraITS/service/src/com/android/camera2/its/ |
ItsUtils.java | 25 import android.media.Image; 26 import android.media.Image.Plane; 166 // A single output image callback is made, with either the JPEG or the YUV data. 212 "External storage is not writable, cannot save capture image"); 250 public static byte[] getDataFromImage(Image image) 252 int format = image.getFormat(); 253 int width = image.getWidth(); 254 int height = image.getHeight(); 258 // Read image dat [all...] |
/pdk/apps/CameraITS/tests/ |
test_linearity.py | 15 import its.image namespace 20 import Image 89 img = its.image.load_yuv420_to_rgb_image(fname, w, h) 90 its.image.write_image( 92 img = its.image.apply_lut_to_image(img, inv_gamma_lut[1::2] * LM1) 93 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1) 94 rgb_means = its.image.compute_image_means(tile)
|
test_param_tonemap_mode.py | 15 import its.image namespace 21 import Image 62 img = its.image.load_yuv420_to_rgb_image(fname, w, h) 63 its.image.write_image( 65 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1) 66 rgb_means.append(its.image.compute_image_means(tile)) 87 img = its.image.load_yuv420_to_rgb_image(fname, w, h) 88 its.image.write_image( 90 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1) 91 rgb_means.append(its.image.compute_image_means(tile) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
LintColumn.java | 32 import org.eclipse.swt.graphics.Image; 79 * @return the image of the column, or null 81 public Image getColumnHeaderImage() { 100 * @param marker the {@link IMarker} to get the image for 101 * @return The image for this particular column, or null 104 public Image getImage(@NonNull IMarker marker) { 180 public Image getImage(@NonNull IMarker marker) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
ActivityPage.java | 38 import org.eclipse.swt.graphics.Image; 60 private Image mPreviewImage; 181 Image oldImage = mPreviewImage; 198 mPreviewImage = new Image(getControl().getDisplay(), input);
|
/external/chromium_org/chrome/browser/themes/ |
browser_theme_pack.cc | 31 #include "ui/gfx/image/canvas_image_source.h" 32 #include "ui/gfx/image/image.h" 33 #include "ui/gfx/image/image_skia.h" 34 #include "ui/gfx/image/image_skia_operations.h" 354 // Mapping used in GenerateTabBackgroundImages() to associate what frame image 368 // The maximum useful height of the image at |prs_id|. 371 // Whether cropping the image at |prs_id| should be skipped on OSes which 401 // persistent IDs for all themeable image IDs that aren't in kFrameTintMap, 439 // Shifts an image's HSL values. The caller is responsible for deletin [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
RenderPreview.java | 78 import org.eclipse.swt.graphics.Image; 89 import java.awt.image.BufferedImage; 123 private static final Image EDIT_ICON; 124 private static final Image ZOOM_IN_ICON; 125 private static final Image ZOOM_OUT_ICON; 126 private static final Image CLOSE_ICON; 157 private @Nullable Image mThumbnail; 421 * of image resources etc 590 BufferedImage image = session.getImage(); local 591 if (image != null) 708 BufferedImage image = new BufferedImage(width + shadowSize, height + shadowSize, local [all...] |
/external/chromium_org/chrome/browser/download/ |
download_util.cc | 43 #include "ui/gfx/image/image.h" 128 gfx::Image* icon, 195 gfx::Image* icon,
|
/external/chromium_org/chrome/browser/extensions/api/tabs/ |
ash_panel_contents.cc | 21 #include "ui/gfx/image/image.h" 218 gfx::Image new_image = gfx::Image::CreateFrom1xBitmap(
|
/external/chromium_org/chrome/browser/extensions/ |
image_loader_unittest.cc | 23 #include "ui/gfx/image/image.h" 24 #include "ui/gfx/image/image_skia.h" 43 void OnImageLoaded(const gfx::Image& image) { 47 image_ = image; 97 gfx::Image image_; 114 // Tests loading an image works correctly. 133 // The image isn't cached, so we should not have received notification. 138 // We should have gotten the image [all...] |
/external/chromium_org/chrome/browser/favicon/ |
favicon_tab_helper.cc | 27 #include "ui/gfx/image/image.h" 28 #include "ui/gfx/image/image_skia.h" 29 #include "ui/gfx/image/image_skia_rep.h" 61 gfx::Image FaviconTabHelper::GetFavicon() const { 67 return entry->GetFavicon().image; 71 return entry->GetFavicon().image; 72 return gfx::Image(); 126 favicon.image.IsEmpty()) { 130 entry->GetURL(), favicon.url, chrome::FAVICON, favicon.image); [all...] |
/external/chromium_org/chrome/browser/history/ |
thumbnail_database.h | 28 class Image; 88 const gfx::Image* thumbnail,
|