HomeSort by relevance Sort by last modified time
    Searched refs:asADash (Results 1 - 15 of 15) sorted by null

  /external/skia/tests/
AsADashTest.cpp 18 SkPathEffect::DashType dashType = pe->asADash(&info);
27 SkPathEffect::DashType dashType = pe->asADash(nullptr);
40 SkPathEffect::DashType dashType = pe->asADash(&info);
45 // Since it is a kDash_DashType, allocate space for the intervals and recall asADash
48 pe->asADash(&info);
  /external/skia/include/effects/
SkDashPathEffect.h 48 DashType asADash(DashInfo* info) const override;
  /external/skia/include/core/
SkPathEffect.h 120 * If the PathEffect can be represented as a dash pattern, asADash will return kDash_DashType
124 * info. Thus the general approach will be call asADash once with default info to get DashType
126 * in info, then call asADash again with the same info and the intervals will get copied in.
146 virtual DashType asADash(DashInfo* info) const;
  /external/skia/include/gpu/
GrTestUtils.h 70 DashType asADash(DashInfo* info) const override;
  /external/skia/src/gpu/
GrStyle.cpp 114 if (SkPathEffect::kDash_DashType == pe->asADash(&info)) {
121 pe->asADash(&info);
GrTestUtils.cpp 283 SkPathEffect::DashType TestDashPathEffect::asADash(DashInfo* info) const {
  /external/skia/tools/lua/
count_dashes.lua 28 if t.verb == "drawPath" and pe:asADash() then
scrape_dashing_full.lua 67 local de = pe:asADash()
  /external/skia/src/core/
SkPictureCommon.h 97 SkPathEffect::DashType dashType = effect->asADash(&info);
SkPictureContentInfo.cpp 50 SkPathEffect::DashType dashType = paint.getPathEffect()->asADash(&info);
SkPathEffect.cpp 24 SkPathEffect::DashType SkPathEffect::asADash(DashInfo* info) const {
  /external/skia/src/effects/
SkDashPathEffect.cpp 354 SkPathEffect::DashType SkDashPathEffect::asADash(DashInfo* info) const {
  /external/skia/src/gpu/text/
GrStencilAndCoverTextContext.cpp 63 if (pe->asADash(nullptr) != SkPathEffect::kDash_DashType) {
  /external/skia/src/utils/
SkLua.cpp     [all...]
  /external/skia/tools/debugger/
SkDrawCommand.cpp     [all...]

Completed in 517 milliseconds