Searched refs:RectHeightStyle (Results 1 – 15 of 15) sorted by relevance
/external/skia/modules/canvaskit/ |
D | paragraph_bindings_gen.cpp | 68 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()
|
D | externs.js | 910 RectHeightStyle: { property
|
D | paragraph_bindings.cpp | 281 para::RectHeightStyle heightStyle, in GetRectsForRange()
|
D | CHANGELOG.md | 15 - Add `Strut` as a `RectHeightStyle` enum.
|
/external/skia/modules/skparagraph/tests/ |
D | SkParagraphTest.cpp | 282 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/ |
D | index.d.ts | 502 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;
|
D | canvaskit-wasm-tests.ts | 510 const k = p.getRectsForRange(2, 10, CK.RectHeightStyle.Max, // $ExpectType Float32Array
|
/external/skia/modules/skparagraph/include/ |
D | Paragraph.h | 46 RectHeightStyle rectHeightStyle,
|
D | DartTypes.h | 17 enum class RectHeightStyle { enum
|
/external/skia/modules/skparagraph/src/ |
D | TextLine.cpp | 956 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()
|
D | TextLine.h | 101 …void getRectsForRange(TextRange textRange, RectHeightStyle rectHeightStyle, RectWidthStyle rectWid…
|
D | ParagraphImpl.h | 119 RectHeightStyle rectHeightStyle,
|
D | ParagraphImpl.cpp | 657 RectHeightStyle rectHeightStyle, in getRectsForRange()
|
/external/skia/modules/skparagraph/samples/ |
D | SampleParagraph.cpp | 1174 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/ |
D | paragraph.spec.js | 431 const hStyle = CanvasKit.RectHeightStyle.Max; 509 expect(CanvasKit.RectHeightStyle.Strut).toBeTruthy();
|