Searched defs:image (Results 101 - 125 of 902) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/experimental/pixman/
H A Djunk.cpp48 void show_image (pixman_image_t *image) { argument
53 width = pixman_image_get_width (image);
54 height = pixman_image_get_height (image);
57 format = pixman_image_get_format (image);
61 * - image is a8r8g8b8_sRGB: we will display without modification
64 * - image is a8r8g8b8: we will display without modification
65 * under the assumption that whoever created the image
69 * whoever created the image probably did it wrong.
75 copy = pixman_image_ref (image);
82 image, NUL
[all...]
/external/chromium_org/third_party/skia/platform_tools/android/examples/hello_skia_app/src/com/example/
H A DHelloSkiaActivity.java73 private native void drawIntoBitmap(Bitmap image, long elapsedTime); argument
/external/chromium_org/third_party/skia/src/utils/
H A DSkPDFRasterizer.cpp23 #include <poppler-image.h>
42 poppler::image image = renderer.render_page(page.get()); local
44 if (!image.is_valid() || image.format() != poppler::image::format_argb32) {
48 int width = image.width(), height = image.height();
49 size_t rowSize = image.bytes_per_row();
50 char *imgData = image
[all...]
/external/chromium_org/third_party/skia/tools/skpdiff/
H A DSkPMetric.cpp21 T* image; member in struct:Image2D
28 image = SkNEW_ARRAY(T, w * h);
32 SkDELETE_ARRAY(image);
40 *pixel = image[y * width + x];
44 return &image[y * width];
52 image[y * width + x] = pixel;
64 Image2D<T>** image;
69 image = SkNEW_ARRAY(Image2D<T>*, s);
71 image[sliceIndex] = SkNEW_ARGS(Image2D<T>, (w, h));
77 SkDELETE(image[sliceInde
[all...]
/external/chromium_org/ui/base/cursor/
H A Dcursor_util.cc10 #include "ui/gfx/image/image_skia.h"
67 const gfx::ImageSkia* image = local
69 const gfx::ImageSkiaRep& image_rep = image->GetRepresentation(scale);
84 const gfx::ImageSkia* image = local
86 const gfx::ImageSkiaRep& image_rep = image->GetRepresentation(scale);
/external/chromium_org/ui/gfx/image/
H A Dimage_util.cc5 #include "ui/gfx/image/image_util.h"
10 #include "ui/gfx/image/image.h"
11 #include "ui/gfx/image/image_skia.h"
28 bool JPEG1xEncodedDataFromImage(const Image& image, int quality, argument
31 image.AsImageSkia().GetRepresentation(1.0f);
50 bool VisibleMargins(const ImageSkia& image, int* leading, int* trailing) { argument
52 *trailing = std::max(1, image.width()) - 1;
53 if (!image.HasRepresentation(1.0))
56 const ImageSkiaRep& rep = image
[all...]
/external/chromium_org/ui/message_center/views/
H A Dnotification_button.cc39 void NotificationButton::SetIcon(const gfx::ImageSkia& image) { argument
42 if (image.isNull()) {
48 icon_->SetImage(image);
105 // when we update the view to contain a new label or image.
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DFingerPrint.java52 * Create and save fingerprints as image and print their reference in the current stream.
147 // Save image file
152 // Print image file reference in stream
194 // Create and paint image
197 Image image = new Image(display, GRAPH_WIDTH, height);
198 GC gc = new GC(image);
202 saveImage(outputFile, image);
207 * @param image
209 private void saveImage(File outputFile, Image image) { argument
210 // Save image
[all...]
/external/opencv/cvaux/src/
H A Dextendededges.cpp46 //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 argument
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...]
/external/oprofile/daemon/liblegacy/
H A Dopd_sample_files.c43 verbprintf(vsfile, "image lru clear\n");
67 static char * opd_mangle_filename(struct opd_image const * image, int counter, argument
75 if (image->kernel)
80 values.tid = image->tid;
81 values.tgid = image->tgid;
93 values.image_name = image->name;
94 values.dep_name = separate_lib && image->app_name
95 ? image->app_name : image->name;
103 int opd_open_24_sample_file(struct opd_image * image, in argument
166 opd_close_image_samples_files(struct opd_image * image) argument
[all...]
/external/oprofile/libpp/
H A Dprofile_spec.h34 * @param extra extra image paths to search
39 * as image:value
77 * @param image an image or a libray name given on command line
80 * if this is an application or a dependent image.
82 void set_image_or_lib_name(std::string const & image);
126 std::vector<std::string> image; member in class:profile_spec
/external/skia/experimental/pixman/
H A Djunk.cpp48 void show_image (pixman_image_t *image) { argument
53 width = pixman_image_get_width (image);
54 height = pixman_image_get_height (image);
57 format = pixman_image_get_format (image);
61 * - image is a8r8g8b8_sRGB: we will display without modification
64 * - image is a8r8g8b8: we will display without modification
65 * under the assumption that whoever created the image
69 * whoever created the image probably did it wrong.
75 copy = pixman_image_ref (image);
82 image, NUL
[all...]
/external/skia/platform_tools/android/examples/hello_skia_app/src/com/example/
H A DHelloSkiaActivity.java73 private native void drawIntoBitmap(Bitmap image, long elapsedTime); argument
/external/skia/src/utils/
H A DSkPDFRasterizer.cpp23 #include <poppler-image.h>
42 poppler::image image = renderer.render_page(page.get()); local
44 if (!image.is_valid() || image.format() != poppler::image::format_argb32) {
48 int width = image.width(), height = image.height();
49 size_t rowSize = image.bytes_per_row();
50 char *imgData = image
[all...]
/external/skia/tools/skpdiff/
H A DSkPMetric.cpp21 T* image; member in struct:Image2D
28 image = SkNEW_ARRAY(T, w * h);
32 SkDELETE_ARRAY(image);
40 *pixel = image[y * width + x];
44 return &image[y * width];
52 image[y * width + x] = pixel;
64 Image2D<T>** image;
69 image = SkNEW_ARRAY(Image2D<T>*, s);
71 image[sliceIndex] = SkNEW_ARGS(Image2D<T>, (w, h));
77 SkDELETE(image[sliceInde
[all...]
/external/chromium_org/ash/shelf/
H A Doverflow_button.cc18 #include "ui/gfx/image/image_skia_operations.h"
124 const gfx::ImageSkia* image = NULL; local
132 image = &left_image_;
139 image = &right_image_;
142 image = bottom_image_;
146 canvas->DrawImageInt(*image,
147 bounds.x() + ((bounds.width() - image->width()) / 2),
148 bounds.y() + ((bounds.height() - image->height()) / 2));
H A Dshelf_item_types.h12 #include "ui/gfx/image/image_skia.h"
64 gfx::ImageSkia image; member in struct:ash::ShelfItem
84 // Resource id of the image to display on the shelf.
/external/chromium_org/ash/system/chromeos/virtual_keyboard/
H A Dvirtual_keyboard_tray.cc19 #include "ui/gfx/image/image_skia.h"
57 const gfx::ImageSkia image = button_->GetImage( local
59 int top_padding = (kTrayBarButtonWidth - image.height()) / 2;
60 int left_padding = (kTrayBarButtonWidth - image.width()) / 2;
61 int bottom_padding = kTrayBarButtonWidth - image.height() - top_padding;
62 int right_padding = kTrayBarButtonWidth - image.width() - left_padding;
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DLogoBridge.java22 * The logo image. Non-null.
24 public final Bitmap image; field in class:LogoBridge.Logo
36 public Logo(Bitmap image, String onClickUrl, String altText) { argument
37 this.image = image;
97 private static Logo createLogo(Bitmap image, String onClickUrl, String altText) { argument
98 return new Logo(image, onClickUrl, altText);
/external/chromium_org/chrome/browser/bitmap_fetcher/
H A Dbitmap_fetcher_browsertest.cc96 SkBitmap image; local
98 // Put a real bitmap into "image". 2x2 bitmap of green 32 bit pixels.
99 image.allocN32Pixels(2, 2);
100 image.eraseColor(SK_ColorGREEN);
104 ASSERT_TRUE(gfx::PNGCodec::EncodeBGRASkBitmap(image, true, &compressed));
117 // We expect that the image decoder will get called and return
118 // an image in a callback to OnImageDecoded().
132 EXPECT_TRUE(gfx::BitmapsAreEqual(image, found_image));
137 SkBitmap image; local
139 // Put a real bitmap into "image"
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_icon_manager.cc22 #include "ui/gfx/image/image.h"
64 // synchronously if the image is already cached.
96 const gfx::Image& image) {
97 if (image.IsEmpty())
106 icons_[extension_id] = ApplyTransforms(*image.ToSkBitmap());
95 OnImageLoaded(const std::string& extension_id, const gfx::Image& image) argument
H A Dextension_uninstall_dialog.cc22 #include "ui/gfx/image/image.h"
23 #include "ui/gfx/image/image_skia.h"
32 const gfx::ImageSkia& image = local
34 return image.GetRepresentation(
67 ExtensionResource image = IconsInfo::GetIconResource( local
70 // Load the image asynchronously. The response will be sent to OnImageLoaded.
76 image,
87 void ExtensionUninstallDialog::SetIcon(const gfx::Image& image) { argument
88 if (image
101 OnImageLoaded(const std::string& extension_id, const gfx::Image& image) argument
[all...]
/external/chromium_org/chrome/browser/
H A Dicon_manager.cc19 gfx::Image* image) {
22 callback.Run(image);
16 RunCallbackIfNotCanceled( const base::CancelableTaskTracker::IsCanceledCallback& is_canceled, const IconManager::IconRequestCallback& callback, gfx::Image* image) argument
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dautofill_popup_view_views.cc12 #include "ui/gfx/image/image.h"
98 const gfx::ImageSkia* image = rb.GetImageSkiaNamed(icon); local
99 int icon_y = entry_rect.y() + (row_height - image->height()) / 2;
101 x_align_left += is_rtl ? 0 : -image->width();
103 canvas->DrawImageInt(*image, x_align_left, icon_y);
105 x_align_left += is_rtl ? image->width() + kIconPadding : -kIconPadding;
/external/chromium_org/chrome/browser/ui/views/status_icons/
H A Dstatus_icon_win.cc85 // If we have an image, then set the NIF_ICON flag, which tells
86 // Shell_NotifyIcon() to set the image for the status icon it creates.
95 void StatusIconWin::SetImage(const gfx::ImageSkia& image) { argument
100 icon_.Set(IconUtil::CreateHICONFromSkBitmap(*image.bitmap()));
104 LOG(WARNING) << "Error setting status tray icon image";

Completed in 4094 milliseconds

1234567891011>>