OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getGenerationID
(Results
1 - 25
of
59
) sorted by null
1
2
3
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
LazyDecodingPixelRef.cpp
76
PlatformInstrumentation::willDecodeLazyPixelRef(
getGenerationID
());
78
PlatformInstrumentation::didDecodeLazyPixelRef(
getGenerationID
());
/external/skia/tests/
PaintTest.cpp
157
uint32_t paintGenID = paint.
getGenerationID
();
158
uint32_t copiedPaintGenID = copiedPaint.
getGenerationID
();
169
REPORTER_ASSERT(reporter, paint.
getGenerationID
() == paintGenID);
170
REPORTER_ASSERT(reporter, copiedPaint.
getGenerationID
() != copiedPaintGenID);
171
copiedPaintGenID = copiedPaint.
getGenerationID
(); // reset to the new value
184
REPORTER_ASSERT(reporter, paint.
getGenerationID
() != paintGenID);
185
REPORTER_ASSERT(reporter, copiedPaint.
getGenerationID
() != copiedPaintGenID);
PixelRefTest.cpp
69
REPORTER_ASSERT(r, 0 != pixelRef->
getGenerationID
());
76
REPORTER_ASSERT(r, 0 != pixelRef->
getGenerationID
());
82
REPORTER_ASSERT(r, 0 != pixelRef->
getGenerationID
());
GpuBitmapCopyTest.cpp
58
REPORTER_ASSERT(reporter, src.
getGenerationID
() == dst.
getGenerationID
());
88
REPORTER_ASSERT(reporter, src.
getGenerationID
() != dst.
getGenerationID
());
BitmapCopyTest.cpp
281
REPORTER_ASSERT(reporter, srcPremul.
getGenerationID
() == dst.
getGenerationID
());
283
REPORTER_ASSERT(reporter, srcPremul.
getGenerationID
() != dst.
getGenerationID
());
PathTest.cpp
138
REPORTER_ASSERT(reporter, copy.
getGenerationID
() == original.
getGenerationID
());
143
assignID = assign.
getGenerationID
();
145
REPORTER_ASSERT(reporter, assign.
getGenerationID
() != assignID);
149
copyID = copy.
getGenerationID
();
151
REPORTER_ASSERT(reporter, copy.
getGenerationID
() != copyID);
155
assignID = assign.
getGenerationID
();
157
REPORTER_ASSERT(reporter, assign.
getGenerationID
() != assignID);
164
copyID = copy.
getGenerationID
();
166
assignID = assign.
getGenerationID
();
[
all
...]
ReadPixelsTest.cpp
368
uint32_t idBefore = canvas.getDevice()->accessBitmap(false).
getGenerationID
();
372
uint32_t idAfter = canvas.getDevice()->accessBitmap(false).
getGenerationID
();
/external/chromium_org/third_party/skia/src/gpu/
GrPath.cpp
16
keyData[0] = path.
getGenerationID
();
/external/skia/src/gpu/
GrPath.cpp
16
keyData[0] = path.
getGenerationID
();
/external/chromium_org/third_party/skia/src/lazy/
SkCachingPixelRef.cpp
53
fScaledCacheId = SkScaledImageCache::FindAndLock(this->
getGenerationID
(),
68
fScaledCacheId = SkScaledImageCache::AddAndLock(this->
getGenerationID
(),
/external/skia/src/lazy/
SkCachingPixelRef.cpp
53
fScaledCacheId = SkScaledImageCache::FindAndLock(this->
getGenerationID
(),
68
fScaledCacheId = SkScaledImageCache::AddAndLock(this->
getGenerationID
(),
/external/chromium_org/chrome/browser/extensions/api/extension_action/
browser_action_apitest.cc
155
uint32_t action_icon_last_id = action_icon.ToSkBitmap()->
getGenerationID
();
159
icon_factory.GetIcon(0).ToSkBitmap()->
getGenerationID
());
171
action_icon_current_id = action_icon.ToSkBitmap()->
getGenerationID
();
188
action_icon_current_id = action_icon.ToSkBitmap()->
getGenerationID
();
207
action_icon_current_id = action_icon.ToSkBitmap()->
getGenerationID
();
224
action_icon_current_id = action_icon.ToSkBitmap()->
getGenerationID
();
242
action_icon_current_id = action_icon.ToSkBitmap()->
getGenerationID
();
260
action_icon_current_id = action_icon.ToSkBitmap()->
getGenerationID
();
283
action_icon_current_id = action_icon.ToSkBitmap()->
getGenerationID
();
/frameworks/base/libs/hwui/
PathCache.cpp
279
path->
getGenerationID
());
418
if (sourcePath && sourcePath->
getGenerationID
() == path->
getGenerationID
()) {
451
} else if (path->
getGenerationID
() != texture->generation) {
477
} else if (path->
getGenerationID
() != texture->generation) {
485
texture = createTexture(0.0f, 0.0f, 0.0f, 0, 0, path->
getGenerationID
());
DisplayListRenderer.h
224
if (pathCopy == NULL || pathCopy->
getGenerationID
() != path->
getGenerationID
()) {
244
if (paintCopy == NULL || paintCopy->
getGenerationID
() != paint->
getGenerationID
()) {
309
if (shaderCopy == NULL || shaderCopy->
getGenerationId
() != shader->
getGenerationId
()) {
TextureCache.cpp
157
} else if (bitmap->
getGenerationID
() != texture->generation) {
234
texture->generation = bitmap->
getGenerationID
();
/external/chromium_org/third_party/skia/include/core/
SkPixelRef.h
106
uint32_t
getGenerationID
() const;
110
getGenerationID
().
/external/skia/include/core/
SkPixelRef.h
106
uint32_t
getGenerationID
() const;
110
getGenerationID
().
/external/chromium_org/third_party/skia/src/core/
SkPixelRef.cpp
145
// This is subtle. We must call that.
getGenerationID
() to make sure its genID isn't 0.
146
this->fGenerationID = that.
getGenerationID
();
231
uint32_t SkPixelRef::
getGenerationID
() const {
SkBitmapHeap.h
222
: fGenerationId(bm.
getGenerationID
())
SkScaledImageCache.cpp
400
Rec* rec = this->findAndLock(orig.
getGenerationID
(), scaleX,
412
Rec* rec = this->findAndLock(orig.
getGenerationID
(), 0, 0,
467
Key key(orig.
getGenerationID
(), scaleX, scaleY, bounds);
478
Key key(orig.
getGenerationID
(), 0, 0, bounds);
/external/skia/src/core/
SkPixelRef.cpp
145
// This is subtle. We must call that.
getGenerationID
() to make sure its genID isn't 0.
146
this->fGenerationID = that.
getGenerationID
();
231
uint32_t SkPixelRef::
getGenerationID
() const {
SkBitmapHeap.h
222
: fGenerationId(bm.
getGenerationID
())
SkScaledImageCache.cpp
400
Rec* rec = this->findAndLock(orig.
getGenerationID
(), scaleX,
412
Rec* rec = this->findAndLock(orig.
getGenerationID
(), 0, 0,
467
Key key(orig.
getGenerationID
(), scaleX, scaleY, bounds);
478
Key key(orig.
getGenerationID
(), 0, 0, bounds);
/external/chromium_org/ash/desktop_background/
wallpaper_resizer.cc
99
return image_rep.is_null() ? 0 : image_rep.sk_bitmap().
getGenerationID
();
/external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
NativeImageSkia.cpp
378
PlatformInstrumentation::didDrawLazyPixelRef(bitmap().
getGenerationID
());
502
PlatformInstrumentation::didDrawLazyPixelRef(bitmap().
getGenerationID
());
Completed in 181 milliseconds
1
2
3