Home
last modified time | relevance | path

Searched refs:PathData (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/
DProfile.cpp31 for (const auto &PathData : Block.PathData) in Profile() local
32 B.PathData.push_back({internPath(cantFail(O.expandPath(PathData.first))), in Profile()
33 PathData.second}); in Profile()
122 if (B.PathData.empty()) in addBlock()
197 using PathDataVector = decltype(Profile::Block::PathData); in mergeProfilesByThread()
206 for (const auto &PathAndData : Block.PathData) { in mergeProfilesByThread()
235 PathDataMap PathData; in mergeProfilesByStack() local
236 using PathDataVector = decltype(Profile::Block::PathData); in mergeProfilesByStack()
239 for (const auto &PathAndData : Block.PathData) { in mergeProfilesByStack()
246 std::tie(PathDataIt, Inserted) = PathData.insert({NewPathID, Data}); in mergeProfilesByStack()
[all …]
/third_party/skia/experimental/pvg/
Ddraw_msg.proto120 message PathData { message
128 PathData data = 2;
207 PathData data = 2;
229 PathData data = 2;
/third_party/skia/modules/svg/src/
DSkSVGTextPriv.h157 class PathData {
159 PathData(const SkSVGRenderContext&, const SkSVGTextPath&);
189 std::unique_ptr<PathData> fPathData;
DSkSVGText.cpp236 fPathData = std::make_unique<PathData>(ctx, *tpath); in SkSVGTextContext()
352 SkSVGTextContext::PathData::PathData(const SkSVGRenderContext& ctx, const SkSVGTextPath& tpath) in PathData() function in SkSVGTextContext::PathData
366 SkMatrix SkSVGTextContext::PathData::getMatrixAt(float offset) const { in getMatrixAt()
/third_party/skia/src/gpu/ops/
DAALinearizingConvexPathRenderer.cpp113 PathData{viewMatrix, path, color, strokeWidth, miterLimit, style, join}); in AAFlatteningConvexPathOp()
224 const PathData& args = fPaths[i]; in onPrepareDraws()
320 struct PathData { struct in skgpu::v1::__anon5430f69f0111::AAFlatteningConvexPathOp
330 SkSTArray<1, PathData, true> fPaths;
DDefaultPathRenderer.cpp429 fPaths.emplace_back(PathData{path, tolerance}); in DefaultPathOp()
501 const PathData& args = fPaths[i]; in onPrepareDraws()
565 struct PathData { struct in __anon4f9c9cd30111::DefaultPathOp
570 SkSTArray<1, PathData, true> fPaths;
DAAConvexPathRenderer.cpp703 fPaths.emplace_back(PathData{viewMatrix, path, color}); in AAConvexPathOp()
770 const PathData& args = fPaths[i]; in onPrepareDraws()
877 struct PathData { struct in skgpu::v1::__anon9ef542430111::AAConvexPathOp
884 SkSTArray<1, PathData, true> fPaths;
DAAHairLinePathRenderer.cpp788 fPaths.emplace_back(PathData{viewMatrix, path, devClipBounds, capLength}); in AAHairlineOp()
928 struct PathData { struct in __anonbc7bd1bc0111::AAHairlineOp
935 SkSTArray<1, PathData, true> fPaths;
1161 const PathData& args = fPaths[i]; in onPrepareDraws()
/third_party/skia/src/core/
DSkGlyph.h370 struct PathData { struct
395 PathData* fPathData = nullptr; argument
DSkGlyph.cpp147 fPathData = alloc->make<SkGlyph::PathData>(); in installPath()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/
DProfile.h64 std::vector<std::pair<PathID, Data>> PathData; member