/external/chromium/chrome/browser/ui/views/tabs/ |
tab_renderer_data.cc | 22 favicon.pixelRef() && 23 favicon.pixelRef() == data.favicon.pixelRef() &&
|
/external/skia/src/core/ |
SkBitmapProcShader.cpp | 164 SkASSERT(state.fBitmap->pixelRef() == NULL || 165 state.fBitmap->pixelRef()->getLockCount()); 208 SkASSERT(state.fBitmap->pixelRef() == NULL || 209 state.fBitmap->pixelRef()->getLockCount()); 291 // add the pixelref 292 SkPixelRef* pr = fRawBitmap.pixelRef();
|
SkDevice.cpp | 38 if (NULL == fBitmap.getPixels() && NULL == fBitmap.pixelRef()) {
|
SkBitmap.cpp | 116 1. no pixelref, in which case we just copy/ref the pixels/ctable 117 2. unlocked pixelref, pixels/ctable should be null 118 3. locked pixelref, we should lock the ref again ourselves 123 } else { // we have a pixelref, so pixels/ctable reflect it 467 dst == NULL || (getPixels() == NULL && pixelRef() == NULL)) 834 // share the pixelref with a custom offset [all...] |
/external/webkit/Source/WebCore/platform/graphics/android/ |
ImageSourceAndroid.cpp | 317 ref = bm->pixelRef(); 381 SkPixelRef* pixelRef = bitmap.pixelRef(); 382 if (pixelRef) 383 pixelRef->setURI(m_decoder.m_url);
|
ImageAndroid.cpp | 201 if (bitmap.getPixels() == NULL && bitmap.pixelRef() == NULL) { 203 SkDebugf("----- skip bitmapimage: [%d %d] pixels %p pixelref %p\n", 205 bitmap.getPixels(), bitmap.pixelRef()); 263 if (origBitmap.getPixels() == NULL && origBitmap.pixelRef() == NULL) {
|
/frameworks/base/libs/hwui/ |
ResourceCache.cpp | 60 SkSafeRef(bitmapResource->pixelRef()); 93 SkSafeUnref(bitmapResource->pixelRef());
|
/external/skia/include/core/ |
SkDevice.h | 267 SkPixelRef* getPixelRef() const { return fBitmap.pixelRef(); } 268 // just for subclasses, to assign a custom pixelref
|
SkBitmap.h | 98 /** Return true iff the bitmap has no pixels nor a pixelref. Note: this can 207 will automatically release any pixelref previously installed. Only call 256 /** Use the standard HeapAllocator to create the pixelref that manages the 258 If this is called multiple times, a new pixelref object will be created 266 @return true if the allocation succeeds. If not the pixelref field of 273 /** Use the specified Allocator to create the pixelref that manages the 275 If this is called multiple times, a new pixelref object will be created 281 @param allocator The Allocator to use to create a pixelref that can 289 @return true if the allocation succeeds. If not the pixelref field of 294 /** Return the current pixelref object, if an [all...] |
/external/skia/samplecode/ |
SamplePageFlip.cpp | 36 SkFlipPixelRef* ref = static_cast<SkFlipPixelRef*>(bm->pixelRef());
|
/external/skia/src/images/ |
SkImageRef.cpp | 61 if (bitmap && bitmap->pixelRef() == this) {
|
SkImageDecoder.cpp | 236 bm->pixelRef()->setURI(file);
|
/frameworks/base/core/jni/android/graphics/ |
Graphics.cpp | 351 SkASSERT(bitmap->pixelRef()); 541 ((AndroidPixelRef*) fNativeBitmap->pixelRef())->setLocalJNIRef(fBuffer); 547 ((AndroidPixelRef*) fNativeBitmap->pixelRef())->setLocalJNIRef(NULL);
|
BitmapRegionDecoder.cpp | 241 SkPixelRef* pr = bitmap->pixelRef();
|
BitmapFactory.cpp | 247 // already have a pixelref installed. 248 pr = bitmap->pixelRef();
|
/external/chromium/chrome/browser/ui/gtk/tabs/ |
tab_renderer_gtk.cc | 311 (data_.favicon.pixelRef() == 313 IDR_DEFAULT_FAVICON)->pixelRef()); [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
task_manager_gtk.cc | 724 if (icon.pixelRef() == 726 IDR_DEFAULT_FAVICON)->pixelRef()) { [all...] |
location_bar_view_gtk.cc | [all...] |
/external/skia/src/utils/ |
SkDumpCanvas.cpp | 109 SkPixelRef* pr = bm.pixelRef(); 118 str->appendf(" pixelref:%p", pr);
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
MediaPlayerPrivateAndroid.cpp | 256 if (!m_poster || (!m_poster->getPixels() && !m_poster->pixelRef()))
|
/external/webkit/Source/WebKit/android/nav/ |
CachedRoot.cpp | 516 SkPixelRef* pixelRef = bitmap.pixelRef(); 517 if (pixelRef != NULL) { 518 mURI = pixelRef->getURI(); [all...] |
/external/webkit/Source/WebCore/platform/graphics/skia/ |
PlatformContextSkia.cpp | 292 if (!bitmap->pixelRef()) {
|
/frameworks/base/core/jni/ |
com_google_android_gles_jni_EGLImpl.cpp | 269 SkPixelRef* ref = nativeBitmap ? nativeBitmap->pixelRef() : 0; 271 jniThrowException(_env, "java/lang/IllegalArgumentException", "Bitmap has no PixelRef");
|