Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
dabe698f
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看板
提交
dabe698f
编写于
11月 23, 2012
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Minor
上级
c779d82b
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
29 addition
and
13 deletion
+29
-13
src/hb-open-type-private.hh
src/hb-open-type-private.hh
+0
-5
src/hb-ot-layout-gsubgpos-private.hh
src/hb-ot-layout-gsubgpos-private.hh
+4
-6
src/hb-private.hh
src/hb-private.hh
+25
-2
未找到文件。
src/hb-open-type-private.hh
浏览文件 @
dabe698f
...
...
@@ -37,11 +37,6 @@
namespace
OT
{
/*
* Void!
*/
typedef
struct
{}
void_t
;
/*
* Casts
...
...
src/hb-ot-layout-gsubgpos-private.hh
浏览文件 @
dabe698f
...
...
@@ -50,7 +50,7 @@ struct hb_closure_context_t
typedef
return_t
(
*
recurse_func_t
)
(
hb_closure_context_t
*
c
,
unsigned
int
lookup_index
);
template
<
typename
T
>
inline
return_t
process
(
const
T
&
obj
)
{
obj
.
closure
(
this
);
return
void_t
();
}
static
const
return_t
default_return_value
(
void
)
{
return
return_t
();
}
static
return_t
default_return_value
(
void
)
{
return
return_t
();
}
bool
stop_sublookup_iteration
(
const
return_t
r
)
const
{
return
false
;
}
return_t
recurse
(
unsigned
int
lookup_index
)
{
...
...
@@ -82,7 +82,6 @@ struct hb_closure_context_t
/* TODO Add TRACE_RETURN annotation to gsub. */
#ifndef HB_DEBUG_WOULD_APPLY
#define HB_DEBUG_WOULD_APPLY (HB_DEBUG+0)
#endif
...
...
@@ -119,7 +118,6 @@ struct hb_would_apply_context_t
/* TODO Add TRACE_RETURN annotation to gsub. */
#ifndef HB_DEBUG_COLLECT_GLYPHS
#define HB_DEBUG_COLLECT_GLYPHS (HB_DEBUG+0)
#endif
...
...
@@ -133,7 +131,7 @@ struct hb_collect_glyphs_context_t
typedef
void_t
return_t
;
template
<
typename
T
>
inline
return_t
process
(
const
T
&
obj
)
{
obj
.
collect_glyphs
(
this
);
return
void_t
();
}
static
const
return_t
default_return_value
(
void
)
{
return
return_t
();
}
static
return_t
default_return_value
(
void
)
{
return
return_t
();
}
bool
stop_iteration
(
const
return_t
r
)
const
{
return
false
;
}
return_t
recurse
(
unsigned
int
lookup_index
)
{
...
...
@@ -170,7 +168,7 @@ struct hb_get_coverage_context_t
typedef
const
Coverage
&
return_t
;
template
<
typename
T
>
inline
return_t
process
(
const
T
&
obj
)
{
return
obj
.
get_coverage
();
}
static
return_t
default_return_value
(
void
)
{
return
Null
(
Coverage
);
}
static
const
return_t
default_return_value
(
void
)
{
return
Null
(
Coverage
);
}
bool
stop_sublookup_iteration
(
const
return_t
r
)
const
{
return
true
;
/* Unused */
}
return_t
recurse
(
unsigned
int
lookup_index
)
{
return
default_return_value
();
}
...
...
@@ -194,7 +192,7 @@ struct hb_apply_context_t
typedef
return_t
(
*
recurse_func_t
)
(
hb_apply_context_t
*
c
,
unsigned
int
lookup_index
);
template
<
typename
T
>
inline
return_t
process
(
const
T
&
obj
)
{
return
obj
.
apply
(
this
);
}
static
const
return_t
default_return_value
(
void
)
{
return
false
;
}
static
return_t
default_return_value
(
void
)
{
return
false
;
}
bool
stop_sublookup_iteration
(
const
return_t
r
)
const
{
return
r
;
}
return_t
recurse
(
unsigned
int
lookup_index
)
{
...
...
src/hb-private.hh
浏览文件 @
dabe698f
...
...
@@ -62,6 +62,10 @@
#endif
/* Void! */
typedef
struct
{}
void_t
;
/* Basics */
...
...
@@ -656,6 +660,24 @@ _hb_debug_msg<0> (const char *what HB_UNUSED,
#define DEBUG_MSG_FUNC(WHAT, OBJ, ...) _hb_debug_msg<HB_DEBUG_##WHAT> (#WHAT, (OBJ), HB_FUNC, false, 0, 0, __VA_ARGS__)
/*
* Printer
*/
template
<
typename
T
>
struct
hb_printer_t
{};
template
<
>
struct
hb_printer_t
<
bool
>
{
const
char
*
print
(
bool
v
)
{
return
v
?
"true"
:
"false"
;
}
};
template
<
>
struct
hb_printer_t
<
void_t
>
{
const
char
*
print
(
void_t
v
)
{
return
""
;
}
};
/*
* Trace
*/
...
...
@@ -687,14 +709,15 @@ struct hb_auto_trace_t {
if
(
plevel
)
--*
plevel
;
}
inline
bool
ret
(
bool
v
,
unsigned
int
line
=
0
)
template
<
typename
T
>
inline
T
ret
(
T
v
,
unsigned
int
line
=
0
)
{
if
(
unlikely
(
returned
))
{
fprintf
(
stderr
,
"OUCH, double calls to TRACE_RETURN. This is a bug, please report.
\n
"
);
return
v
;
}
_hb_debug_msg
<
max_level
>
(
what
,
obj
,
NULL
,
true
,
plevel
?
*
plevel
:
1
,
-
1
,
"return %s (line %d)"
,
v
?
"true"
:
"false"
,
line
);
_hb_debug_msg
<
max_level
>
(
what
,
obj
,
NULL
,
true
,
plevel
?
*
plevel
:
1
,
-
1
,
"return %s (line %d)"
,
hb_printer_t
<
bool
>
().
print
(
v
)
,
line
);
if
(
plevel
)
--*
plevel
;
plevel
=
NULL
;
returned
=
true
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录