Searched refs:image (Results 126 - 150 of 839) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DClipboardQt.cpp48 return createDragImageFromImage(m_dragImage->image());
56 return 0; // We do not have enough information to create a drag image, use the default icon.
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderInputSpeech.cpp91 Image* image = imageStateNormal.get(); local
93 image = imageStateRecording.get();
95 image = imageStateWaiting.get();
96 paintInfo.context->drawImage(image, object->style()->colorSpace(), pixelSnappedIntRect(buttonRect));
/macosx-10.9.5/WebKit2-7537.78.2/Shared/API/c/
H A DWKImage.h53 WK_EXPORT WKSize WKImageGetSize(WKImageRef image);
/macosx-10.9.5/ruby-104/ruby/lib/
H A Dcomplex.rb20 alias image imag
/macosx-10.9.5/ruby-104/ruby/test/rss/
H A Dtest_setup_maker_0.9.rb56 assert_not_set_error("maker.image", %w(title url)) do
97 description = "an image"
103 maker.image.title = title
104 maker.image.url = url
105 maker.image.width = width
106 maker.image.height = height
107 maker.image.description = description
112 rss.image.setup_maker(maker)
115 image = new_rss.image
[all...]
/macosx-10.9.5/tcl-102/tk/tk/macosx/
H A DtkMacOSXBitmap.c239 * - NSImage named image name
262 NSImage *image = nil;
275 image = [[NSWorkspace sharedWorkspace] iconForFile:string];
279 image = [[NSWorkspace sharedWorkspace] iconForFileType:string];
284 image = [[NSWorkspace sharedWorkspace] iconForFileType:string];
292 image = [NSImage imageNamed:string];
297 image = [[[NSImage alloc] initWithContentsOfFile:string]
301 if (image) {
302 [image setSize:size];
306 image
257 NSImage *image = nil; local
[all...]
/macosx-10.9.5/tcl-102/tk/tk/tests/ttk/
H A Dlayout.test12 set block [image create photo -width 10 -height 10]
13 ttk::style element create block image $block
/macosx-10.9.5/IOSCSIParallelFamily-300.0.2/TestTools/SCSITargetProber/Cocoa/
H A DSCSIDevice.h59 NSImage * image; variable
77 - ( void ) setImage: ( NSImage * ) image;
88 - ( NSImage * ) image;
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLImageLoader.cpp51 // HTMLVideoElement uses this class to load the poster image, but it should not fire events for loading or failure.
55 bool errorOccurred = image()->errorOccurred();
56 if (!errorOccurred && image()->response().httpStatusCode() >= 400)
74 CachedImage* cachedImage = image();
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/texmap/
H A DTextureMapperTile.cpp32 void TextureMapperTile::updateContents(TextureMapper* textureMapper, Image* image, const IntRect& dirtyRect, BitmapTexture::UpdateContentsFlag updateContentsFlag) argument
47 m_texture->reset(targetRect.size(), image->currentFrameKnownToBeOpaque() ? 0 : BitmapTexture::SupportsAlpha);
50 m_texture->updateContents(image, targetRect, sourceOffset, updateContentsFlag);
/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DStyleCachedImage.cpp32 StyleCachedImage::StyleCachedImage(CachedImage* image) argument
33 : m_image(image)
104 PassRefPtr<Image> StyleCachedImage::image(RenderObject* renderer, const IntSize&) const function in class:WebCore::StyleCachedImage
H A DStyleCachedImage.h38 static PassRefPtr<StyleCachedImage> create(CachedImage* image) { return adoptRef(new StyleCachedImage(image)); } argument
56 virtual PassRefPtr<Image> image(RenderObject*, const IntSize&) const;
H A DStyleCachedImageSet.h41 // This class keeps one cached image and has access to a set of alternatives.
46 static PassRefPtr<StyleCachedImageSet> create(CachedImage* image, float imageScaleFactor, CSSImageSetValue* value) argument
48 return adoptRef(new StyleCachedImageSet(image, imageScaleFactor, value));
55 // only looks at the image from the set that we have loaded. I'm not sure if that is
72 virtual PassRefPtr<Image> image(RenderObject*, const IntSize&) const;
/macosx-10.9.5/WebKit-7537.78.2/gtk/WebCoreSupport/
H A DDragClientGtk.cpp77 void DragClient::startDrag(DragImageRef image, const IntPoint& dragImageOrigin, const IntPoint& eventPos, Clipboard* clipboard, Frame* frame, bool linkDrag) argument
91 if (image) {
92 m_dragIcon.setImage(image);
/macosx-10.9.5/WebKit-7537.78.2/qt/tests/hybridPixmap/
H A Dwidget.h39 Q_PROPERTY(QImage image READ image WRITE setImage)
47 QImage image() const;
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dtool-bar.el96 ICON names the image, DEF is the key definition and KEY is a symbol
101 ICON is the base name of a file containing the image to use. The
104 ICON.xbm, using `find-image'.
113 ICON names the image, DEF is the key definition and KEY is a symbol
118 ICON is the base name of a file containing the image to use. The
121 ICON.xbm, using `find-image'."
135 (image (find-image
140 (when (and (display-images-p) image)
141 (unless (image
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/CGRotation/
H A DController.py21 # Ask CFBundle for the location of our demo image
68 # for this image type.
70 # Only get extensions for UTIs that are images (i.e. conforms to public.image aka kUTTypeImage)
122 image = IICreateImage(NSURL.fileURLWithPath_(panel.filenames()[0]))
125 self.imageView.setImage_(image)
136 None, "untitled image", self.imageView.window(), self,
143 IISaveImage(self.imageView.image(), panel.URL(),
152 self.imageView.image().fRotation = 360.0 - r # XXX
157 self.imageView.image().fScaleX = self._scaleX
159 self.imageView.image()
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/Quartz2DBasics/
H A DAppDrawing.py189 # Create a CGImage object from the first image in the file. Image
191 image = CGImageSourceCreateImageAtIndex(imageSource, 0, None)
194 # and height of the image itself.
195 imageRect = CGRectMake(100, 100, CGImageGetWidth(image), CGImageGetHeight(image))
197 # Draw the image into the rect.
198 CGContextDrawImage(context, imageRect, image)
204 # Create a CGImage object from the first image in the file. Image
206 image = CGImageSourceCreateImageAtIndex( imageSource, 0, None )
209 # and height of the image itsel
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/CGRotation/
H A DController.py21 # Ask CFBundle for the location of our demo image
68 # for this image type.
70 # Only get extensions for UTIs that are images (i.e. conforms to public.image aka kUTTypeImage)
122 image = IICreateImage(NSURL.fileURLWithPath_(panel.filenames()[0]))
125 self.imageView.setImage_(image)
136 None, "untitled image", self.imageView.window(), self,
143 IISaveImage(self.imageView.image(), panel.URL(),
152 self.imageView.image().fRotation = 360.0 - r # XXX
157 self.imageView.image().fScaleX = self._scaleX
159 self.imageView.image()
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/Quartz2DBasics/
H A DAppDrawing.py189 # Create a CGImage object from the first image in the file. Image
191 image = CGImageSourceCreateImageAtIndex(imageSource, 0, None)
194 # and height of the image itself.
195 imageRect = CGRectMake(100, 100, CGImageGetWidth(image), CGImageGetHeight(image))
197 # Draw the image into the rect.
198 CGContextDrawImage(context, imageRect, image)
204 # Create a CGImage object from the first image in the file. Image
206 image = CGImageSourceCreateImageAtIndex( imageSource, 0, None )
209 # and height of the image itsel
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/
H A Dbinstr_usage.rb7 This reads the image data from the file as the binary sequence.
16 A Tk::BinaryString instance is used to create the image for the center button.
40 TkButton.new(:parent=>f, :image=>ph1, :command=>proc{exit}).pack(:side=>:left)
41 TkButton.new(:parent=>f, :image=>ph2, :command=>proc{exit}).pack(:side=>:left)
42 TkButton.new(:parent=>f, :image=>ph3, :command=>proc{exit}).pack(:side=>:left)
43 TkButton.new(:parent=>f, :image=>ph4, :command=>proc{exit}).pack(:side=>:left)
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-en/
H A Dcheck2.rb41 :image=>$image['view'], :compound=>:left,
48 :image=>$image['view'], :compound=>:left,
51 :image=>$image['delete'], :compound=>:left,
H A Dradio3.rb44 :image=>$image['view'], :compound=>:left,
50 :image=>$image['view'], :compound=>:left,
53 :image=>$image['delete'], :compound=>:left,
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-jp/
H A Dcheck2.rb42 :image=>$image['view'], :compound=>:left,
49 :image=>$image['view'], :compound=>:left,
52 :image=>$image['delete'], :compound=>:left,
H A Dcombo.rb47 :image=>$image['view'], :compound=>:left,
55 :image=>$image['view'], :compound=>:left,
58 :image=>$image['delete'], :compound=>:left,

Completed in 236 milliseconds

1234567891011>>