OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nsimage
(Results
1 - 25
of
62
) sorted by null
1
2
3
/external/webkit/WebCore/platform/mac/
DragImageMac.mm
37
IntSize dragImageSize(RetainPtr<
NSImage
> image)
42
void deleteDragImage(RetainPtr<
NSImage
>)
48
RetainPtr<
NSImage
> scaleDragImage(RetainPtr<
NSImage
> image, FloatSize scale)
59
RetainPtr<
NSImage
> dissolveDragImageToFraction(RetainPtr<
NSImage
> image, float delta)
61
RetainPtr<
NSImage
> dissolvedImage(AdoptNS, [[
NSImage
alloc] initWithSize:[image.get() size]]);
79
RetainPtr<
NSImage
> createDragImageFromImage(Image* image)
81
RetainPtr<
NSImage
> dragImage(AdoptNS, [image->getNSImage() copy])
[
all
...]
ClipboardMac.h
34
@class
NSImage
;
37
class
NSImage
;
78
NSImage
*dragNSImage(NSPoint&) const; // loc converted from dragLoc, based on whole image size
WebCoreSystemInterface.h
49
@class
NSImage
;
68
typedef struct
NSImage
NSImage
;
134
extern void (*wkSetDragImage)(
NSImage
*, NSPoint offset);
CursorMac.mm
49
NSImage
* img = image->getNSImage();
64
NSImage
* cursorImage = [[
NSImage
alloc] initWithContentsOfFile:
/external/webkit/WebCore/platform/graphics/
Icon.h
32
@class
NSImage
;
34
class
NSImage
;
66
Icon(
NSImage
*);
67
RetainPtr<
NSImage
> m_nsImage;
Image.h
41
@class
NSImage
;
43
class
NSImage
;
138
virtual
NSImage
* getNSImage() { return 0; }
/external/webkit/WebKitTools/DumpRenderTree/mac/
DumpRenderTreeDraggingInfo.h
34
NSImage
*draggedImage;
39
- (id)initWithImage:(
NSImage
*)image offset:(NSSize)offset pasteboard:(NSPasteboard *)pasteboard source:(id)source;
45
- (
NSImage
*)draggedImage;
DumpRenderTreeDraggingInfo.mm
38
- (id)initWithImage:(
NSImage
*)anImage offset:(NSSize)o pasteboard:(NSPasteboard *)pboard source:(id)source
76
- (
NSImage
*)draggedImage
/external/webkit/WebCore/platform/graphics/mac/
IconMac.mm
31
Icon::Icon(
NSImage
*image)
60
NSImage
* image = [[NSWorkspace sharedWorkspace] iconForFile:filenames[0]];
69
NSImage
* image = [
NSImage
imageNamed:NSImageNameMultipleDocuments];
ImageMac.mm
111
NSImage
* BitmapImage::getNSImage()
120
m_nsImage.adoptNS([[
NSImage
alloc] initWithData:(NSData*)data]);
/external/webkit/WebCore/platform/
DragImage.h
35
@class
NSImage
;
37
class
NSImage
;
70
typedef RetainPtr<
NSImage
> DragImageRef;
/external/webkit/WebKit/mac/Misc/
WebIconDatabase.mm
79
- (
NSImage
*)_iconForFileURL:(NSString *)fileURL withSize:(NSSize)size;
81
- (
NSImage
*)_largestIconFromDictionary:(NSMutableDictionary *)icons;
82
- (NSMutableDictionary *)_iconsBySplittingRepresentationsOfIcon:(
NSImage
*)icon;
83
- (
NSImage
*)_iconFromDictionary:(NSMutableDictionary *)icons forSize:(NSSize)size cache:(BOOL)cache;
84
- (void)_scaleIcon:(
NSImage
*)icon toSize:(NSSize)size;
119
- (
NSImage
*)iconForURL:(NSString *)URL withSize:(NSSize)size cache:(BOOL)cache
133
if (
NSImage
*icon = webGetNSImage(image, size))
138
- (
NSImage
*)iconForURL:(NSString *)URL withSize:(NSSize)size
152
- (
NSImage
*)defaultIconWithSize:(NSSize)size
162
- (
NSImage
*)defaultIconForURL:(NSString *)URL withSize:(NSSize)siz
[
all
...]
WebNSImageExtras.m
33
@implementation
NSImage
(WebExtras)
61
NSImage
*dissolvedImage = [[
NSImage
alloc] initWithSize:[self size]];
WebIconDatabase.h
84
- (
NSImage
*)iconForURL:(NSString *)URL withSize:(NSSize)size;
95
- (
NSImage
*)iconForURL:(NSString *)URL withSize:(NSSize)size cache:(BOOL)cache;
108
- (
NSImage
*)defaultIconWithSize:(NSSize)size;
109
- (
NSImage
*)defaultIconForURL:(NSString *)URL withSize:(NSSize)size;
WebIconDatabaseDelegate.h
31
- (
NSImage
*)webIconDatabase:(WebIconDatabase *)webIconDatabase defaultIconForURL:(NSString *)URL withSize:(NSSize)size;
WebIconDatabaseInternal.h
51
NSImage
*webGetNSImage(WebCore::Image*, NSSize);
WebNSImageExtras.h
31
@interface
NSImage
(WebExtras)
/external/webkit/WebKit/mac/Carbon/
CarbonUtils.h
40
@class
NSImage
;
53
WebConvertNSImageToCGImageRef(
NSImage
* inImage) AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_4_0;
/external/webkit/WebKit/mac/WebView/
WebDocumentPrivate.h
35
- (
NSImage
*)image;
54
//
NSImage
of the portion of the selection that's in view. This does not draw backgrounds.
56
- (
NSImage
*)selectionImageForcingBlackText:(BOOL)forceBlackText;
WebHTMLViewPrivate.h
75
- (
NSImage
*)_dragImageForLinkElement:(NSDictionary *)element;
76
- (
NSImage
*)_dragImageForURL:(NSString*)linkURL withLabel:(NSString*)label;
101
- (
NSImage
*)_selectionDraggingImage;
/external/webkit/WebCore/bindings/objc/
DOMExtensions.h
47
@class
NSImage
;
56
- (
NSImage
*)image WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER);
/external/webkit/WebKit/mac/Plugins/
WebNullPluginView.mm
42
static
NSImage
*nullPlugInImage;
46
nullPlugInImage = [[
NSImage
alloc] initWithContentsOfFile:imagePath];
/external/webkit/WebCore/page/mac/
FrameMac.mm
300
NSImage
* Frame::imageFromRect(NSRect rect) const
321
NSImage
* resultImage = [[[
NSImage
alloc] initWithSize:rect.size] autorelease];
349
NSImage
* Frame::selectionImage(bool forceBlackText) const
353
NSImage
* result = imageFromRect(selectionBounds());
358
NSImage
* Frame::snapshotDragImage(Node* node, NSRect* imageRect, NSRect* elementRect) const
371
NSImage
* result = imageFromRect(paintingRect);
383
NSImage
* Frame::nodeImage(Node* node) const
395
NSImage
* result = imageFromRect(paintingRect);
/external/webkit/WebCore/page/
Frame.h
283
NSImage
* selectionImage(bool forceBlackText = false) const;
284
NSImage
* snapshotDragImage(Node*, NSRect* imageRect, NSRect* elementRect) const;
285
NSImage
* nodeImage(Node*) const;
288
NSImage
* imageFromRect(NSRect) const;
/external/webkit/WebKit/win/Interfaces/
IWebIconDatabase.idl
76
- (
NSImage
*)iconForURL:(NSString *)URL withSize:(NSSize)size;
86
- (
NSImage
*)iconForURL:(NSString *)URL withSize:(NSSize)size cache:(BOOL)cache;
99
- (
NSImage
*)defaultIconWithSize:(NSSize)size;
Completed in 186 milliseconds
1
2
3