Home
last modified time | relevance | path

Searched refs:familiesSize (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkgraphics2d/
H A D_o_h___drawing___strut_style.md28 | size_t [familiesSize](#familiessize) | 字体家族的数量 |
45 ### familiesSize subsection
48 size_t OH_Drawing_StrutStyle::familiesSize
/ohos5.0/docs/en/application-dev/reference/apis-arkgraphics2d/
H A D_o_h___drawing___strut_style.md28 | size_t [familiesSize](#familiessize) | Number of font families. |
45 ### familiesSize subsection
48 size_t OH_Drawing_StrutStyle::familiesSize
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/src/
H A Ddrawing_text_typography.cpp3408 style, strutstyle->familiesSize, const_cast<const char**>(strutstyle->families)); in OH_Drawing_SetTypographyStyleTextStrutStyle()
3421 if (strutstyle->familiesSize == 0 || strutstyle->families == nullptr) { in OH_Drawing_TypographyStyleDestroyStrutStyle()
3426 for (size_t i = 0; i < strutstyle->familiesSize; i++) { in OH_Drawing_TypographyStyleDestroyStrutStyle()
3454 strutstyle->familiesSize = typographyStyle->lineStyleFontFamilies.size(); in OH_Drawing_TypographyStyleGetStrutStyle()
3455 if (strutstyle->familiesSize == 0) { in OH_Drawing_TypographyStyleGetStrutStyle()
3459 strutstyle->families = new (std::nothrow) char* [strutstyle->familiesSize]; in OH_Drawing_TypographyStyleGetStrutStyle()
3464 for (size_t i = 0; i < strutstyle->familiesSize; i++) { in OH_Drawing_TypographyStyleGetStrutStyle()
3495 from->forceStrutHeight == to->forceStrutHeight && from->familiesSize == to->familiesSize) { in OH_Drawing_TypographyStyleStrutStyleEquals()
3496 for (size_t i = 0; i < from->familiesSize; i++) { in OH_Drawing_TypographyStyleStrutStyleEquals()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/include/
H A Ddrawing_text_typography.h502 size_t familiesSize; member
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/ndk/
H A Ddrawing_text_typography_test.cpp2240 strutstyle->familiesSize = 4;
2241 strutstyle->families = (char**)malloc(strutstyle->familiesSize*sizeof(char*));
2243 for (int i = 0; i < strutstyle->familiesSize; i++) {