/third_party/skia/tools/skdiff/ |
D | skdiff_main.cpp | 174 if (drp.fBase.fFilename.equals(drp.fComparison.fFilename)) { in add() 175 fResultsOfType[drp.fResult].push_back(drp.fBase.fFilename); in add() 178 blame.append(drp.fBase.fFilename); in add() 207 fStatusOfType[drp.fBase.fStatus][drp.fComparison.fStatus].push_back( in add() 208 drp.fBase.fFilename); in add() 223 add_unique_basename(&fFailedBaseNames[drp.fResult], drp.fBase.fFilename); in add() 318 fDrp->fBase.fBitmap.setPixelRef(nullptr, 0, 0); in ~AutoReleasePixels() 341 get_bounds(drp.fBase, "base"); in get_bounds() 416 drp.fBase.fFilename = baseFiles[i]; in create_diff_images() 417 drp.fBase.fFullPath = basePath; in create_diff_images() [all …]
|
D | skdiff_html.cpp | 82 diff.fBase.fBitmap.width() * in print_pixel_count() 83 diff.fBase.fBitmap.height())); in print_pixel_count() 95 stream->writeText(diff.fBase.fFilename.c_str()); in print_checkbox_cell() 103 stream->writeText(diff.fBase.fFilename.c_str()); in print_label_cell() 152 stream->writeText(DiffResource::getStatusDescription(diff.fBase.fStatus)); in print_label_cell() 219 print_diff_resource_cell(stream, diff.fBase, relativePath, false); in print_diff_row()
|
D | skdiff.h | 112 : fBase() in DiffRecord() 130 DiffResource fBase; member 179 return strcmp(lhs->fBase.fFilename.c_str(), rhs->fBase.fFilename.c_str()); in compare()
|
D | skdiff.cpp | 161 if (w != dr->fBase.fBitmap.width() || h != dr->fBase.fBitmap.height()) { in compute_diff() 177 SkPMColor c0 = *dr->fBase.fBitmap.getAddr32(x, y); in compute_diff()
|
/third_party/flutter/skia/src/sksl/ir/ |
D | SkSLSwizzle.h | 105 , fBase(std::move(base)) in Swizzle() 112 if (fBase->fKind == Expression::kConstructor_Kind && fBase->isConstant()) { in constantPropagate() 114 SkASSERT(fBase->fKind == Expression::kConstructor_Kind); in constantPropagate() 117 int64_t value = ((Constructor&) *fBase).getIVecComponent(fComponents[0]); in constantPropagate() 123 double value = ((Constructor&) *fBase).getFVecComponent(fComponents[0]); in constantPropagate() 133 return fBase->hasSideEffects(); in hasSideEffects() 137 return std::unique_ptr<Expression>(new Swizzle(fType, fBase->clone(), fComponents)); in clone() 141 String result = fBase->description() + "."; in description() 148 std::unique_ptr<Expression> fBase; member 156 , fBase(std::move(base)) in Swizzle()
|
D | SkSLFieldAccess.h | 30 , fBase(std::move(base)) 35 return fBase->hasSideEffects(); in hasSideEffects() 39 return std::unique_ptr<Expression>(new FieldAccess(fBase->clone(), fFieldIndex, in clone() 44 return fBase->description() + "." + fBase->fType.fields()[fFieldIndex].fName; in description() 47 std::unique_ptr<Expression> fBase; member
|
D | SkSLIndexExpression.h | 56 , fBase(std::move(base)) in IndexExpression() 62 return fBase->hasSideEffects() || fIndex->hasSideEffects(); in hasSideEffects() 66 return std::unique_ptr<Expression>(new IndexExpression(fBase->clone(), fIndex->clone(), in clone() 71 return fBase->description() + "[" + fIndex->description() + "]"; in description() 74 std::unique_ptr<Expression> fBase; member 83 , fBase(std::move(base)) in IndexExpression()
|
/third_party/flutter/skia/tools/skdiff/ |
D | skdiff_main.cpp | 185 if (drp->fBase.fFilename.equals(drp->fComparison.fFilename)) { in add() 186 fResultsOfType[drp->fResult].push_back(new SkString(drp->fBase.fFilename)); in add() 189 blame->append(drp->fBase.fFilename); in add() 218 fStatusOfType[drp->fBase.fStatus][drp->fComparison.fStatus].push_back( in add() 219 new SkString(drp->fBase.fFilename)); in add() 234 add_unique_basename(&fFailedBaseNames[drp->fResult], drp->fBase.fFilename); in add() 333 fDrp->fBase.fBitmap.setPixelRef(nullptr, 0, 0); in ~AutoReleasePixels() 356 get_bounds(drp.fBase, "base"); in get_bounds() 431 drp->fBase.fFilename = *baseFiles[i]; in create_diff_images() 432 drp->fBase.fFullPath = basePath; in create_diff_images() [all …]
|
D | skdiff_html.cpp | 82 diff.fBase.fBitmap.width() * in print_pixel_count() 83 diff.fBase.fBitmap.height())); in print_pixel_count() 95 stream->writeText(diff.fBase.fFilename.c_str()); in print_checkbox_cell() 103 stream->writeText(diff.fBase.fFilename.c_str()); in print_label_cell() 152 stream->writeText(DiffResource::getStatusDescription(diff.fBase.fStatus)); in print_label_cell() 218 print_diff_resource_cell(stream, diff.fBase, relativePath, false); in print_diff_row()
|
D | skdiff.h | 112 : fBase() in DiffRecord() 130 DiffResource fBase; member 179 return strcmp(lhs->fBase.fFilename.c_str(), rhs->fBase.fFilename.c_str()); in compare()
|
D | skdiff.cpp | 161 if (w != dr->fBase.fBitmap.width() || h != dr->fBase.fBitmap.height()) { in compute_diff() 177 SkPMColor c0 = *dr->fBase.fBitmap.getAddr32(x, y); in compute_diff()
|
/third_party/flutter/skia/src/core/ |
D | SkReader32.h | 24 SkReader32() : fCurr(nullptr), fStop(nullptr), fBase(nullptr) {} in SkReader32() 33 fBase = fCurr = (const char*)data; in setMemory() 37 size_t size() const { return fStop - fBase; } in size() 38 size_t offset() const { return fCurr - fBase; } in offset() 40 const void* base() const { return fBase; } in base() 46 void rewind() { fCurr = fBase; } in rewind() 51 fCurr = fBase + offset; in setOffset() 160 const char* fBase; // beginning of buffer variable
|
/third_party/skia/src/sksl/ir/ |
D | SkSLSwizzle.h | 29 , fBase(std::move(base)) in Swizzle() 52 return fBase; in base() 56 return fBase; in base() 83 , fBase(std::move(base)) in Swizzle() 88 std::unique_ptr<Expression> fBase; member
|
D | SkSLIndexExpression.h | 26 , fBase(std::move(base)) in IndexExpression() 46 return fBase; in base() 50 return fBase; in base() 81 , fBase(std::move(base)) in IndexExpression() 84 std::unique_ptr<Expression> fBase; member
|
D | SkSLFieldAccess.h | 37 , fBase(std::move(base)) {} 52 return fBase; in base() 56 return fBase; in base() 85 std::unique_ptr<Expression> fBase; variable
|
/third_party/flutter/skia/gm/ |
D | simpleaaclip.cpp | 72 fBase.set(100.65f, in onOnceBeforeDraw() 76 fRect = fBase; in onOnceBeforeDraw() 80 fBasePath.addRoundRect(fBase, SkIntToScalar(5), SkIntToScalar(5)); in onOnceBeforeDraw() 99 canvas->drawRect(fBase, paint); in drawOrig() 128 canvas->clipRect(fBase, true); in drawPathsOped() 198 SkRect fBase; member in skiagm::SimpleClipGM
|
/third_party/skia/gm/ |
D | simpleaaclip.cpp | 72 fBase.setLTRB(100.65f, in onOnceBeforeDraw() 76 fRect = fBase; in onOnceBeforeDraw() 80 fBasePath.addRoundRect(fBase, SkIntToScalar(5), SkIntToScalar(5)); in onOnceBeforeDraw() 99 canvas->drawRect(fBase, paint); in drawOrig() 128 canvas->clipRect(fBase, true); in drawPathsOped() 194 SkRect fBase; member in skiagm::SimpleClipGM
|
/third_party/flutter/skia/src/sksl/ |
D | SkSLCFGGenerator.cpp | 134 return this->tryRemoveLValueBefore(iter, ((Swizzle*) lvalue)->fBase.get()); in tryRemoveLValueBefore() 136 return this->tryRemoveLValueBefore(iter, ((FieldAccess*) lvalue)->fBase.get()); in tryRemoveLValueBefore() 138 if (!this->tryRemoveLValueBefore(iter, ((IndexExpression*) lvalue)->fBase.get())) { in tryRemoveLValueBefore() 181 if (!this->tryRemoveExpressionBefore(iter, f->fBase.get())) { in tryRemoveExpression() 189 if (!this->tryRemoveExpressionBefore(iter, s->fBase.get())) { in tryRemoveExpression() 197 if (!this->tryRemoveExpressionBefore(iter, idx->fBase.get())) { in tryRemoveExpression() 372 this->addExpression(cfg, &((FieldAccess*) e->get())->fBase, constantPropagate); in addExpression() 377 this->addExpression(cfg, &((IndexExpression*) e->get())->fBase, constantPropagate); in addExpression() 397 this->addExpression(cfg, &((Swizzle*) e->get())->fBase, constantPropagate); in addExpression() 440 this->addLValue(cfg, &((FieldAccess&) **e).fBase); in addLValue() [all …]
|
/third_party/skia/modules/particles/include/ |
D | SkReflected.h | 50 const Type* fBase; member 55 const Type* base = fBase; in isDerivedFrom() 60 base = base->fBase; in isDerivedFrom()
|
/third_party/flutter/skia/samplecode/ |
D | SampleRegion.cpp | 158 fBase.set(100, 100, 150, 150); in RegionView() 159 fRect = fBase; in RegionView() 166 rgn->setRect(fBase); in build_base_rgn() 167 SkIRect r = fBase; in build_base_rgn() 341 SkIRect fBase, fRect; member in RegionView
|
/third_party/flutter/skia/modules/particles/include/ |
D | SkReflected.h | 50 const Type* fBase; member 55 const Type* base = fBase; in isDerivedFrom() 60 base = base->fBase; in isDerivedFrom()
|
/third_party/skia/src/core/ |
D | SkReadBuffer.h | 61 size_t size() const { return fStop - fBase; } in size() 62 size_t offset() const { return fCurr - fBase; } in offset() 221 const char* fBase = nullptr; // beginning of buffer variable
|
/third_party/skia/src/gpu/tessellate/ |
D | PathCurveTessellator.cpp | 238 flushState->draw(chunk.fCount * 4, chunk.fBase * 4); in drawTessellated() 249 flushState->drawIndexedInstanced(fixedIndexCount, 0, chunk.fCount, chunk.fBase, 0); in drawFixedCount() 257 flushState->drawInstanced(chunk.fCount, chunk.fBase, 4, 0); in drawHullInstances()
|
/third_party/skia/tests/ |
D | GrStyledShapeTest.cpp | 527 : fBase(new GrStyledShape(geo.makeShape(paint))) { in TestCase() 533 : fBase(new GrStyledShape(shapeArgs...)) { in TestCase() 538 : fBase(new GrStyledShape(shape)) { in TestCase() 559 const GrStyledShape& baseShape() const { return *fBase; } in baseShape() 593 *fAppliedPE = fBase->applyStyle(GrStyle::Apply::kPathEffectOnly, scale); in init() 596 *fAppliedFull = fBase->applyStyle(GrStyle::Apply::kPathEffectAndStrokeRec, scale); in init() 598 make_key(&fBaseKey, *fBase); in init() 605 check_original_path_ids(r, *fBase, *fAppliedPE, *fAppliedPEThenStroke, *fAppliedFull); in init() 627 fBase->asPath(&path); in init() 628 REPORTER_ASSERT(r, path.isEmpty() == fBase->isEmpty()); in init() [all …]
|
/third_party/flutter/skia/tests/ |
D | GrShapeTest.cpp | 520 : fBase(new GrShape(geo.makeShape(paint))) { in TestCase() 525 TestCase(skiatest::Reporter* r, ShapeArgs... shapeArgs) : fBase(new GrShape(shapeArgs...)) { in TestCase() 530 : fBase(new GrShape(shape)) { in TestCase() 551 const GrShape& baseShape() const { return *fBase; } in baseShape() 584 *fAppliedPE = fBase->applyStyle(GrStyle::Apply::kPathEffectOnly, scale); in init() 587 *fAppliedFull = fBase->applyStyle(GrStyle::Apply::kPathEffectAndStrokeRec, scale); in init() 589 make_key(&fBaseKey, *fBase); in init() 596 check_original_path_ids(r, *fBase, *fAppliedPE, *fAppliedPEThenStroke, *fAppliedFull); in init() 618 fBase->asPath(&path); in init() 619 REPORTER_ASSERT(r, path.isEmpty() == fBase->isEmpty()); in init() [all …]
|