Home
last modified time | relevance | path

Searched refs:ClipPath (Results 1 – 24 of 24) sorted by relevance

/external/pdfium/core/fpdfapi/page/
Dcpdf_contentparser.cpp68 CPDF_Path ClipPath; in CPDF_ContentParser() local
71 ClipPath.Emplace(); in CPDF_ContentParser()
72 ClipPath.AppendFloatRect(form_bbox); in CPDF_ContentParser()
73 ClipPath.Transform(form_matrix); in CPDF_ContentParser()
75 ClipPath.Transform(*pParentMatrix); in CPDF_ContentParser()
89 if (ClipPath.HasRef()) { in CPDF_ContentParser()
90 m_pParser->GetCurStates()->m_ClipPath.AppendPath(ClipPath, FXFILL_WINDING, in CPDF_ContentParser()
220 CPDF_Path ClipPath = pObj->m_ClipPath.GetPath(0); in CheckClip() local
221 if (!ClipPath.IsRect() || pObj->IsShading()) in CheckClip()
224 CFX_PointF point0 = ClipPath.GetPoint(0); in CheckClip()
[all …]
/external/skqp/experimental/pvg/
Ddraw_msg.proto204 message ClipPath { message
257 ClipPath clip_path = 6;
/external/skia/experimental/pvg/
Ddraw_msg.proto204 message ClipPath { message
257 ClipPath clip_path = 6;
/external/skia/src/core/
DSkEdgeClipper.h33 static void ClipPath(const SkPath& path, const SkRect& clip, bool canCullToTheRight,
DSkPictureCommon.h65 void operator()(const SkRecords::ClipPath& op) { in operator()
DSkRecords.h55 M(ClipPath) \
206 RECORD(ClipPath, 0,
DSkRecordDraw.cpp102 DRAW(ClipPath, clipPath(r.path, r.opAA.op(), r.opAA.aa()));
280 void trackBounds(const ClipPath&) { this->pushControl(); } in trackBounds() argument
DSkEdgeBuilder.cpp302 SkEdgeClipper::ClipPath(path, clip, canCullToTheRight, in build()
DSkRecorder.cpp374 this->append<SkRecords::ClipPath>(path, opAA); in onClipPath()
DSkEdgeClipper.cpp563 void SkEdgeClipper::ClipPath(const SkPath& path, const SkRect& clip, bool canCullToTheRight, in ClipPath() function in SkEdgeClipper
DSkPath.cpp3714 SkEdgeClipper::ClipPath(rotated, clip, false, in clip()
/external/skqp/src/core/
DSkPictureCommon.h65 void operator()(const SkRecords::ClipPath& op) { in operator()
DSkRecords.h50 M(ClipPath) \
206 RECORD(ClipPath, 0,
DSkLiteDL.cpp54 M(ClipPath) M(ClipRect) M(ClipRRect) M(ClipRegion) \
141 struct ClipPath final : Op { struct
142 static const auto kType = Type::ClipPath; argument
143 ClipPath(const SkPath& path, SkClipOp op, bool aa) : path(path), op(op), aa(aa) {} in ClipPath() function
515 this->push<ClipPath>(0, path, op, aa); in clipPath()
DSkRecordDraw.cpp95 DRAW(ClipPath, clipPath(r.path, r.opAA.op(), r.opAA.aa()));
261 void trackBounds(const ClipPath&) { this->pushControl(); } in trackBounds() argument
DSkRecorder.cpp381 this->append<SkRecords::ClipPath>(path, opAA); in onClipPath()
/external/pdfium/core/fpdfapi/render/
Dcpdf_renderstatus.cpp507 void CPDF_RenderStatus::ProcessClipPath(const CPDF_ClipPath& ClipPath, in ProcessClipPath() argument
509 if (!ClipPath.HasRef()) { in ProcessClipPath()
516 if (m_LastClipPath == ClipPath) in ProcessClipPath()
519 m_LastClipPath = ClipPath; in ProcessClipPath()
521 for (size_t i = 0; i < ClipPath.GetPathCount(); ++i) { in ProcessClipPath()
522 const CFX_PathData* pPathData = ClipPath.GetPath(i).GetObject(); in ProcessClipPath()
532 ClipPath.GetClipType(i)); in ProcessClipPath()
536 if (ClipPath.GetTextCount() == 0) in ProcessClipPath()
545 for (size_t i = 0; i < ClipPath.GetTextCount(); ++i) { in ProcessClipPath()
546 CPDF_TextObject* pText = ClipPath.GetText(i); in ProcessClipPath()
Dcpdf_renderstatus.h77 void ProcessClipPath(const CPDF_ClipPath& ClipPath,
/external/skia/modules/svg/src/
DSkSVGNode.cpp96 return PARSE_AND_SET( "clip-path" , ClipPath) in parseAndSetAttribute()
/external/skia/modules/svg/include/
DSkSVGNode.h138 SVG_PRES_ATTR(ClipPath , SkSVGFuncIRI , false)
/external/pdfium/fpdfsdk/
Dfpdf_transformpage_embeddertest.cpp356 TEST_F(FPDFTransformEmbedderTest, ClipPath) { in TEST_F() argument
Dfpdf_edit_embeddertest.cpp420 TEST_F(FPDFEditEmbedderTest, ClipPath) { in TEST_F() argument
/external/skia/samplecode/
DSampleClip.cpp230 SkEdgeClipper::ClipPath(rotated, clip, false, in clip()
/external/skqp/tests/
DCanvasTest.cpp401 SIMPLE_TEST_STEP(ClipPath, clipPath(d.fPath));