/external/oprofile/libpp/ |
symbol_sort.h | 25 image, enumerator in enum:sort_options::sort_order
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8HTMLImageElementConstructor.cpp | 58 return throwError("Image constructor associated frame is unavailable", V8Proxy::ReferenceError); 62 return throwError("Image constructor associated document is unavailable", V8Proxy::ReferenceError); 84 RefPtr<HTMLImageElement> image = HTMLImageElement::createForJSConstructor(document, optionalWidth, optionalHeight); local 85 V8DOMWrapper::setDOMWrapper(args.Holder(), &V8HTMLImageElementConstructor::info, image.get()); 86 image->ref(); 87 V8DOMWrapper::setJSWrapperForDOMNode(image.get(), v8::Persistent<v8::Object>::New(args.Holder()));
|
/external/webkit/Source/WebCore/rendering/ |
RenderInputSpeech.cpp | 87 DEFINE_STATIC_LOCAL(RefPtr<Image>, imageStateNormal, (Image::loadPlatformResource("inputSpeech"))); 88 DEFINE_STATIC_LOCAL(RefPtr<Image>, imageStateRecording, (Image::loadPlatformResource("inputSpeechRecording"))); 89 DEFINE_STATIC_LOCAL(RefPtr<Image>, imageStateWaiting, (Image::loadPlatformResource("inputSpeechWaiting"))); 92 Image* image = imageStateNormal.get(); local 94 image = imageStateRecording.get(); 96 image = imageStateWaiting.get() [all...] |
/external/webkit/Source/WebKit2/Shared/cg/ |
ShareableBitmapCG.cpp | 73 RetainPtr<CGImageRef> image(AdoptCF, CGBitmapContextCreateImage(graphicsContext->platformContext())); 74 return image; 83 RetainPtr<CGImageRef> image(AdoptCF, CGImageCreate(m_size.width(), m_size.height(), 8, 32, m_size.width() * 4, colorSpace.get(), bitmapInfo(m_flags), dataProvider.get(), 0, false, kCGRenderingIntentDefault)); 84 return image;
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
Vibrance.java | 17 package com.android.rs.image;
|
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/ |
WidgetUtils.java | 47 public static Bitmap createWidgetBitmap(MediaItem image) { 48 Bitmap bitmap = image.requestImage(MediaItem.TYPE_THUMBNAIL) 51 Log.w(TAG, "fail to get image of " + image.toString()); 54 return createWidgetBitmap(bitmap, image.getRotation());
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
AddAdapter.java | 51 public final Drawable image; field in class:AddAdapter.ListItem 57 image = res.getDrawable(imageResourceId); 59 image = null; 87 textView.setCompoundDrawablesWithIntrinsicBounds(item.image, null, null, null);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ExportScreenshotAction.java | 28 import java.awt.image.BufferedImage; 34 /** Saves the current layout editor's rendered image to disk */ 48 BufferedImage image = imageOverlay.getAwtImage(); local 49 if (image != null) { 73 ImageIO.write(image, "PNG", file); //$NON-NLS-1$ 79 MessageDialog.openError(shell, "Error", "Image not available");
|
/cts/apps/CtsVerifier/jni/cameraanalyzer/ |
com_android_cts_verifier_camera_analyzer_AutoLockTest.cpp | 52 TestingImage *image = (TestingImage*) imageAddress; local 62 testHandler->addDataToList(image->getColorChecker(3, 4, 0, 6, 66 delete image;
|
com_android_cts_verifier_camera_analyzer_WhiteBalanceTest.cpp | 53 TestingImage *image = (TestingImage*) imageAddress; local 69 image->getColorChecker(3, 4, 0, 6, 74 delete image;
|
/device/generic/goldfish/camera/ |
JpegCompressor.cpp | 42 typedef int (*CompressFunc)(JpegStub* stub, const void* image, 69 status_t NV21JpegCompressor::compressRawImage(const void* image, 77 return (status_t)(*f)(&mStub, image, width, height, quality);
|
/external/chromium/chrome/browser/chromeos/login/ |
message_bubble.h | 40 SkBitmap* image, 51 SkBitmap* image, 80 SkBitmap* image,
|
user_image_screen.cc | 82 void UserImageScreen::OnPhotoTaken(const SkBitmap& image) { 91 user_manager->SetLoggedInUserImage(image); 92 user_manager->SaveUserImage(user.email(), image); 106 const SkBitmap* image = ResourceBundle::GetSharedInstance().GetBitmapNamed( local 108 user_manager->SetLoggedInUserImage(*image);
|
/external/chromium/chrome/browser/ui/views/tab_contents/ |
tab_contents_drag_win.h | 37 const SkBitmap& image, 60 const SkBitmap& image, 68 const SkBitmap& image,
|
/external/skia/src/ports/ |
SkImageDecoder_CG.cpp | 63 CGImageRef image = CGImageSourceCreateImageAtIndex(imageSrc, 0, NULL); local 64 if (NULL == image) { 67 SkAutoTCallVProc<CGImage, CGImageRelease> arimage(image); 69 const int width = CGImageGetWidth(image); 70 const int height = CGImageGetHeight(image); 84 CGColorSpaceRef cs = CGImageGetColorSpace(image); 87 // perhaps the image's colorspace does not work for a context, so try just rgb 92 CGContextDrawImage(cg, CGRectMake(0, 0, width, height), image); 95 CGImageAlphaInfo info = CGImageGetAlphaInfo(image); 182 // <Error>: CGImageDestinationAddImage image could not be converted to destinatio 202 CGImageRef image = SkCreateCGImageRef(*bmPtr); local [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLImageLoader.cpp | 52 // HTMLVideoElement uses this class to load the poster image, but it should not fire events for loading or failure. 56 bool errorOccurred = image()->errorOccurred(); 57 if (!errorOccurred && image()->response().httpStatusCode() >= 400) 75 CachedImage* cachedImage = image();
|
/external/webkit/Source/WebCore/platform/image-decoders/openvg/ |
ImageDecoderOpenVG.cpp | 58 VGImage image = vgCreateImage(imageFormat, local 65 vgImageSubData(image, reinterpret_cast<unsigned char*>(pixelData), 70 tiledImage->setTile(xIndex, yIndex, image);
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_intra_prediction.h | 52 image_t *image, u32 mbNum, u32 constrainedIntraPred, u8 *data); 63 void h264bsdGetNeighbourPels(image_t *image, u8 *above, u8 *left, u32 mbNum); 75 u32 h264bsdIntraChromaPrediction(mbStorage_t *pMb, u8 *data, image_t *image,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/ |
ResourcePreviewHelper.java | 44 import java.awt.image.BufferedImage; 101 // This creates a centered image control 125 BufferedImage image = null; local 133 image = ImageUtils.createColoredImage(WIDTH, HEIGHT, color); 144 // Special-case image files (other than 9-patch files) and render these 152 image = ImageIO.read(file); 153 int width = image.getWidth(); 154 int height = image.getHeight(); 159 image = ImageUtils.scale(image, scale, scale) [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/ |
TextureHelper.java | 35 import java.awt.image.BufferedImage;
36 import java.awt.image.ColorConvertOp;
63 import com.jme3.texture.Image;
64 import com.jme3.texture.Image.Format;
169 Structure image = pImage.fetchData(blenderContext.getInputStream()).get(0);
local 170 result = this.getTextureFromImage(image, blenderContext);
266 Image image = sources.get(j).getImage();
local 267 ByteBuffer sourceData = image.getData(0);
270 sourcePixel.fromImage(image.getFormat(), sourceData, i); 303 Image image = source.getImage(); local 418 blenderContext.addLoadedFeatures(image.getOldMemoryAddress(), image.getName(), image, result); local [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
BooleanPropertyEditor.java | 14 import org.eclipse.swt.graphics.Image; 28 private static final Image m_trueImage = DesignerPlugin.getImage("properties/true.png"); 29 private static final Image m_falseImage = DesignerPlugin.getImage("properties/false.png"); 30 private static final Image m_unknownImage = 52 Image image = booleanValue ? m_trueImage : m_falseImage; local 54 paint(gc, x, y, width, height, image, text); 61 * Paints {@link Image} and text. 63 private void paint(GC gc, int x, int y, int width, int height, Image image, String text) [all...] |
/external/libvpx/libvpx/vp8/common/ |
textblit.c | 55 static void plot (const int x, const int y, unsigned char *image, const int pitch) 57 image [x+y*pitch] ^= 255; 61 void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch) 106 plot(y,x, image, pitch); 120 plot(x,y, image, pitch);
|
/external/skia/src/pdf/ |
SkPDFImage.cpp | 27 SkMemoryStream* image = NULL; local 36 image = new SkMemoryStream(rowBytes * srcRect.height()); 37 uint8_t* dst = (uint8_t*)image->getMemoryBase(); 46 image = new SkMemoryStream(rowBytes * srcRect.height()); 47 uint8_t* dst = (uint8_t*)image->getMemoryBase(); 61 image = new SkMemoryStream(rowBytes * srcRect.height()); 63 uint8_t* dst = (uint8_t*)image->getMemoryBase(); 105 image = new SkMemoryStream(rowBytes * srcRect.height()); 106 uint8_t* dst = (uint8_t*)image->getMemoryBase(); 121 image = new SkMemoryStream(rowBytes * srcRect.height()) 269 SkPDFImage* image = local [all...] |
/external/webkit/Source/WebCore/platform/graphics/cairo/ |
GraphicsContext3DCairo.cpp | 34 #include "Image.h" 41 bool GraphicsContext3D::getImageData(Image* image, unsigned int format, unsigned int type, bool premultiplyAlpha, bool ignoreGammaAndColorProfile, Vector<uint8_t>& outputVector) 43 if (!image) 45 // We need this to stay in scope because the native image is just a shallow copy of the data. 50 if (image->data()) { 51 decoder.setData(image->data(), true); 56 imageSurface = image->nativeImageForCurrentFrame(); 102 // OpenGL keeps the pixels stored bottom up, so we need to flip the image here.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
Locale.java | 27 import org.eclipse.swt.graphics.Image; 90 * Returns a flag image to use for this locale 92 * @return a flag image, or a default globe icon 95 public Image getFlagImage() { 96 Image image = null; local 103 image = icons.getFlag(languageCode, regionCode); 104 if (image == null) { 105 image = LocaleManager.getEmptyIcon(); 108 return image; [all...] |