Searched refs:image (Results 76 - 100 of 839) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DImportedModulesEnumerator.cpp33 // image format.
37 ImportedModulesEnumerator::ImportedModulesEnumerator(const PEImage& image) argument
38 : m_image(image)
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebCoreSupport/mac/
H A DWebDragClientMac.mm61 static PassRefPtr<ShareableBitmap> convertImageToBitmap(NSImage *image, const IntSize& size)
72 [image drawInRect:NSMakeRect(0, 0, bitmap->size().width(), bitmap->size().height()) fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1 respectFlipped:YES hints:nil];
79 void WebDragClient::startDrag(RetainPtr<NSImage> image, const IntPoint& point, const IntPoint&, Clipboard*, Frame* frame, bool linkDrag)
81 IntSize bitmapSize([image.get() size]);
83 RefPtr<ShareableBitmap> bitmap = convertImageToBitmap(image.get(), bitmapSize);
99 WebCore::CachedImage* image = toRenderImage(renderer)->cachedImage();
100 if (!image || image->errorOccurred())
102 return image;
112 WebCore::CachedImage* image
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/gtk/
H A DChunkedUpdateDrawingAreaGtk.cpp46 RefPtr<cairo_surface_t> image = updateChunk->createImage(); local
47 RefPtr<cairo_t> cr = adoptRef(cairo_create(image.get()));
/macosx-10.9.5/cups-372.4/cups/conf/
H A Dmime.convs.in49 application/vnd.cups-raster image/pwg-raster 100 rastertopwg
/macosx-10.9.5/dyld-239.4/src/
H A Ddyld.h75 extern void preflight(ImageLoader* image, const ImageLoader::RPathChain& loaderRPaths);
76 extern void link(ImageLoader* image, bool forceLazysBound, bool neverUnload, const ImageLoader::RPathChain& loaderRPaths);
77 extern void runInitializers(ImageLoader* image);
79 extern void runImageTerminators(ImageLoader* image);
89 extern bool flatFindExportedSymbol(const char* name, const ImageLoader::Symbol** sym, const ImageLoader** image);
90 extern bool flatFindExportedSymbolWithHint(const char* name, const char* librarySubstring, const ImageLoader::Symbol** sym, const ImageLoader** image);
93 extern void removeImage(ImageLoader* image);
94 extern ImageLoader* cloneImage(ImageLoader* image);
/macosx-10.9.5/libarchive-29/libarchive/libarchive/test/
H A Dtest_fuzz.c33 * This test simply reads each archive image into memory, pokes
85 char *rawimage, *image; local
124 image = malloc(size);
125 assert(image != NULL);
133 memcpy(image, rawimage, size);
136 image[rand() % size] = (char)rand();
138 /* Save the messed-up image to a file.
142 fwrite(image, 1, (size_t)size, f);
151 if (0 == archive_read_open_memory(a, image, size)) {
161 free(image);
[all...]
/macosx-10.9.5/CPANInternal-140/Template-Toolkit/lib/Template/Plugin/
H A DImage.pm6 # Plugin for encapsulating information about an image.
48 die(Template::Exception->new("image",
70 return $class->throw('no image file specified')
110 my $image = img_info($self->{ file });
111 return $self->throw($image->{ error }) if defined $image->{ error };
113 @$self{ keys %$image } = values %$image;
114 $self->{ size } = [ $image->{ width }, $image
[all...]
/macosx-10.9.5/CPANInternal-140/Template-Toolkit-2.24/lib/Template/Plugin/
H A DImage.pm6 # Plugin for encapsulating information about an image.
48 die(Template::Exception->new("image",
70 return $class->throw('no image file specified')
110 my $image = img_info($self->{ file });
111 return $self->throw($image->{ error }) if defined $image->{ error };
113 @$self{ keys %$image } = values %$image;
114 $self->{ size } = [ $image->{ width }, $image
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DContentData.h72 const StyleImage* image() const { return m_image.get(); } function in class:WebCore::ImageContentData
73 StyleImage* image() { return m_image.get(); } function in class:WebCore::ImageContentData
74 void setImage(PassRefPtr<StyleImage> image) { m_image = image; } argument
83 return *static_cast<const ImageContentData&>(data).image() == *image();
87 ImageContentData(PassRefPtr<StyleImage> image) argument
88 : m_image(image)
94 RefPtr<StyleImage> image = const_cast<StyleImage*>(this->image()); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DRenderSVGImage.cpp67 SVGImageElement* image = static_cast<SVGImageElement*>(node()); local
70 SVGLengthContext lengthContext(image);
71 m_objectBoundingBox = FloatRect(image->x().value(lengthContext), image->y().value(lengthContext), image->width().value(lengthContext), image->height().value(lengthContext));
150 RefPtr<Image> image = m_imageResource->image(); local
152 FloatRect srcRect(0, 0, image->width(), image
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/pixmap/
H A DpixmapUnix.c5 * image type.
43 PixmapMaster *masterPtr; /* Pointer to master for image. */
58 * Allocate a temporary space to draw the image.
71 XImage * image = NULL, * mask = NULL; local
86 * Create the XImage structures to store the temporary image
88 image = XCreateImage(display,
92 image->data =
93 (char *)ckalloc(image->bytes_per_line * masterPtr->size[1]);
103 *imagePtr = image;
108 TkimgXpmFreeTmpBuffer(masterPtr, instancePtr, image, mas
[all...]
/macosx-10.9.5/tcl-102/tk/tk/generic/
H A DtkCanvImg.c4 * This file implements image items for canvas widgets.
20 * The structure below defines the record for each image item.
26 Tk_Canvas canvas; /* Canvas containing the image. */
28 * image. */
29 Tk_Anchor anchor; /* Where to anchor image relative to (x,y). */
30 char *imageString; /* String describing -image option
31 * (malloc-ed). NULL means no image right
34 * NULL means no image right now. */
36 * NULL means no image right now. */
37 Tk_Image image; /* Imag member in struct:ImageItem
304 Tk_Image image; local
438 Tk_Image image; local
541 Tk_Image image; local
708 Tk_Image image; local
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/generic/
H A DtkCanvImg.c4 * This file implements image items for canvas widgets.
21 * The structure below defines the record for each image item.
27 Tk_Canvas canvas; /* Canvas containing the image. */
29 * image. */
30 Tk_Anchor anchor; /* Where to anchor image relative to
32 char *imageString; /* String describing -image option (malloc-ed).
33 * NULL means no image right now. */
35 * NULL means no image right now. */
37 * NULL means no image right now. */
38 Tk_Image image; /* Imag member in struct:ImageItem
313 Tk_Image image; local
451 Tk_Image image; local
555 Tk_Image image; local
727 Tk_Image image; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/loader/cache/
H A DCachedImage.cpp65 CachedImage::CachedImage(Image* image) argument
67 , m_image(image)
158 Image* CachedImage::image() function in class:WebCore::CachedImage
163 // Returning the 1x broken image is non-ideal, but we cannot reliably access the appropriate
165 // when they need the real, deviceScaleFactor-appropriate broken image icon.
180 // Returning the 1x broken image is non-ideal, but we cannot reliably access the appropriate
182 // when they need the real, deviceScaleFactor-appropriate broken image icon.
191 Image* image = m_svgImageCache->imageForRenderer(renderer); local
192 if (image != Image::nullImage())
193 return image;
460 decodedSizeChanged(const Image* image, int delta) argument
468 didDraw(const Image* image) argument
480 shouldPauseAnimation(const Image* image) argument
494 animationAdvanced(const Image* image) argument
501 changedInRect(const Image* image, const IntRect& rect) argument
519 Image* image = cachedImage->image(); local
531 Image* image = imageForRenderer(renderer); local
[all...]
/macosx-10.9.5/IOGraphics-471.92.1/IOGraphicsFamily/IOKit/graphics/
H A DIOFramebufferShared.h76 @discussion The maximum width of the cursor image in pixels. This is only defined if IOFB_ARBITRARY_SIZE_CURSOR is not defined.
81 @discussion The maximum height of the cursor image in pixels. This is only defined if IOFB_ARBITRARY_SIZE_CURSOR is not defined.
86 @abstract Cursor image for 1-bit cursor.
88 @field image This array contains the cursor images.
93 unsigned int image[4][16]; member in struct:bm12Cursor
99 @abstract Cursor image for 8-bit cursor.
101 @field image This array contains cursor color values, which are converted to displayed colors through the color table. The array is two dimensional and its first index is the cursor frame and the second index is the cursor pixel.
102 @field mask This array contains the cursor alpha mask. The array is two dimensional with the same indexing as the image. If an alpha mask pixel is 0 and the corresponding image pixel is set to white for the display, then this cursor pixel will invert pixels on the display.
106 unsigned char image[ member in struct:bm18Cursor
123 unsigned short image[4][256]; member in struct:bm34Cursor
134 unsigned int image[4][256]; member in struct:bm38Cursor
[all...]
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/Scripts/
H A Dpdf2tiff.rb28 image = NSImage.alloc.initWithData_ pdfdata
29 tiffdata = image.TIFFRepresentation
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSBorderImage.h30 PassRefPtr<CSSValueList> createBorderImageValue(PassRefPtr<CSSValue> image, PassRefPtr<CSSValue> imageSlice, PassRefPtr<CSSValue> borderSlice,
H A DCSSImageGeneratorValue.cpp73 return cachedGeneratedImage->image();
76 void CSSImageGeneratorValue::saveCachedImageForSize(IntSize size, PassRefPtr<GeneratorGeneratedImage> image) argument
79 m_images.add(size, adoptPtr(new CachedGeneratedImage(*this, size, image)));
88 CSSImageGeneratorValue::CachedGeneratedImage::CachedGeneratedImage(CSSImageGeneratorValue& owner, IntSize size, PassRefPtr<GeneratorGeneratedImage> image) argument
91 , m_image(image)
103 PassRefPtr<Image> CSSImageGeneratorValue::image(RenderObject* renderer, const IntSize& size) function in class:WebCore::CSSImageGeneratorValue
107 return static_cast<CSSCanvasValue*>(this)->image(renderer, size);
109 return static_cast<CSSCrossfadeValue*>(this)->image(renderer, size);
111 return static_cast<CSSLinearGradientValue*>(this)->image(renderer, size);
113 return static_cast<CSSRadialGradientValue*>(this)->image(rendere
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/canvas/
H A DCanvasRenderingContext.cpp59 bool CanvasRenderingContext::wouldTaintOrigin(const HTMLImageElement* image) argument
61 if (!image || !canvas()->originClean())
64 CachedImage* cachedImage = image->cachedImage();
65 if (!cachedImage->image()->hasSingleSecurityOrigin())
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/surfaces/qt/
H A DGraphicsSurfaceQt.cpp41 // The image and painter will be released when the returned GraphicsContext is released.
42 QImage* image = new QImage(reinterpret_cast<uchar*>(bits), size.width(), size.height(), stride, format, didReleaseImage, this); local
43 QPainter* painter = new QPainter(image);
55 QImage image(reinterpret_cast<uchar*>(data), rect.width(), rect.height(), stride, format, didReleaseImage, this);
56 return BitmapImage::create(new QPixmap(QPixmap::fromImage(image)));
/macosx-10.9.5/WebCore-7537.78.1/svg/graphics/
H A DSVGImageForContainer.h41 static PassRefPtr<SVGImageForContainer> create(SVGImage* image, const FloatSize& containerSize, float zoom) argument
43 return adoptRef(new SVGImageForContainer(image, containerSize, zoom));
68 SVGImageForContainer(SVGImage* image, const FloatSize& containerSize, float zoom) argument
69 : m_image(image)
/macosx-10.9.5/WebKit2-7537.78.2/Shared/API/c/cairo/
H A DWKImageCairo.h39 WK_EXPORT cairo_surface_t* WKImageCreateCairoSurface(WKImageRef image);
/macosx-10.9.5/WebKit2-7537.78.2/Shared/API/c/cg/
H A DWKImageCG.h37 WK_EXPORT CGImageRef WKImageCreateCGImage(WKImageRef image);
/macosx-10.9.5/keymgr-28/testcases/3074709/
H A Dmain.cc10 NSObjectFileImage image, image2; local
35 retCode = NSCreateObjectFileImageFromFile ("plugin", &image);
41 module = NSLinkModule(image, "plugin",
53 NSDestroyObjectFileImage (image);
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderSnapshottedPlugIn.cpp83 void RenderSnapshottedPlugIn::updateSnapshot(PassRefPtr<Image> image) argument
85 // Zero-size plugins will have no image.
86 if (!image)
89 m_snapshotResource->setCachedImage(new CachedImage(image.get()));
117 Image* image = m_snapshotResource->image().get(); local
118 if (!image || image->isNull())
141 bool useLowQualityScaling = shouldPaintAtLowQuality(context, image, image, alignedRec
[all...]

Completed in 155 milliseconds

1234567891011>>