HomeSort by relevance Sort by last modified time
    Searched refs:image (Results 51 - 75 of 1119) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/apps/Camera/jni/feature_mos/src/mosaic/
MosaicTypes.h 64 * Note: Currently assumes a YVU image
70 ImageType image; member in class:MosaicFrame
84 image = ImageUtils::allocateImage(width, height, ImageUtils::IMAGE_TYPE_NUM_CHANNELS);
91 if (image)
92 free(image);
96 * Get the V plane of the image.
100 return (image + (width*height));
104 * Get the U plane of the image.
108 return (image + (width*height*2));
112 * Get a pixel from the V plane of the image
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/
Token.java 40 * The string image of the token.
42 public String image; field in class:Token
69 * Returns the image.
73 return image;
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/contenttype/parser/
Token.java 40 * The string image of the token.
42 public String image; field in class:Token
69 * Returns the image.
73 return image;
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/datetime/parser/
Token.java 40 * The string image of the token.
42 public String image; field in class:Token
69 * Returns the image.
73 return image;
  /external/opencv/cvaux/src/
extendededges.cpp 46 //void icvCutContour( CvSeq* current, IplImage* image );
47 CvSeq* icvCutContourRaster( CvSeq* current, CvMemStorage* storage, IplImage* image );
50 //create lists of segments of all contours from image
51 CvSeq* cvExtractSingleEdges( IplImage* image, //bw image - it's content will be destroyed by cvFindContours
56 cvFindContours( image, tmp_storage, &contours, sizeof(CvContour), CV_RETR_LIST, CV_CHAIN_APPROX_NONE );
57 cvZero( image );
75 CvSeq* new_seq = icvCutContourRaster( current, storage, image );
121 CvSeq* icvCutContourRaster( CvSeq* current, CvMemStorage* storage, IplImage* image /*tmp image*/)
    [all...]
  /sdk/draw9patch/src/com/android/draw9patch/graphics/
GraphicsUtilities.java 20 import java.awt.image.BufferedImage;
21 import java.awt.image.Raster;
31 BufferedImage image = ImageIO.read(resource); local
32 return toCompatibleImage(image);
39 public static BufferedImage toCompatibleImage(BufferedImage image) {
41 return image;
44 if (image.getColorModel().equals(getGraphicsConfiguration().getColorModel())) {
45 return image;
49 image.getWidth(), image.getHeight(), image.getTransparency())
    [all...]
  /sdk/chimpchat/src/com/android/chimpchat/adb/image/
ImageUtils.java 16 package com.android.chimpchat.adb.image;
21 import java.awt.image.BufferedImage;
22 import java.awt.image.DataBuffer;
23 import java.awt.image.DataBufferByte;
24 import java.awt.image.PixelInterleavedSampleModel;
25 import java.awt.image.Raster;
26 import java.awt.image.WritableRaster;
29 * Useful image related functions.
40 * Convert a raw image into a buffered image
    [all...]
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/combo/
combo.edc 26 image: "widget/combo/combo_normal.png" COMP;
27 image: "widget/combo/combo_normal_button.png" COMP;
28 image: "widget/combo/combo_hover.png" COMP;
29 image: "widget/combo/combo_hover_button.png" COMP;
30 image: "widget/combo/combo_focus.png" COMP;
31 image: "widget/combo/combo_focus_button.png" COMP;
32 image: "widget/combo/combo_press.png" COMP;
33 image: "widget/combo/combo_press_button.png" COMP;
34 image: "widget/combo/icon.png" COMP;
100 type: IMAGE;
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_uninstall_dialog.cc 37 ExtensionResource image = local
40 // Load the image asynchronously. The response will be sent to OnImageLoaded.
41 tracker_.LoadImage(extension_, image,
46 void ExtensionUninstallDialog::SetIcon(SkBitmap* image) {
47 if (image)
48 icon_ = *image;
62 void ExtensionUninstallDialog::OnImageLoaded(SkBitmap* image,
65 SetIcon(image);
  /external/grub/util/
grub-image 2 # grub-image - Create a GRUB boot filesystem image and tarball
59 image=$bootdir.ext2fs
74 # Create a new filesystem image of the specified size.
75 if test ! -f $image; then
81 echo "# Creating $SIZE disk image \`$image'"
82 trap "rm -f $image" 0
83 dd if=/dev/zero of=$image bs=$SIZE count=1 >/dev/null
84 $mke2fs -F $image
    [all...]
grub-image.in 2 # grub-image - Create a GRUB boot filesystem image and tarball
59 image=$bootdir.ext2fs
74 # Create a new filesystem image of the specified size.
75 if test ! -f $image; then
81 echo "# Creating $SIZE disk image \`$image'"
82 trap "rm -f $image" 0
83 dd if=/dev/zero of=$image bs=$SIZE count=1 >/dev/null
84 $mke2fs -F $image
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebImageSkia.cpp 34 #include "Image.h"
91 void WebImage::assign(const WebImage& image)
93 m_bitmap = image.m_bitmap;
106 WebImage::WebImage(const PassRefPtr<Image>& image)
108 operator=(image);
111 WebImage& WebImage::operator=(const PassRefPtr<Image>& image)
114 if (image.get() && (p = image->nativeImageForCurrentFrame())
    [all...]
  /packages/apps/Gallery/tests/src/com/android/camera/gallery/
MockImageList.java 36 public int getImageIndex(IImage image) {
37 return mList.indexOf(image);
44 public boolean removeImage(IImage image) {
45 return mList.remove(image);
52 public void addImage(MockImage image) {
53 mList.add(image);
54 image.setContainer(this);
  /external/chromium/webkit/glue/
image_decoder.cc 32 const WebImage& image = WebImage::fromData( local
35 return image.getSkBitmap();
37 return gfx::CGImageToSkBitmap(image.getCGImageRef());
  /external/webkit/Source/WebCore/platform/graphics/qt/
ContextShadowQt.cpp 38 // ContextShadow needs a scratch image as the buffer for the blur filter.
54 QImage image; member in class:WebCore::ShadowBuffer
73 if (!image.isNull() && (image.width() > width) && (image.height() > height))
74 if (((2 * width) > image.width()) && ((2 * height) > image.height())) {
75 image.fill(0);
76 return &image;
84 image = QImage(width, height, QImage::Format_ARGB32_Premultiplied)
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLImageLoader.cpp 55 void WMLImageLoader::notifyFinished(CachedResource* image)
57 ImageLoader::notifyFinished(image);
59 if (!image->errorOccurred())
65 // Loading both 'localsrc' and 'src' failed. Ignore this image.
  /external/chromium/chrome/browser/ui/tests/
ui_gfx_image_unittest.cc 8 #include "ui/gfx/image.h"
25 gfx::Image image(gfx::test::CreatePlatformImage());
32 image_view->SetImage(image);
46 gfx::Image image(gfx::test::CreateBitmap());
47 GtkWidget* image_view = gtk_image_new_from_pixbuf(image);
  /external/chromium/chrome/browser/webdata/
web_apps_table_unittest.cc 72 // Add an image.
73 SkBitmap image; local
74 image.setConfig(SkBitmap::kARGB_8888_Config, 16, 16);
75 image.allocPixels();
76 image.eraseColor(SK_ColorBLACK);
77 ASSERT_TRUE(db.GetWebAppsTable()->SetWebAppImage(url, image));
79 // Make sure we get the image back.
85 // Add another 16x16 image and make sure it replaces the original.
86 image.setConfig(SkBitmap::kARGB_8888_Config, 16, 16);
87 image.allocPixels()
    [all...]
  /external/skia/src/animator/
SkDrawShader.h 33 SkBaseBitmap* image; member in class:SkDrawBitmapShader
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGImage.cpp 67 SVGImageElement* image = static_cast<SVGImageElement*>(node()); local
71 m_localTransform = image->animatedLocalTransform();
95 SVGImageElement* image = static_cast<SVGImageElement*>(node()); local
98 m_objectBoundingBox = FloatRect(image->x().value(image), image->y().value(image), image->width().value(image), image->height().value(image))
125 RefPtr<Image> image = m_imageResource->image(); local
    [all...]
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/button/
button.edc 26 image: "widget/button/img_button_normal.png" COMP;
27 image: "widget/button/img_button_press.png" COMP;
28 image: "widget/button/img_button_hover.png" COMP;
29 image: "widget/button/img_button_focus.png" COMP;
64 type: IMAGE;
68 image {
76 image {
89 image {
97 image {
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/file/
file.edc 26 image: "widget/file/file_normal.png" COMP;
27 image: "widget/file/file_hover.png" COMP;
28 image: "widget/file/file_focus.png" COMP;
29 image: "widget/file/file_press.png" COMP;
62 type: IMAGE;
65 image {
78 image {
86 image {
94 image {
  /external/webkit/Source/WebKit2/Shared/qt/
ShareableBitmapQt.cpp 44 QImage* image = new QImage(createQImage(data(), m_size.width(), m_size.height())); local
45 GraphicsContext* context = new GraphicsContext(new QPainter(image));
52 QImage image = createQImage(data(), m_size.width(), m_size.height()); local
55 painter->drawImage(dstPoint, image, QRect(srcRect));
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_inter_prediction.h 53 dpbStorage_t *dpb, u32 mbNum, image_t *image, u8 *data);
  /frameworks/base/opengl/libs/
egl_impl.h 32 EGLAPI EGLImageKHR egl_get_image_for_current_context(EGLImageKHR image);

Completed in 730 milliseconds

1 23 4 5 6 7 8 91011>>