NativeImageSkia    85 Source/core/clipboard/Pasteboard.cpp     RefPtr<NativeImageSkia> bitmap = image->nativeImageForCurrentFrame();
NativeImageSkia    37 Source/core/frame/ImageBitmap.cpp     return BitmapImage::create(NativeImageSkia::create(cropped));
NativeImageSkia    93 Source/core/frame/ImageBitmapTest.cpp     imageElement->setImageResource(new ImageResource(BitmapImage::create(NativeImageSkia::create(m_bitmap)).get()));
NativeImageSkia   113 Source/core/frame/ImageBitmapTest.cpp     ResourcePtr<ImageResource> cachedImageNoCrop = new ImageResource(ResourceRequest("http://foo.com/1"), BitmapImage::create(NativeImageSkia::create(m_bitmap)).get());
NativeImageSkia   117 Source/core/frame/ImageBitmapTest.cpp     ResourcePtr<ImageResource> cachedImageInteriorCrop = new ImageResource(ResourceRequest("http://foo.com/2"), BitmapImage::create(NativeImageSkia::create(m_bitmap)).get());
NativeImageSkia   121 Source/core/frame/ImageBitmapTest.cpp     ResourcePtr<ImageResource> cachedImageExteriorCrop = new ImageResource(ResourceRequest("http://foo.com/3"), BitmapImage::create(NativeImageSkia::create(m_bitmap)).get());
NativeImageSkia   125 Source/core/frame/ImageBitmapTest.cpp     ResourcePtr<ImageResource> cachedImageOutsideCrop = new ImageResource(ResourceRequest("http://foo.com/4"), BitmapImage::create(NativeImageSkia::create(m_bitmap)).get());
NativeImageSkia   188 Source/core/frame/ImageBitmapTest.cpp     ResourcePtr<ImageResource> originalImageResource = new ImageResource(BitmapImage::create(NativeImageSkia::create(m_bitmap)).get());
NativeImageSkia   194 Source/core/frame/ImageBitmapTest.cpp     ResourcePtr<ImageResource> newImageResource = new ImageResource(BitmapImage::create(NativeImageSkia::create(m_bitmap2)).get());
NativeImageSkia   199 Source/core/svg/graphics/SVGImage.cpp PassRefPtr<NativeImageSkia> SVGImage::nativeImageForCurrentFrame()
NativeImageSkia    65 Source/core/svg/graphics/SVGImage.h     virtual PassRefPtr<NativeImageSkia> nativeImageForCurrentFrame() OVERRIDE;
NativeImageSkia    49 Source/core/svg/graphics/SVGImageForContainer.cpp PassRefPtr<NativeImageSkia> SVGImageForContainer::nativeImageForCurrentFrame()
NativeImageSkia    62 Source/core/svg/graphics/SVGImageForContainer.h     virtual PassRefPtr<NativeImageSkia> nativeImageForCurrentFrame() OVERRIDE;
NativeImageSkia   334 Source/modules/imagebitmap/ImageBitmapFactories.cpp     RefPtr<NativeImageSkia> imageSkia = source->createFrameAtIndex(0);
NativeImageSkia    74 Source/platform/DragImage.cpp     RefPtr<NativeImageSkia> bitmap = image->nativeImageForCurrentFrame();
NativeImageSkia    67 Source/platform/DragImageTest.cpp         m_nativeImage = NativeImageSkia::create(bitmap);
NativeImageSkia    75 Source/platform/DragImageTest.cpp     virtual PassRefPtr<NativeImageSkia> nativeImageForCurrentFrame() OVERRIDE
NativeImageSkia   101 Source/platform/DragImageTest.cpp     RefPtr<NativeImageSkia> m_nativeImage;
NativeImageSkia    89 Source/platform/exported/WebImageSkia.cpp     RefPtr<NativeImageSkia> image = frame->asNewNativeImage();
NativeImageSkia   126 Source/platform/exported/WebImageSkia.cpp         RefPtr<NativeImageSkia> image = frame->asNewNativeImage();
NativeImageSkia   161 Source/platform/exported/WebImageSkia.cpp     RefPtr<NativeImageSkia> p;
NativeImageSkia    64 Source/platform/graphics/BitmapImage.cpp BitmapImage::BitmapImage(PassRefPtr<NativeImageSkia> nativeImage, ImageObserver* observer)
NativeImageSkia   262 Source/platform/graphics/BitmapImage.cpp     RefPtr<NativeImageSkia> bm = nativeImageForCurrentFrame();
NativeImageSkia   332 Source/platform/graphics/BitmapImage.cpp PassRefPtr<NativeImageSkia> BitmapImage::frameAtIndex(size_t index)
NativeImageSkia   353 Source/platform/graphics/BitmapImage.cpp PassRefPtr<NativeImageSkia> BitmapImage::nativeImageForCurrentFrame()
NativeImageSkia   595 Source/platform/graphics/BitmapImage.cpp     RefPtr<NativeImageSkia> frame = frameAtIndex(0);
NativeImageSkia    41 Source/platform/graphics/BitmapImage.h class NativeImageSkia;
NativeImageSkia    50 Source/platform/graphics/BitmapImage.h     static PassRefPtr<BitmapImage> create(PassRefPtr<NativeImageSkia> nativeImage, ImageObserver* observer = 0)
NativeImageSkia    79 Source/platform/graphics/BitmapImage.h     virtual PassRefPtr<NativeImageSkia> nativeImageForCurrentFrame() OVERRIDE;
NativeImageSkia   100 Source/platform/graphics/BitmapImage.h     BitmapImage(PassRefPtr<NativeImageSkia>, ImageObserver* = 0);
NativeImageSkia   108 Source/platform/graphics/BitmapImage.h     PassRefPtr<NativeImageSkia> frameAtIndex(size_t);
NativeImageSkia   153 Source/platform/graphics/DeferredImageDecoderTest.cpp     RefPtr<NativeImageSkia> image = m_lazyDecoder->frameBufferAtIndex(0)->asNewNativeImage();
NativeImageSkia   180 Source/platform/graphics/DeferredImageDecoderTest.cpp     RefPtr<NativeImageSkia> image = m_lazyDecoder->frameBufferAtIndex(0)->asNewNativeImage();
NativeImageSkia   209 Source/platform/graphics/DeferredImageDecoderTest.cpp     RefPtr<NativeImageSkia> image = m_lazyDecoder->frameBufferAtIndex(0)->asNewNativeImage();
NativeImageSkia   311 Source/platform/graphics/DeferredImageDecoderTest.cpp     RefPtr<NativeImageSkia> image = m_lazyDecoder->frameBufferAtIndex(0)->asNewNativeImage();
NativeImageSkia    38 Source/platform/graphics/FrameData.h class NativeImageSkia;
NativeImageSkia    50 Source/platform/graphics/FrameData.h     RefPtr<NativeImageSkia> m_frame;
NativeImageSkia   524 Source/platform/graphics/GraphicsContextTest.cpp     RefPtr<BitmapImage> opaqueImage = BitmapImage::create(NativeImageSkia::create(opaqueBitmap));
NativeImageSkia   533 Source/platform/graphics/GraphicsContextTest.cpp     RefPtr<BitmapImage> alphaImage = BitmapImage::create(NativeImageSkia::create(alphaBitmap));
NativeImageSkia  1000 Source/platform/graphics/GraphicsLayer.cpp     RefPtr<NativeImageSkia> nativeImage = image ? image->nativeImageForCurrentFrame() : nullptr;
NativeImageSkia  1025 Source/platform/graphics/GraphicsLayer.cpp     RefPtr<NativeImageSkia> nativeImage = image ? image->nativeImageForCurrentFrame() : nullptr;
NativeImageSkia   229 Source/platform/graphics/Image.cpp     if (RefPtr<NativeImageSkia> bitmap = nativeImageForCurrentFrame())
NativeImageSkia   114 Source/platform/graphics/Image.h     virtual PassRefPtr<NativeImageSkia> nativeImageForCurrentFrame() { return nullptr; }
NativeImageSkia   137 Source/platform/graphics/ImageBuffer.cpp         return BitmapImage::create(NativeImageSkia::create());
NativeImageSkia   140 Source/platform/graphics/ImageBuffer.cpp     return BitmapImage::create(NativeImageSkia::create(copyBehavior == CopyBackingStore ? deepSkBitmapCopy(bitmap) : bitmap));
NativeImageSkia   247 Source/platform/graphics/ImageBuffer.cpp     RefPtr<Image> image = BitmapImage::create(NativeImageSkia::create(drawNeedsCopy(m_context.get(), context) ? deepSkBitmapCopy(bitmap) : bitmap));
NativeImageSkia   266 Source/platform/graphics/ImageBuffer.cpp     RefPtr<Image> image = BitmapImage::create(NativeImageSkia::create(drawNeedsCopy(m_context.get(), context) ? deepSkBitmapCopy(bitmap) : bitmap));
NativeImageSkia    60 Source/platform/graphics/ImageLayerChromiumTest.cpp         m_nativeImage = NativeImageSkia::create(bitmap);
NativeImageSkia    78 Source/platform/graphics/ImageLayerChromiumTest.cpp     virtual PassRefPtr<NativeImageSkia> nativeImageForCurrentFrame() OVERRIDE
NativeImageSkia    99 Source/platform/graphics/ImageLayerChromiumTest.cpp     RefPtr<NativeImageSkia> m_nativeImage;
NativeImageSkia   113 Source/platform/graphics/ImageSource.cpp PassRefPtr<NativeImageSkia> ImageSource::createFrameAtIndex(size_t index)
NativeImageSkia    42 Source/platform/graphics/ImageSource.h class NativeImageSkia;
NativeImageSkia   114 Source/platform/graphics/ImageSource.h     PassRefPtr<NativeImageSkia> createFrameAtIndex(size_t);
NativeImageSkia    64 Source/platform/graphics/Pattern.h     RefPtr<NativeImageSkia> m_tileImage;
NativeImageSkia   165 Source/platform/graphics/filters/FEColorMatrix.cpp     RefPtr<NativeImageSkia> nativeImage = image->nativeImageForCurrentFrame();
NativeImageSkia   161 Source/platform/graphics/filters/FEComponentTransfer.cpp     RefPtr<NativeImageSkia> nativeImage = image->nativeImageForCurrentFrame();
NativeImageSkia    98 Source/platform/graphics/filters/FEDropShadow.cpp     RefPtr<NativeImageSkia> nativeImage = image->nativeImageForCurrentFrame();
NativeImageSkia    98 Source/platform/graphics/gpu/WebGLImageConversion.h         RefPtr<NativeImageSkia> m_nativeImage;
NativeImageSkia    99 Source/platform/graphics/gpu/WebGLImageConversion.h         RefPtr<NativeImageSkia> m_skiaImage;
NativeImageSkia    59 Source/platform/graphics/skia/NativeImageSkia.cpp ResamplingMode NativeImageSkia::computeResamplingMode(const SkMatrix& matrix, float srcWidth, float srcHeight, float destWidth, float destHeight) const
NativeImageSkia   208 Source/platform/graphics/skia/NativeImageSkia.cpp SkBitmap NativeImageSkia::extractScaledImageFragment(const SkRect& srcRect, float scaleX, float scaleY, SkRect* scaledSrcRect) const
NativeImageSkia   242 Source/platform/graphics/skia/NativeImageSkia.cpp void NativeImageSkia::drawResampledBitmap(GraphicsContext* context, SkPaint& paint, const SkRect& srcRect, const SkRect& destRect) const
NativeImageSkia   275 Source/platform/graphics/skia/NativeImageSkia.cpp NativeImageSkia::NativeImageSkia()
NativeImageSkia   280 Source/platform/graphics/skia/NativeImageSkia.cpp NativeImageSkia::NativeImageSkia(const SkBitmap& other)
NativeImageSkia   286 Source/platform/graphics/skia/NativeImageSkia.cpp NativeImageSkia::NativeImageSkia(const SkBitmap& image, const SkBitmap& resizedImage, const ImageResourceInfo& cachedImageInfo, int resizeRequests)
NativeImageSkia   294 Source/platform/graphics/skia/NativeImageSkia.cpp NativeImageSkia::~NativeImageSkia()
NativeImageSkia   298 Source/platform/graphics/skia/NativeImageSkia.cpp int NativeImageSkia::decodedSize() const
NativeImageSkia   303 Source/platform/graphics/skia/NativeImageSkia.cpp bool NativeImageSkia::hasResizedBitmap(const SkISize& scaledImageSize, const SkIRect& scaledImageSubset) const
NativeImageSkia   310 Source/platform/graphics/skia/NativeImageSkia.cpp SkBitmap NativeImageSkia::resizedBitmap(const SkISize& scaledImageSize, const SkIRect& scaledImageSubset) const
NativeImageSkia   364 Source/platform/graphics/skia/NativeImageSkia.cpp void NativeImageSkia::draw(GraphicsContext* context, const SkRect& srcRect, const SkRect& destRect, PassRefPtr<SkXfermode> compOp) const
NativeImageSkia   438 Source/platform/graphics/skia/NativeImageSkia.cpp void NativeImageSkia::drawPattern(
NativeImageSkia   548 Source/platform/graphics/skia/NativeImageSkia.cpp bool NativeImageSkia::shouldCacheResampling(const SkISize& scaledImageSize, const SkIRect& scaledImageSubset) const
NativeImageSkia   594 Source/platform/graphics/skia/NativeImageSkia.cpp NativeImageSkia::ImageResourceInfo::ImageResourceInfo()
NativeImageSkia   600 Source/platform/graphics/skia/NativeImageSkia.cpp bool NativeImageSkia::ImageResourceInfo::isEqual(const SkISize& otherScaledImageSize, const SkIRect& otherScaledImageSubset) const
NativeImageSkia   605 Source/platform/graphics/skia/NativeImageSkia.cpp void NativeImageSkia::ImageResourceInfo::set(const SkISize& otherScaledImageSize, const SkIRect& otherScaledImageSubset)
NativeImageSkia   611 Source/platform/graphics/skia/NativeImageSkia.cpp SkIRect NativeImageSkia::ImageResourceInfo::rectInSubset(const SkIRect& otherScaledImageSubset)
NativeImageSkia    75 Source/platform/graphics/skia/NativeImageSkia.h class PLATFORM_EXPORT NativeImageSkia : public RefCounted<NativeImageSkia> {
NativeImageSkia    77 Source/platform/graphics/skia/NativeImageSkia.h     static PassRefPtr<NativeImageSkia> create()
NativeImageSkia    79 Source/platform/graphics/skia/NativeImageSkia.h         return adoptRef(new NativeImageSkia());
NativeImageSkia    85 Source/platform/graphics/skia/NativeImageSkia.h     static PassRefPtr<NativeImageSkia> create(const SkBitmap& bitmap)
NativeImageSkia    87 Source/platform/graphics/skia/NativeImageSkia.h         return adoptRef(new NativeImageSkia(bitmap));
NativeImageSkia    93 Source/platform/graphics/skia/NativeImageSkia.h     PassRefPtr<NativeImageSkia> clone() const
NativeImageSkia    95 Source/platform/graphics/skia/NativeImageSkia.h         return adoptRef(new NativeImageSkia(m_image, m_resizedImage, m_cachedImageInfo, m_resizeRequests));
NativeImageSkia    98 Source/platform/graphics/skia/NativeImageSkia.h     ~NativeImageSkia();
NativeImageSkia   137 Source/platform/graphics/skia/NativeImageSkia.h     NativeImageSkia();
NativeImageSkia   139 Source/platform/graphics/skia/NativeImageSkia.h     NativeImageSkia(const SkBitmap&);
NativeImageSkia   155 Source/platform/graphics/skia/NativeImageSkia.h     NativeImageSkia(const SkBitmap& image, const SkBitmap& resizedImage, const ImageResourceInfo&, int resizeRequests);
NativeImageSkia   117 Source/platform/image-decoders/ImageFrame.cpp PassRefPtr<NativeImageSkia> ImageFrame::asNewNativeImage() const
NativeImageSkia   119 Source/platform/image-decoders/ImageFrame.cpp     return NativeImageSkia::create(m_bitmap);
NativeImageSkia   112 Source/platform/image-decoders/ImageFrame.h     PassRefPtr<NativeImageSkia> asNewNativeImage() const;
NativeImageSkia   167 Source/web/WebElement.cpp     RefPtr<NativeImageSkia> bitmap = image->nativeImageForCurrentFrame();
NativeImageSkia   113 Source/web/WebImageDecoder.cpp     RefPtr<NativeImageSkia> image = frameBuffer->asNewNativeImage();