HomeSort by relevance Sort by last modified time
    Searched refs:bitmap (Results 501 - 525 of 1127) sorted by null

<<21222324252627282930>>

  /dalvik/vm/alloc/
Alloc.cpp 326 HeapBitmap *bitmap = dvmHeapSourceGetLiveBits(); local
327 dvmHeapBitmapWalk(bitmap, countInstancesOfClassCallback, &ctx);
345 HeapBitmap *bitmap = dvmHeapSourceGetLiveBits(); local
346 dvmHeapBitmapWalk(bitmap, countAssignableInstancesOfClassCallback, &ctx);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
GLES20TriangleRenderer.java 29 import android.graphics.Bitmap;
140 Bitmap bitmap; local
142 bitmap = BitmapFactory.decodeStream(is);
151 GLUtils.texImage2D(GLES20.GL_TEXTURE_2D, 0, bitmap, 0);
152 bitmap.recycle();
StaticTriangleRenderer.java 32 import android.graphics.Bitmap;
191 Bitmap bitmap; local
193 bitmap = BitmapFactory.decodeStream(is);
202 GLUtils.texImage2D(GL_TEXTURE_2D, 0, bitmap, 0);
203 bitmap.recycle();
TriangleRenderer.java 30 import android.graphics.Bitmap;
93 Bitmap bitmap; local
95 bitmap = BitmapFactory.decodeStream(is);
104 GLUtils.texImage2D(GL10.GL_TEXTURE_2D, 0, bitmap, 0);
105 bitmap.recycle();
  /development/samples/BasicGLSurfaceView/src/com/example/android/basicglsurfaceview/
GLES20TriangleRenderer.java 29 import android.graphics.Bitmap;
138 Bitmap bitmap; local
140 bitmap = BitmapFactory.decodeStream(is);
149 GLUtils.texImage2D(GLES20.GL_TEXTURE_2D, 0, bitmap, 0);
150 bitmap.recycle();
  /development/samples/HelloEffects/src/com/example/android/mediafx/
HelloEffects.java 20 import android.graphics.Bitmap;
74 // Load input bitmap
75 Bitmap bitmap = BitmapFactory.decodeResource(getResources(), local
77 mImageWidth = bitmap.getWidth();
78 mImageHeight = bitmap.getHeight();
83 GLUtils.texImage2D(GLES20.GL_TEXTURE_2D, 0, bitmap, 0);
246 // if no effect is chosen, just render the original bitmap
  /external/chromium/chrome/browser/ui/cocoa/extensions/
extension_install_dialog_controller.h 56 icon:(SkBitmap*)bitmap
  /external/chromium/chrome/browser/ui/gtk/
create_application_shortcuts_dialog_gtk.h 42 virtual void CreateIconPixBuf(const SkBitmap& bitmap);
  /external/chromium/chrome/browser/ui/views/
browser_actions_container_browsertest.cc 257 LOG(INFO) << "Creating bitmap\n" << std::flush;
259 // Create and cache and empty bitmap.
260 SkBitmap bitmap; local
261 bitmap.setConfig(SkBitmap::kARGB_8888_Config,
264 bitmap.allocPixels();
272 bitmap,
  /external/chromium/webkit/glue/
webclipboard_impl.cc 174 const SkBitmap& bitmap = image.getSkBitmap(); local
176 const SkBitmap& bitmap = gfx::CGImageToSkBitmap(image.getCGImageRef());
178 SkAutoLockPixels locked(bitmap);
179 scw.WriteBitmapFromPixels(bitmap.getPixels(), image.size());
  /external/freetype/include/freetype/
ftglyph.h 63 /* bitmap, a vector outline, or even images in other formats. */
80 /* bitmap or pointer. */
124 /* A handle to an object used to model a bitmap glyph image. This is */
136 /* A structure used for bitmap glyph images. This really is a */
144 /* glyph bitmap. */
148 /* bitmap. This distance is positive for upwards~y! */
150 /* bitmap :: A descriptor for the bitmap. */
155 /* the bitmap's contents easily. */
165 FT_Bitmap bitmap; member in struct:FT_BitmapGlyphRec_
    [all...]
  /external/skia/include/device/xps/
SkXPSDevice.h 97 const SkBitmap& bitmap,
104 const SkBitmap& bitmap,
142 virtual bool onReadPixels(const SkBitmap& bitmap,
203 const SkBitmap& bitmap,
  /external/skia/include/images/
SkFlipPixelRef.h 49 // Helper to copy pixels from srcAddr to the dst bitmap, clipped to clip.
82 const SkBitmap& bitmap() const { return fBitmap; } function in class:SkAutoFlipUpdate
  /external/skia/include/pdf/
SkPDFDevice.h 83 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
86 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap, int x, int y,
174 virtual bool onReadPixels(const SkBitmap& bitmap, int x, int y,
264 const SkBitmap& bitmap,
  /external/skia/legacy/include/images/
SkFlipPixelRef.h 48 // Helper to copy pixels from srcAddr to the dst bitmap, clipped to clip.
92 const SkBitmap& bitmap() const { return fBitmap; } function in class:SkAutoFlipUpdate
  /external/skia/legacy/src/core/
SkBitmapShaderTemplate.h 12 #define NOFILTER_BITMAP_SHADER_PREAMBLE(bitmap, rb)
15 #define NOFILTER_BITMAP_SHADER_POSTAMBLE(bitmap)
18 #define NOFILTER_BITMAP_SHADER_PREAMBLE16(bitmap, rb)
21 #define NOFILTER_BITMAP_SHADER_POSTAMBLE16(bitmap)
  /external/skia/legacy/src/images/
SkMovie.cpp 69 const SkBitmap& SkMovie::bitmap() function in class:SkMovie
  /external/skia/legacy/src/ports/
SkImageRef_ashmem.cpp 129 SkBitmap* bitmap, SkBitmap::Config config,
133 return this->INHERITED::onDecode(codec, stream, bitmap, config, mode);
139 bool success = this->INHERITED::onDecode(codec, stream, bitmap, config,
146 SkRefCnt_SafeAssign(fCT, bitmap->getColorTable());
  /external/skia/legacy/src/views/
SkImageView.cpp 287 SkBitmap* bitmap = new SkBitmap;
289 if (!SkImageDecoder::DecodeURL(fUri.c_str(), bitmap))
291 delete bitmap;
295 fData.fBitmap = bitmap;
  /external/skia/src/core/
SkBitmapShaderTemplate.h 12 #define NOFILTER_BITMAP_SHADER_PREAMBLE(bitmap, rb)
15 #define NOFILTER_BITMAP_SHADER_POSTAMBLE(bitmap)
18 #define NOFILTER_BITMAP_SHADER_PREAMBLE16(bitmap, rb)
21 #define NOFILTER_BITMAP_SHADER_POSTAMBLE16(bitmap)
  /external/skia/src/effects/gradients/
SkTwoPointRadialGradient.h 22 virtual BitmapType asABitmap(SkBitmap* bitmap,
  /external/skia/src/images/
SkImageRef_ashmem.cpp 130 SkBitmap* bitmap, SkBitmap::Config config,
134 return this->INHERITED::onDecode(codec, stream, bitmap, config, mode);
140 bool success = this->INHERITED::onDecode(codec, stream, bitmap, config,
147 SkRefCnt_SafeAssign(fCT, bitmap->getColorTable());
SkMovie.cpp 71 const SkBitmap& SkMovie::bitmap() function in class:SkMovie
  /external/skia/tests/
GpuBitmapCopyTest.cpp 41 static void TestSubsetHelpers(skiatest::Reporter* reporter, const SkBitmap& bitmap){
43 bool upperLeft = getUpperLeftFromOffset(bitmap, &x, &y);
45 REPORTER_ASSERT(reporter, getSubOffset(bitmap, x, y) == bitmap.pixelRefOffset());
68 // exactly, in which case the IDs should be the same, but sometimes we do a bitmap draw,
144 // Draw something different to the same portion of the bitmap that we will extract as a
183 // Test copying the subset bitmap, using both copyTo and deepCopyTo.
192 // Reset the bitmap so that a failed copyTo will leave it in the expected state.
  /external/webkit/Source/WebCore/platform/graphics/win/
GraphicsContextCGWin.cpp 42 HBITMAP bitmap = static_cast<HBITMAP>(GetCurrentObject(hdc, OBJ_BITMAP)); local
44 DIBPixelData pixelData(bitmap);
46 // FIXME: We can get here because we asked for a bitmap that is too big
101 OwnPtr<HBITMAP> bitmap = adoptPtr(static_cast<HBITMAP>(GetCurrentObject(hdc, OBJ_BITMAP)));
103 DIBPixelData pixelData(bitmap.get());

Completed in 1590 milliseconds

<<21222324252627282930>>