Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
7aa12ebd
T
Third Party Harfbuzz
项目概览
OpenHarmony
/
Third Party Harfbuzz
1 年多 前同步成功
通知
0
Star
18
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Harfbuzz
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
7aa12ebd
编写于
5月 11, 2011
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[unicode] Simplify method setting
上级
d5bfd027
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
6 addition
and
6 deletion
+6
-6
src/hb-unicode.cc
src/hb-unicode.cc
+1
-5
test/test-unicode.c
test/test-unicode.c
+5
-1
未找到文件。
src/hb-unicode.cc
浏览文件 @
7aa12ebd
...
...
@@ -206,14 +206,10 @@ hb_unicode_funcs_set_##name##_func (hb_unicode_funcs_t *ufuncs, \
ufuncs->get.name = func; \
ufuncs->user_data.name = user_data; \
ufuncs->destroy.name = destroy; \
} else
if (ufuncs->parent != NULL) {
\
} else
{
\
ufuncs->get.name = ufuncs->parent->get.name; \
ufuncs->user_data.name = ufuncs->parent->user_data.name; \
ufuncs->destroy.name = NULL; \
} else { \
ufuncs->get.name = hb_unicode_get_##name##_nil; \
ufuncs->user_data.name = NULL; \
ufuncs->destroy.name = NULL; \
} \
} \
\
...
...
test/test-unicode.c
浏览文件 @
7aa12ebd
...
...
@@ -482,6 +482,7 @@ test_unicode_properties (gconstpointer user_data)
gboolean
failed
=
TRUE
;
g_assert
(
hb_unicode_funcs_is_immutable
(
uf
));
g_assert
(
hb_unicode_funcs_get_parent
(
uf
));
for
(
i
=
0
;
i
<
G_N_ELEMENTS
(
properties
);
i
++
)
{
const
property_t
*
p
=
&
properties
[
i
];
...
...
@@ -609,6 +610,9 @@ test_unicode_setters (void)
g_assert_cmphex
(
p
->
getter
(
uf
,
'a'
),
==
,
HB_SCRIPT_LATIN
);
g_assert_cmphex
(
p
->
getter
(
uf
,
'0'
),
==
,
HB_SCRIPT_UNKNOWN
);
p
->
func_setter
(
uf
,
(
get_func_t
)
NULL
,
NULL
,
NULL
);
g_assert
(
data
[
0
].
freed
&&
!
data
[
1
].
freed
);
g_assert
(
!
hb_unicode_funcs_is_immutable
(
uf
));
hb_unicode_funcs_make_immutable
(
uf
);
g_assert
(
hb_unicode_funcs_is_immutable
(
uf
));
...
...
@@ -616,7 +620,7 @@ test_unicode_setters (void)
/* Since uf is immutable now, the following setter should do nothing. */
p
->
func_setter
(
uf
,
(
get_func_t
)
a_is_for_arabic_get_script
,
&
data
[
1
],
free_up
);
g_assert
(
!
data
[
0
].
freed
&&
!
data
[
1
].
freed
);
g_assert
(
data
[
0
].
freed
&&
!
data
[
1
].
freed
);
hb_unicode_funcs_destroy
(
uf
);
g_assert
(
data
[
0
].
freed
&&
!
data
[
1
].
freed
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录