Home
last modified time | relevance | path

Searched refs:RectHeightStyle (Results 1 – 15 of 15) sorted by relevance

/external/skia/modules/canvaskit/
Dparagraph_bindings_gen.cpp68 enum_<para::RectHeightStyle>("RectHeightStyle") in EMSCRIPTEN_BINDINGS()
69 .value("Tight", para::RectHeightStyle::kTight) in EMSCRIPTEN_BINDINGS()
70 .value("Max", para::RectHeightStyle::kMax) in EMSCRIPTEN_BINDINGS()
71 .value("IncludeLineSpacingMiddle", para::RectHeightStyle::kIncludeLineSpacingMiddle) in EMSCRIPTEN_BINDINGS()
72 .value("IncludeLineSpacingTop", para::RectHeightStyle::kIncludeLineSpacingTop) in EMSCRIPTEN_BINDINGS()
73 .value("IncludeLineSpacingBottom", para::RectHeightStyle::kIncludeLineSpacingBottom) in EMSCRIPTEN_BINDINGS()
74 .value("Strut", para::RectHeightStyle::kStrut); in EMSCRIPTEN_BINDINGS()
Dexterns.js910 RectHeightStyle: { property
Dparagraph_bindings.cpp281 para::RectHeightStyle heightStyle, in GetRectsForRange()
DCHANGELOG.md15 - Add `Strut` as a `RectHeightStyle` enum.
/external/skia/modules/skparagraph/tests/
DSkParagraphTest.cpp282 RectHeightStyle rect_height_style = RectHeightStyle::kTight; in DEF_TEST()
365 RectHeightStyle rect_height_style = RectHeightStyle::kTight; in DEF_TEST()
421 RectHeightStyle rect_height_style = RectHeightStyle::kTight; in DEF_TEST()
477 RectHeightStyle rect_height_style = RectHeightStyle::kTight; in DEF_TEST()
524 RectHeightStyle rect_height_style = RectHeightStyle::kTight; in DEF_TEST()
578 RectHeightStyle rect_height_style = RectHeightStyle::kTight; in DEF_TEST()
632 RectHeightStyle rect_height_style = RectHeightStyle::kTight; in DEF_TEST()
685 RectHeightStyle rect_height_style = RectHeightStyle::kTight; in DEF_TEST()
803 RectHeightStyle rect_height_style = RectHeightStyle::kTight; in DEF_TEST()
926 RectHeightStyle rect_height_style = RectHeightStyle::kMax; in DEF_TEST()
[all …]
/external/skia/modules/canvaskit/npm_build/types/
Dindex.d.ts502 readonly RectHeightStyle: RectHeightStyleEnumValues; property
851 getRectsForRange(start: number, end: number, hStyle: RectHeightStyle,
3756 export type RectHeightStyle = EmbindEnumEntity; alias
3967 Tight: RectHeightStyle;
3968 Max: RectHeightStyle;
3969 IncludeLineSpacingMiddle: RectHeightStyle;
3970 IncludeLineSpacingTop: RectHeightStyle;
3971 IncludeLineSpacingBottom: RectHeightStyle;
3972 Strut: RectHeightStyle;
Dcanvaskit-wasm-tests.ts510 const k = p.getRectsForRange(2, 10, CK.RectHeightStyle.Max, // $ExpectType Float32Array
/external/skia/modules/skparagraph/include/
DParagraph.h46 RectHeightStyle rectHeightStyle,
DDartTypes.h17 enum class RectHeightStyle { enum
/external/skia/modules/skparagraph/src/
DTextLine.cpp956 RectHeightStyle rectHeightStyle, in getRectsForRange()
983 case RectHeightStyle::kMax: in getRectsForRange()
989 case RectHeightStyle::kIncludeLineSpacingTop: { in getRectsForRange()
996 case RectHeightStyle::kIncludeLineSpacingMiddle: { in getRectsForRange()
1002 case RectHeightStyle::kIncludeLineSpacingBottom: { in getRectsForRange()
1010 case RectHeightStyle::kStrut: { in getRectsForRange()
1021 case RectHeightStyle::kTight: { in getRectsForRange()
DTextLine.h101 …void getRectsForRange(TextRange textRange, RectHeightStyle rectHeightStyle, RectWidthStyle rectWid…
DParagraphImpl.h119 RectHeightStyle rectHeightStyle,
DParagraphImpl.cpp657 RectHeightStyle rectHeightStyle, in getRectsForRange()
/external/skia/modules/skparagraph/samples/
DSampleParagraph.cpp1174 RectHeightStyle rect_height_style = RectHeightStyle::kTight; in drawText()
1294 … auto rects = paragraph->getRectsForRange(7, 9, RectHeightStyle::kTight, RectWidthStyle::kTight); in onDrawContent()
1305 …auto rects = paragraph->getRectsForRange(query.fX, query.fY, RectHeightStyle::kTight, RectWidthSty… in onDrawContent()
1315 …auto miss = paragraph->getRectsForRange(query.fX, query.fY, RectHeightStyle::kTight, RectWidthStyl… in onDrawContent()
1351 …auto result = paragraph->getRectsForRange(65, 66, RectHeightStyle::kTight, RectWidthStyle::kTight); in onDrawContent()
2088 … auto boxes = paragraph->getRectsForRange(0, 100, RectHeightStyle::kTight, RectWidthStyle::kTight); in onDrawContent()
2192 … auto f1 = paragraph->getRectsForRange(0, 1, RectHeightStyle::kTight, RectWidthStyle::kTight); in onDrawContent()
2201 … auto f2 = paragraph->getRectsForRange(1, 2, RectHeightStyle::kTight, RectWidthStyle::kTight); in onDrawContent()
2210 … auto fi = paragraph->getRectsForRange(2, 3, RectHeightStyle::kTight, RectWidthStyle::kTight); in onDrawContent()
2280 …auto results = paragraph->getRectsForRange(rect.first, rect.second, RectHeightStyle::kTight, RectW… in onDrawContent()
[all …]
/external/skia/modules/canvaskit/tests/
Dparagraph.spec.js431 const hStyle = CanvasKit.RectHeightStyle.Max;
509 expect(CanvasKit.RectHeightStyle.Strut).toBeTruthy();