Searched defs:image (Results 51 - 75 of 970) sorted by relevance

1234567891011>>

/external/skqp/experimental/sksg/
H A DSkSGImage.h25 static sk_sp<Image> Make(sk_sp<SkImage> image) { argument
26 return image ? sk_sp<Image>(new Image(std::move(image))) : nullptr;
/external/skqp/gm/
H A Dalpha_image.cpp38 auto image = SkImage::MakeFromBitmap(make_alpha_image(96, 96)); local
43 canvas->drawImage(image.get(), 16, 16, &paint);
47 canvas->drawImage(image.get(), 144, 16, &paint);
50 canvas->drawImage(image.get(), 16, 144, &paint);
53 canvas->drawImage(image.get(), 144, 144, &paint);
H A Dblurimagevmask.cpp27 canvas->drawString("image blur", 285 + 250, 50, textPaint);
61 auto image = GetResourceAsImage("images/mandrill_128.png"); local
69 canvas->drawImage(image, 10, 10, &paint);
71 canvas->drawImage(image, 10 + image->width() + 10.f, 10, &paint);
H A Drepeated_bitmap.cpp13 static void draw_rotated_image(SkCanvas* canvas, const SkImage* image) { argument
16 if (!image) {
22 SkScalar scale = SkTMin(128.0f / image->width(),
23 128.0f / image->height());
24 SkScalar point[2] = {-0.5f * image->width(), -0.5f * image->height()};
32 canvas->drawImage(image, point[0], point[1]);
/external/skqp/src/pdf/
H A DSkKeyedImage.cpp12 SkBitmapKey SkBitmapKeyFromImage(const SkImage* image) { argument
13 if (!image) {
16 if (const SkBitmap* bm = as_IB(image)->onPeekBitmap()) {
18 return {image->bounds().makeOffset(o.x(), o.y()), bm->getGenerationID()};
20 return {image->bounds(), image->uniqueID()};
45 sk_sp<SkImage> image = std::move(fImage); local
48 return image;
H A DSkKeyedImage.h32 const sk_sp<SkImage>& image() const { return fImage; } function in class:SkKeyedImage
/external/syslinux/com32/gplinclude/disk/
H A Dswsusp.h12 unsigned long image; member in struct:swsusp_header
/external/syslinux/gnu-efi/gnu-efi-3.0/apps/
H A Dprintenv.c5 efi_main (EFI_HANDLE image, EFI_SYSTEM_TABLE *systab) argument
12 InitializeLib(image, systab);
H A Dt6.c13 efi_main (EFI_HANDLE image, EFI_SYSTEM_TABLE *systab) argument
21 InitializeLib(image, systab);
24 image,
/external/syslinux/gnu-efi/gnu-efi-3.0/gnuefi/
H A Dreloc_ia32.c41 EFI_STATUS _relocate (long ldbase, Elf32_Dyn *dyn, EFI_HANDLE image, EFI_SYSTEM_TABLE *systab) argument
H A Dreloc_x86_64.c43 EFI_STATUS _relocate (long ldbase, Elf64_Dyn *dyn, EFI_HANDLE image, EFI_SYSTEM_TABLE *systab) argument
/external/syslinux/gpxe/src/core/
H A Dmain.c22 #include <gpxe/image.h>
37 struct image *image; local
71 * image, or autoboot() if we have no images. If
76 for_each_image ( image ) {
77 image_exec ( image );
/external/syslinux/gpxe/src/image/
H A Dembedded.c3 * Embedded image support
12 #include <gpxe/image.h>
17 * Free embedded image
26 /* Raw image data for all embedded images */
49 static struct image embedded_images[] = {
58 struct image *image; local
69 image = &embedded_images[i];
76 data = ( ( void * ) image->data );
77 image
[all...]
/external/webrtc/webrtc/modules/desktop_capture/
H A Dmouse_cursor.cc21 MouseCursor::MouseCursor(DesktopFrame* image, const DesktopVector& hotspot) argument
22 : image_(image),
32 return cursor.image()
33 ? new MouseCursor(BasicDesktopFrame::CopyOf(*cursor.image()),
H A Dmouse_cursor.h26 // Takes ownership of |image|. |hotspot| must be within |image| boundaries.
27 MouseCursor(DesktopFrame* image, const DesktopVector& hotspot);
33 void set_image(DesktopFrame* image) { image_.reset(image); } argument
34 const DesktopFrame* image() const { return image_.get(); } function in class:webrtc::MouseCursor
/external/ImageMagick/Magick++/tests/
H A DreadWriteBlob.cpp74 Image image(srcdir + "test_image.miff");
75 signature = image.signature();
105 // If construction of image fails, an exception should be thrown
108 Image image( blob );
109 if ( image.signature() != signature )
114 << image.signature()
121 // Construct with image geometry and blob data
122 Image image( blob, Geometry(148,99));
123 if ( image.signature() != signature )
128 << image
136 Image image; local
152 Image image; local
[all...]
/external/ImageMagick/MagickCore/
H A Dartifact.c58 #include "MagickCore/image.h"
88 % CloneImageArtifacts() clones all image artifacts to another image.
94 % MagickBooleanType CloneImageArtifacts(Image *image,
99 % o image: the image, to recieve the cloned artifacts.
101 % o clone_image: the source image for artifacts to clone.
104 MagickExport MagickBooleanType CloneImageArtifacts(Image *image,
107 assert(image != (Image *) NULL);
108 assert(image
102 CloneImageArtifacts(Image *image, const Image *clone_image) argument
151 DefineImageArtifact(Image *image, const char *artifact) argument
198 DeleteImageArtifact(Image *image, const char *artifact) argument
233 DestroyImageArtifacts(Image *image) argument
273 GetImageArtifact(const Image *image, const char *artifact) argument
327 GetNextImageArtifact(const Image *image) argument
367 RemoveImageArtifact(Image *image,const char *artifact) argument
410 ResetImageArtifactIterator(const Image *image) argument
449 SetImageArtifact(Image *image, const char *artifact,const char *value) argument
[all...]
H A Dstatic.c46 #include "MagickCore/image.h"
64 % InvokeStaticImageFilter() invokes a static image filter.
68 % MagickBooleanType InvokeStaticImageFilter(const char *tag,Image **image,
75 % o image: the image.
88 Image **image,const int argc,const char **argv,ExceptionInfo *exception)
93 assert(image != (Image **) NULL);
94 assert((*image)->signature == MagickCoreSignature);
95 if ((*image)->debug != MagickFalse)
96 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",(*image)
85 InvokeStaticImageFilter(const char *tag, Image **image,const int argc,const char **argv,ExceptionInfo *exception) argument
[all...]
/external/ImageMagick/coders/
H A Dart.c54 #include "MagickCore/image.h"
55 #include "MagickCore/image-private.h"
85 % ReadARTImage() reads an image of raw bits in LSB order and returns it.
87 % a pointer to the new image.
96 % o image_info: the image info.
107 *image;
123 Open image file.
132 image=AcquireImage(image_info,exception);
133 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
136 image
104 *image; local
278 WriteARTImage(const ImageInfo *image_info,Image *image, ExceptionInfo *exception) argument
[all...]
H A Dcip.c52 #include "MagickCore/image.h"
53 #include "MagickCore/image-private.h"
87 % RegisterCIPImage() adds properties for the CIP IP phone image format to
88 % the list of supported formats. The properties include the image format
104 entry=AcquireMagickInfo("CIP","CIP","Cisco IP phone image format");
148 % Procedure WriteCIPImage() writes an image to a file in the Cisco IP phone
149 % image format.
154 % Image *image,ExceptionInfo *exception)
158 % o image_info: the image info.
160 % o image argument
[all...]
H A Dclip.c79 % ReadCLIPImage returns the rendered clip path associated with the image.
88 % o image_info: the image info.
97 *image;
115 image=ReadImage(read_info,exception);
117 if (image != (Image *) NULL)
122 (void) ClipImage(image,exception);
123 clip_image=GetImageMask(image,ReadPixelMask,exception);
126 image=DestroyImage(image);
127 image
94 *image; local
216 WriteCLIPImage(const ImageInfo *image_info, Image *image,ExceptionInfo *exception) argument
[all...]
H A Ddot.c50 #include "MagickCore/image.h"
51 #include "MagickCore/image-private.h"
85 % ReadDOTImage() reads a Graphviz image file and returns it. It allocates
87 % the new image.
95 % o image_info: the image info.
112 *image;
121 Open image file.
131 image=AcquireImage(image_info,exception);
132 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
142 graph=agread(GetBlobFileHandle(image));
110 *image; local
[all...]
H A Dgradient.c55 #include "MagickCore/image.h"
56 #include "MagickCore/image-private.h"
80 % ReadGRADIENTImage creates a gradient image and initializes it to
83 % image.
92 % o image_info: the image info.
104 *image;
132 image=ReadImage(read_info,exception);
134 if (image == (Image *) NULL)
136 (void) SetImageAlpha(image,(Quantum) TransparentAlpha,exception);
137 (void) CopyMagickString(image
102 *image; local
[all...]
H A Dhald.c50 #include "MagickCore/image.h"
51 #include "MagickCore/image-private.h"
78 % ReadHALDImage() creates a Hald color lookup table image and returns it. It
80 % pointer to the new image.
89 % o image_info: the image info.
98 *image;
111 Create HALD color lookup table image.
120 image=AcquireImage(image_info,exception);
128 image->columns=(size_t) (level*cube_size);
129 image
96 *image; local
[all...]
H A Dinfo.c51 #include "MagickCore/image.h"
52 #include "MagickCore/image-private.h"
85 % RegisterINFOImage() adds attributes for the INFO image format to
86 % the list of supported formats. The attributes include the image format
103 "The image format and characteristics");
152 % Image *image,ExceptionInfo *exception)
156 % o image_info: the image info.
158 % o image: The image. argument
164 Image *image,ExceptionInf
[all...]

Completed in 360 milliseconds

1234567891011>>