Home
last modified time | relevance | path

Searched refs:kHorizontal (Results 1 – 14 of 14) sorted by relevance

/third_party/skia/modules/svg/src/
DSkSVGEllipse.cpp24 const auto cx = lctx.resolve(fCx, SkSVGLengthContext::LengthType::kHorizontal); in resolve()
26 const auto rx = lctx.resolve(fRx, SkSVGLengthContext::LengthType::kHorizontal); in resolve()
DSkSVGLinearGradient.cpp32 const auto x1 = lctx.resolve(fX1, SkSVGLengthContext::LengthType::kHorizontal); in onMakeShader()
34 const auto x2 = lctx.resolve(fX2, SkSVGLengthContext::LengthType::kHorizontal); in onMakeShader()
DSkSVGLine.cpp25 SkPoint::Make(lctx.resolve(fX1, SkSVGLengthContext::LengthType::kHorizontal), in resolve()
27 SkPoint::Make(lctx.resolve(fX2, SkSVGLengthContext::LengthType::kHorizontal), in resolve()
DSkSVGRadialGradient.cpp35 lctx.resolve(fCx, SkSVGLengthContext::LengthType::kHorizontal), in onMakeShader()
38 fFx.isValid() ? lctx.resolve(*fFx, SkSVGLengthContext::LengthType::kHorizontal) in onMakeShader()
DSkSVGRenderContext.cpp26 case SkSVGLengthContext::LengthType::kHorizontal: in length_size_for_type()
78 this->resolveForSVG(x, SkSVGLengthContext::LengthType::kHorizontal), in resolveRectForSVG()
80 this->resolveForSVG(w, SkSVGLengthContext::LengthType::kHorizontal), in resolveRectForSVG()
111 this->resolve(x, SkSVGLengthContext::LengthType::kHorizontal), in resolveRect()
113 this->resolve(w, SkSVGLengthContext::LengthType::kHorizontal), in resolveRect()
DSkSVGUse.cpp68 const SkScalar x = lctx.resolve(fX, SkSVGLengthContext::LengthType::kHorizontal); in onObjectBoundingBox()
DSkSVGCircle.cpp23 const auto cx = lctx.resolve(fCx, SkSVGLengthContext::LengthType::kHorizontal); in resolve()
DSkSVGSVG.cpp93 return SkSize::Make(lctx.resolveForSVG(fWidth, SkSVGLengthContext::LengthType::kHorizontal), in intrinsicSize()
DSkSVGRect.cpp56 const auto rx = std::min(lctx.resolve(rxlen, SkSVGLengthContext::LengthType::kHorizontal), in resolve()
DSkSVGText.cpp123 , fX(ResolveLengths(lctx, txt.getX(), SkSVGLengthContext::LengthType::kHorizontal)) in ScopedPosResolver()
125 , fDx(ResolveLengths(lctx, txt.getDx(), SkSVGLengthContext::LengthType::kHorizontal)) in ScopedPosResolver()
245 .resolve(offset, SkSVGLengthContext::LengthType::kHorizontal); in SkSVGTextContext()
/third_party/cef/libcef/browser/views/
Dbox_layout_impl.cc57 settings_.horizontal ? views::BoxLayout::Orientation::kHorizontal in CreateLayout()
/third_party/skia/modules/svg/include/
DSkSVGRenderContext.h33 kHorizontal, enumerator
/third_party/skia/src/gpu/geometry/
DGrTriangulator.cpp80 return fDirection == Direction::kHorizontal ? sweep_lt_horiz(a, b) : sweep_lt_vert(a, b); in sweep_lt()
1022 if (c.fDirection == Comparator::Direction::kHorizontal) { in clamp()
1196 if (c.fDirection == Comparator::Direction::kHorizontal) { in SortedMerge()
1491 if (c.fDirection == Comparator::Direction::kHorizontal) { in SortMesh()
1506 Comparator c(pathBounds.width() > pathBounds.height() ? Comparator::Direction::kHorizontal in contoursToPolys()
DGrTriangulator.h494 enum class Direction { kVertical, kHorizontal }; enumerator