HomeSort by relevance Sort by last modified time
    Searched refs:Image (Results 226 - 250 of 289) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
UpdateChooserDialog.java 43 import org.eclipse.swt.graphics.Image;
684 public Image getImage(Object element) {
  /external/webkit/WebCore/dom/
DOMImplementation.cpp 38 #include "Image.h"
126 addString(svgFeatures, "Image");
343 // PDF is one image type for which a plugin can override built-in support.
344 // We do not want QuickTime to take over all image types, obviously.
347 if (Image::supportsType(type))
365 if (type == "image/svg+xml") {
  /external/webkit/WebCore/platform/graphics/cairo/
ImageBufferCairo.cpp 99 Image* ImageBuffer::image() const function in class:WebCore::ImageBuffer
102 // It's assumed that if image() is called, the actual rendering to the
106 // This creates a COPY of the image and will cache that copy. This means
108 // currently-returned image, nor the results of future image() calls,
111 // This seems silly, but is the way the CG port works: image() is
288 cairo_surface_t* image = cairo_get_target(context()->platformContext()); local
289 if (!image)
292 String actualMimeType("image/png")
    [all...]
  /external/webkit/WebCore/platform/graphics/cg/
ImageBufferCG.cpp 112 Image* ImageBuffer::image() const function in class:WebCore::ImageBuffer
115 // It's assumed that if image() is called, the actual rendering to the
263 if (equalIgnoringCase(mimeType, "image/png"))
265 if (equalIgnoringCase(mimeType, "image/jpeg"))
267 if (equalIgnoringCase(mimeType, "image/gif"))
279 RetainPtr<CGImageRef> image(AdoptCF, CGBitmapContextCreateImage(context()->platformContext()));
280 if (!image)
291 CGImageDestinationAddImage(destination.get(), image.get(), 0);
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsLayerCA.h 107 virtual void setContentsToImage(Image*);
322 RetainPtr<CALayer> m_contentsLayer; // A layer used for inner content, like image and video
GraphicsContext3DMac.cpp     [all...]
  /external/webkit/WebCore/platform/graphics/qt/
ImageBufferQt.cpp 90 Image* ImageBuffer::image() const function in class:WebCore::ImageBuffer
93 // It's assumed that if image() is called, the actual rendering to the
108 QImage image = m_data.m_pixmap.toImage().convertToFormat(QImage::Format_ARGB32); local
109 ASSERT(!image.isNull());
113 QRgb value = image.pixel(x, y);
118 image.setPixel(x, y, value);
122 m_data.m_pixmap = QPixmap::fromImage(image);
159 QImage image = imageData.m_pixmap.toImage(); local
161 image = image.convertToFormat(QImage::Format_ARGB32)
230 QImage image = data.m_pixmap.toImage(); local
    [all...]
  /external/webkit/WebCore/platform/win/
PasteboardWin.cpp 37 #include "Image.h"
209 Image* image = cachedImage->image(); local
210 ASSERT(image);
217 HBITMAP resultBitmap = CreateCompatibleBitmap(dc, image->width(), image->height());
220 BitmapInfo bmInfo = BitmapInfo::create(image->size());
224 image->getHBITMAP(coreBitmap);
227 AlphaBlend(compatibleDC, 0, 0, image->width(), image->height()
    [all...]
  /external/webkit/WebCore/rendering/
HitTestResult.cpp 173 // For <area> tags in image maps, walk the tree for the <area>, not the <img> using it.
200 HTMLImageElement* image = static_cast<HTMLImageElement*>(m_innerNonSharedNode.get()); local
201 return displayString(image->getAttribute(altAttr), m_innerNonSharedNode.get());
211 WMLImageElement* image = static_cast<WMLImageElement*>(m_innerNonSharedNode.get()); local
212 return displayString(image->altText(), m_innerNonSharedNode.get());
219 Image* HitTestResult::image() const function in class:WebCore::HitTestResult
226 RenderImage* image = static_cast<WebCore::RenderImage*>(renderer); local
227 if (image->cachedImage() && !image->cachedImage()->errorOccurred()
    [all...]
RenderWidget.cpp 213 void RenderWidget::showSubstituteImage(PassRefPtr<Image> prpImage)
  /external/junit/src/junit/swingui/
TestRunner.java 8 import java.awt.Image;
276 Image icon= loadFrameIcon();
557 private Image loadFrameIcon() {
  /external/webkit/WebCore/page/
DragController.cpp 52 #include "Image.h"
527 if (mouseDownTarget.image()
552 RenderImage* image = toRenderImage(renderer);
553 return image->cachedImage();
556 static Image* getImage(Element* element)
563 RenderImage* image = toRenderImage(renderer);
564 if (image->cachedImage() && !image->cachedImage()->errorOccurred())
565 return image->cachedImage()->image();
653 Image* image = getImage(static_cast<Element*>(node)); local
738 Image* image = getImage(element); local
    [all...]
  /external/webkit/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.cpp 251 // Try to obtain the icon image.
252 WebCore::Image* icon = WebCore::iconDatabase()->iconForPageURL(
1033 static RefPtr<Image> image; local
    [all...]
  /frameworks/base/services/surfaceflinger/
Layer.cpp 743 static_cast<Image&>(res) = mBufferData[mActiveBuffer].texture;
804 Image& texture(mBufferData[index].texture);
832 status_t Layer::BufferManager::destroyTexture(Image* tex, EGLDisplay dpy)
838 if (tex->image != EGL_NO_IMAGE_KHR) {
839 eglDestroyImageKHR(dpy, tex->image);
840 tex->image = EGL_NO_IMAGE_KHR;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitLaunchConfigurationTab.java 75 import org.eclipse.swt.graphics.Image;
122 private Image mTabIcon = null;
492 public Image getImage() {
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
Workspace.java 99 import java.awt.image.BufferedImage;
107 import java.awt.Image;
796 private void showCaptureWindow(ViewNode node, String captureParams, Image image) {
797 if (image != null) {
803 final CaptureRenderer label = new CaptureRenderer(new ImageIcon(image), node);
1145 Image image = get(); local
1284 BufferedImage image = new BufferedImage(sceneView.getWidth(), local
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
EmulatorControlPanel.java 52 import org.eclipse.swt.graphics.Image;
170 private Image mPlayImage;
171 private Image mPauseImage;
    [all...]
NativeHeapPanel.java 35 import org.eclipse.swt.graphics.Image;
647 // TODO add image display of native heap.
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtPlugin.java 78 import org.eclipse.swt.graphics.Image;
126 private static Image sAndroidLogo;
484 * Returns an image descriptor for the image file at the given
488 * @return the image descriptor
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationComposite.java 61 import org.eclipse.swt.graphics.Image;
294 /** The UI label of the toggle. Can be null if the image exists. */
297 /** The image to use for this toggle. Can be null if the label exists. */
298 private final Image mImage;
307 * @param uiLabel The UI label of the toggle. Can be null if the image exists.
308 * @param image The image to use for this toggle. Can be null if the label exists.
313 Image image,
316 mImage = image;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java 66 import org.eclipse.swt.graphics.Image;
83 import java.awt.image.BufferedImage;
84 import java.awt.image.DataBufferInt;
85 import java.awt.image.Raster;
95 * Displays the image rendered by the {@link GraphicalEditorPart} and handles
147 * When false this means the canvas is displaying an out-dated result image & bounds and some
155 /** Current background image. Null when there's no image. */
156 private Image mImage;
337 * When false this means the canvas is displaying an out-dated result image & bounds and som
    [all...]
  /external/skia/src/svg/
SkSVGParser.cpp 370 CASE_NEW(Image);
418 {"image", SkSVGType_Image},
  /external/webkit/WebCore/bridge/qt/
qt_pixmapruntime.cpp 105 RefPtr<HTMLImageElement> image = new HTMLImageElement(HTMLNames::imgTag, document); local
106 image->setCachedImage(new CachedImage(img.get()));
108 return asObject(toJS(exec, global, image.release()));
120 QImage image; local
121 // for getting the data url, we always prefer the image.
123 image = v.value<QPixmap>().toImage();
124 v = QVariant::fromValue<QImage>(image);
126 image = v.value<QImage>();
129 image.save(&b, "PNG");
130 const QString b64 = QString("data:image/png;base64,") + ba.toBase64()
    [all...]
  /external/webkit/WebKit/chromium/src/
AssertMatchingEnums.cpp 237 COMPILE_ASSERT_MATCHING_ENUM(WebInputElement::Image, HTMLInputElement::IMAGE);
  /sdk/ddms/app/src/com/android/ddms/
UIThread.java 72 import org.eclipse.swt.graphics.Image;
251 private Image mTracingStartImage;
253 private Image mTracingStopImage;
422 // create the image loaders for DDMS and DDMUILIB
1454 Image image = mDdmUiLibLoader.loadImage("pull.png", mDisplay); \/\/$NON-NLS-1\$ local
    [all...]

Completed in 635 milliseconds

1 2 3 4 5 6 7 8 91011>>