/external/skia/gm/ |
ovals.cpp | 41 fPaints.push_back(p); 48 fPaints.push_back(p); 57 fPaints.push_back(p); 65 fPaints.push_back(p); 74 fPaints.push_back(p); 155 for (int i = 0; i < fPaints.count(); ++i) { 167 fPaints[i].setColor(color); 170 canvas->drawOval(oval, fPaints[i]); 181 for (int i = 0; i < fPaints.count(); ++i) { 189 fPaints[i].setColor(color) [all...] |
roundrects.cpp | 42 fPaints.push_back(p); 49 fPaints.push_back(p); 58 fPaints.push_back(p); 66 fPaints.push_back(p); 75 fPaints.push_back(p); 158 for (int i = 0; i < fPaints.count(); ++i) { 170 fPaints[i].setColor(color); 173 canvas->drawRRect(circleRect, fPaints[i]); 184 for (int i = 0; i < fPaints.count(); ++i) { 195 fPaints[i].setColor(color) [all...] |
circles.cpp | 39 fPaints.push_back(p); 46 fPaints.push_back(p); 57 fPaints.push_back(p); 74 fPaints.push_back(p); 89 fPaints.push_back(p); 98 fPaints.push_back(p); 106 fPaints.push_back(p); 115 fPaints.push_back(p); 156 for (i = 0; i < fPaints.count(); ++i) { 163 fPaints[i].setColor(color) [all...] |
rects.cpp | 40 fPaints.push_back(p); 48 fPaints.push_back(p); 60 fPaints.push_back(p); 78 fPaints.push_back(p); 94 fPaints.push_back(p); 104 fPaints.push_back(p); 113 fPaints.push_back(p); 123 fPaints.push_back(p); 218 for (int i = 0; i < fPaints.count(); ++i) { 222 canvas->drawRect(fRects[j], fPaints[i]) [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkPicturePlayback.h | 130 return &(*fPaints)[index - 1]; 209 SkTRefArray<SkPaint>* fPaints;
|
SkPicturePlayback.cpp | 100 fPaints = record.fPaints.unflattenToArray(); 184 int paintCount = SafeCount(src.fPaints); 214 if (needs_deep_copy(src.fPaints->at(i))) { 216 &src.fPaints->at(i), 0, 230 fPaints = SkTRefArray<SkPaint>::Create(paintCount); 236 deepCopyInfo->paintData[i]->unflatten(&fPaints->writableAt(i), 241 fPaints->writableAt(i) = src.fPaints->at(i); 247 fPaints = SkSafeRef(src.fPaints) [all...] |
SkPictureRecord.cpp | 36 fPaints(&fFlattenableHeap), 574 if ((*gPictureRecordOpts[opt].fProc)(&fWriter, fRestoreOffsetStack.top(), &fPaints)) { [all...] |
SkPictureRecord.h | 231 SkPaintDictionary fPaints;
|
/external/skia/src/core/ |
SkPicturePlayback.h | 130 return &(*fPaints)[index - 1]; 209 SkTRefArray<SkPaint>* fPaints;
|
SkPicturePlayback.cpp | 100 fPaints = record.fPaints.unflattenToArray(); 184 int paintCount = SafeCount(src.fPaints); 214 if (needs_deep_copy(src.fPaints->at(i))) { 216 &src.fPaints->at(i), 0, 230 fPaints = SkTRefArray<SkPaint>::Create(paintCount); 236 deepCopyInfo->paintData[i]->unflatten(&fPaints->writableAt(i), 241 fPaints->writableAt(i) = src.fPaints->at(i); 247 fPaints = SkSafeRef(src.fPaints) [all...] |
SkPictureRecord.cpp | 36 fPaints(&fFlattenableHeap), 574 if ((*gPictureRecordOpts[opt].fProc)(&fWriter, fRestoreOffsetStack.top(), &fPaints)) { [all...] |
SkPictureRecord.h | 231 SkPaintDictionary fPaints;
|
/external/skia/tests/ |
CanvasTest.cpp | 692 referenceRecord->fPaints.count() == 693 testRecord->fPaints.count(), testStep->assertMessage()); 694 for (int i = 0; i < referenceRecord->fPaints.count(); ++i) { 696 EQ(referenceRecord->fPaints[i], testRecord->fPaints[i]), [all...] |