/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/commonattrs/ |
H A D | commonattrs_align_test.cpp | 24 int32_t align = ARKUI_ALIGNMENT_TOP_START; in TestCommonAttrsAlign001() local 25 ArkUI_NumberValue value[] = {{.i32 = align}}; in TestCommonAttrsAlign001() 29 ASSERT_EQ(nodeAPI->getAttribute(button, NODE_ALIGNMENT)->value[PARAM_0].u32, align); in TestCommonAttrsAlign001() 36 int32_t align = ARKUI_ALIGNMENT_TOP; in TestCommonAttrsAlign002() local 37 ArkUI_NumberValue value[] = {{.i32 = align}}; in TestCommonAttrsAlign002() 41 ASSERT_EQ(nodeAPI->getAttribute(button, NODE_ALIGNMENT)->value[PARAM_0].u32, align); in TestCommonAttrsAlign002() 48 int32_t align = ARKUI_ALIGNMENT_TOP_END; in TestCommonAttrsAlign003() local 49 ArkUI_NumberValue value[] = {{.i32 = align}}; in TestCommonAttrsAlign003() 53 ASSERT_EQ(nodeAPI->getAttribute(button, NODE_ALIGNMENT)->value[PARAM_0].u32, align); in TestCommonAttrsAlign003() 60 int32_t align in TestCommonAttrsAlign004() local 72 int32_t align = ARKUI_ALIGNMENT_CENTER; TestCommonAttrsAlign005() local 84 int32_t align = ARKUI_ALIGNMENT_END; TestCommonAttrsAlign006() local 96 int32_t align = ARKUI_ALIGNMENT_BOTTOM_START; TestCommonAttrsAlign007() local 108 int32_t align = ARKUI_ALIGNMENT_BOTTOM; TestCommonAttrsAlign008() local 120 int32_t align = ARKUI_ALIGNMENT_BOTTOM_END; TestCommonAttrsAlign009() local 132 int32_t align = ARKUI_ALIGNMENT_CENTER; TestCommonAttrsAlign010() local 140 int32_t align = ENUM_ABNORMAL_VALUE; TestCommonAttrsAlign011() local [all...] |
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/customcomponent/ |
H A D | customcomponent_align_test.cpp | 24 int32_t align = ARKUI_ALIGNMENT_TOP_START; in TestCustomComponentAlign001() local 25 ArkUI_NumberValue value[] = {{.i32 = align}}; in TestCustomComponentAlign001() 29 ASSERT_EQ(nodeAPI->getAttribute(custom, NODE_ALIGNMENT)->value[PARAM_0].u32, align); in TestCustomComponentAlign001() 36 int32_t align = ARKUI_ALIGNMENT_TOP; in TestCustomComponentAlign002() local 37 ArkUI_NumberValue value[] = {{.i32 = align}}; in TestCustomComponentAlign002() 41 ASSERT_EQ(nodeAPI->getAttribute(custom, NODE_ALIGNMENT)->value[PARAM_0].u32, align); in TestCustomComponentAlign002() 48 int32_t align = ARKUI_ALIGNMENT_TOP_END; in TestCustomComponentAlign003() local 49 ArkUI_NumberValue value[] = {{.i32 = align}}; in TestCustomComponentAlign003() 53 ASSERT_EQ(nodeAPI->getAttribute(custom, NODE_ALIGNMENT)->value[PARAM_0].u32, align); in TestCustomComponentAlign003() 60 int32_t align in TestCustomComponentAlign004() local 72 int32_t align = ARKUI_ALIGNMENT_CENTER; TestCustomComponentAlign005() local 84 int32_t align = ARKUI_ALIGNMENT_END; TestCustomComponentAlign006() local 96 int32_t align = ARKUI_ALIGNMENT_BOTTOM_START; TestCustomComponentAlign007() local 108 int32_t align = ARKUI_ALIGNMENT_BOTTOM; TestCustomComponentAlign008() local 120 int32_t align = ARKUI_ALIGNMENT_BOTTOM_END; TestCustomComponentAlign009() local 132 int32_t align = ARKUI_ALIGNMENT_CENTER; TestCustomComponentAlign010() local 140 int32_t align = ENUM_ABNORMAL_VALUE; TestCustomComponentAlign011() local [all...] |
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/text/ |
H A D | text_align_test.cpp | 23 int32_t align = ARKUI_ALIGNMENT_TOP_START; in TestTextAlign001() local 24 ArkUI_NumberValue value[] = {{.i32 = align}}; in TestTextAlign001() 28 ASSERT_EQ(nodeAPI->getAttribute(text, NODE_ALIGNMENT)->value[PARAM_0].i32, align); in TestTextAlign001() 35 int32_t align = ARKUI_ALIGNMENT_TOP; in TestTextAlign002() local 36 ArkUI_NumberValue value[] = {{.i32 = align}}; in TestTextAlign002() 40 ASSERT_EQ(nodeAPI->getAttribute(text, NODE_ALIGNMENT)->value[PARAM_0].i32, align); in TestTextAlign002() 47 int32_t align = ARKUI_ALIGNMENT_TOP_END; in TestTextAlign003() local 48 ArkUI_NumberValue value[] = {{.i32 = align}}; in TestTextAlign003() 52 ASSERT_EQ(nodeAPI->getAttribute(text, NODE_ALIGNMENT)->value[PARAM_0].i32, align); in TestTextAlign003() 59 int32_t align in TestTextAlign004() local 71 int32_t align = ARKUI_ALIGNMENT_CENTER; TestTextAlign005() local 83 int32_t align = ARKUI_ALIGNMENT_END; TestTextAlign006() local 95 int32_t align = ARKUI_ALIGNMENT_BOTTOM_START; TestTextAlign007() local 107 int32_t align = ARKUI_ALIGNMENT_BOTTOM; TestTextAlign008() local 119 int32_t align = ARKUI_ALIGNMENT_BOTTOM_END; TestTextAlign009() local 131 int32_t align = ARKUI_ALIGNMENT_CENTER; TestTextAlign010() local [all...] |
/test/xts/acts/kernel_lite/mem_posix/src/ |
H A D | MemApiTest.cpp | 371 * @tc.name memalign function alloc memory for 2 ^ n align test 377 int i, align; 381 align = 1 << i; 382 mem = memalign(align, len); 384 EXPECT_TRUE((((unsigned long)mem) & (align - 1)) == 0); 398 int i, align; 406 align = (1 << i) + 1; 407 mem = memalign(align, size); 423 int align = 4096; 428 mem[i] = memalign(align, siz [all...] |
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
H A D | mallocndk.cpp | 76 int align = getpagesize();
in Memalign() local 78 void *buff = (void *)memalign(align, PARAM_8 * align);
in Memalign()
|
H A D | malloc1ndk.cpp | 68 int align = getpagesize();
in Memalign() local 69 void *buff = (void *)memalign(align - 1, 128);
in Memalign()
|
H A D | mmanndk.cpp | 145 size_t align = getpagesize();
in MProtect() local 146 void *buffer = memalign(align, SIZE_8 * align);
in MProtect()
|
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/stack/ |
H A D | stack_align_test.cpp | 121 int32_t align = -1; in TestStackAlign010() local 123 ArkUI_NumberValue align_value[] = {{.i32 = align}}; in TestStackAlign010() 128 ASSERT_NE(nodeAPI->getAttribute(stack, NODE_STACK_ALIGN_CONTENT)->value[PARAM_0].i32, align); in TestStackAlign010()
|
/test/testfwk/developer_test/local_coverage/interface_coverage/ |
H A D | make_report.py | 43 text-align: center; 57 vertical-align: top; 66 vertical-align: top; 108 <h2 style="text-align: center;font-family: 微软雅黑">%s coverage report (%s)</h2> 112 <div><table align="center"><tbody> 114 <th align='left'> 141 <h4 style="text-align: left;font-family: 微软雅黑;margin-left: 3%;">Summary</h4> 144 table_start = """<div><table class="reference" align="center"><tbody>""" 185 table_start = """<div><table class="reference" align="center"><tbody>""" 202 <tr class='normal' align [all...] |
/test/xts/acts/graphic/graphicnapidrawingtest/ |
H A D | OH_Drawing_TypographyTest.cpp | 2146 int align = TEXT_ALIGN_RIGHT; in HWTEST_F() local 2147 OH_Drawing_SetTypographyTextAlign(typoStyle, align); in HWTEST_F()
|
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/Dialog/ |
H A D | arkoala_api.h | 1082 ArkUI_Int32 align; member 1420 void (*setAlign)(ArkUINodeHandle node, ArkUI_Int32 align); 2604 void (*setScrollToIndex)(ArkUINodeHandle node, ArkUI_Int32 index, ArkUI_Int32 smooth, ArkUI_Int32 align); 2647 ArkUIScrollAlign align);
|