Home
last modified time | relevance | path

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

/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/drawing_ets/ets/pages/
H A Dcasefactory.ts16 import {TestBase, StyleType} from './testbase';
73 ['pathisclosed', () => { return new PathIsClosed(StyleType.DRAW_STYLE_COMPLEX); }],
75 ['pathgetmatrix', () => { return new PathGetMatrix(StyleType.DRAW_STYLE_COMPLEX); }],
123 ['path_isClosed', () => { return new PathIsClosed(StyleType.DRAW_STYLE_COMPLEX); }],
125 ['path_getMatrix', () => { return new PathGetMatrix(StyleType.DRAW_STYLE_COMPLEX); }],
135 ['font_gettextskewx', () => { return new FontGetSkewX(StyleType.DRAW_STYLE_COMPLEX); }],
136 ['font_getscalex', () => { return new FontGetScaleX(StyleType.DRAW_STYLE_COMPLEX); }],
137 ['font_gethinting', () => { return new FontGetHinting(StyleType.DRAW_STYLE_COMPLEX); }],
138 ['font_getedging', () => { return new FontGetEdging(StyleType.DRAW_STYLE_COMPLEX); }],
144 ['font_getscalex', () => { return new FontGetScaleX(StyleType.DRAW_STYLE_COMPLEX); }],
[all …]
H A Dtestbase.ts35 this.styleType_ = StyleType.DRAW_STYLE_NONE;
192 public StyleSettings(canvas: drawing.Canvas, styleType: StyleType) {
193 if (styleType == StyleType.DRAW_STYLE_COMPLEX) {
198 } else if (styleType == StyleType.DRAW_STYLE_PERFORMANCE_TEST) {
292 export enum StyleType { //公共的pen,brush,filter等配置
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/drawing_ets/ets/testcase/interface/
H A Dperformancetest.ts18 import {TestBase, StyleType} from '../../pages/testbase';
23 public constructor(styleType: number = StyleType.DRAW_STYLE_NONE){
35 public constructor(styleType: number = StyleType.DRAW_STYLE_NONE){
47 public constructor(styleType: number = StyleType.DRAW_STYLE_NONE){
59 public constructor(styleType: number = StyleType.DRAW_STYLE_NONE){
73 public constructor(styleType: number = StyleType.DRAW_STYLE_NONE){
89 public constructor(styleType: number = StyleType.DRAW_STYLE_NONE){
H A Dcanvastest.ts38 public constructor(styleType: number = StyleType.DRAW_STYLE_NONE){
116 public constructor(styleType: number = StyleType.DRAW_STYLE_NONE){
177 public constructor(styleType: number = StyleType.DRAW_STYLE_NONE){
313 public constructor(styleType: number = StyleType.DRAW_STYLE_NONE){
378 public constructor(styleType: number = StyleType.DRAW_STYLE_NONE) {
445 public constructor(styleType: number = StyleType.DRAW_STYLE_NONE) {
541 public constructor(styleType: number = StyleType.DRAW_STYLE_NONE) {
650 public constructor(styleType: number = StyleType.DRAW_STYLE_NONE){
715 public constructor(styleType: number = StyleType.DRAW_STYLE_NONE) {
1258 public constructor(styleType: number = StyleType.DRAW_STYLE_NONE){
[all …]
H A Dtextblobtest.ts18 import {TestBase, StyleType} from '../../pages/testbase';
H A Dpathtest.ts17 import {TestBase, StyleType} from '../../pages/testbase';
H A Dmatrixtest.ts19 import { TestBase, TestFunctionStyleType, StyleType } from '../../pages/testbase';
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/export/rosen_text/
H A Dtypography_types.h112 enum StyleType { enum
H A Dtext_style.h113 bool MatchOneAttribute(StyleType styleType, const TextStyle &rhs) const;
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/adapter/common/
H A Dtext_style.cpp161 bool TextStyle::MatchOneAttribute(StyleType styleType, const TextStyle &rhs) const in MatchOneAttribute()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/src/
H A Ddrawing_text_typography.cpp3361 …return convertStyle->MatchOneAttribute(static_cast<StyleType>(textStyleType), *convertComparedStyl… in OH_Drawing_TextStyleIsAttributeMatched()