Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
c6035cf8
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看板
提交
c6035cf8
编写于
4月 12, 2012
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add names to enums
gdb was showing <anonymous enum> instead of useful stuff, so name all our enums.
上级
d1c9eb45
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
10 addition
and
11 deletion
+10
-11
src/hb-blob.h
src/hb-blob.h
+1
-1
src/hb-common.h
src/hb-common.h
+3
-3
src/hb-ot-layout-common-private.hh
src/hb-ot-layout-common-private.hh
+1
-1
src/hb-ot-layout-gdef-table.hh
src/hb-ot-layout-gdef-table.hh
+1
-1
src/hb-ot-layout-gpos-table.hh
src/hb-ot-layout-gpos-table.hh
+2
-3
src/hb-ot-layout-gsub-table.hh
src/hb-ot-layout-gsub-table.hh
+1
-1
src/hb-ot-layout-private.hh
src/hb-ot-layout-private.hh
+1
-1
未找到文件。
src/hb-blob.h
浏览文件 @
c6035cf8
...
...
@@ -36,7 +36,7 @@
HB_BEGIN_DECLS
typedef
enum
{
typedef
enum
_hb_memory_mode_t
{
HB_MEMORY_MODE_DUPLICATE
,
HB_MEMORY_MODE_READONLY
,
HB_MEMORY_MODE_WRITABLE
,
...
...
src/hb-common.h
浏览文件 @
c6035cf8
...
...
@@ -99,7 +99,7 @@ hb_tag_t hb_tag_from_string (const char *s, int len);
/* hb_direction_t */
typedef
enum
{
typedef
enum
_hb_direction_t
{
HB_DIRECTION_INVALID
=
-
1
,
HB_DIRECTION_LTR
=
0
,
HB_DIRECTION_RTL
,
...
...
@@ -140,7 +140,7 @@ hb_language_get_default (void);
/* hb_unicode_general_category_t */
typedef
enum
typedef
enum
_hb_unicode_general_category_t
{
HB_UNICODE_GENERAL_CATEGORY_CONTROL
,
/* Cc */
HB_UNICODE_GENERAL_CATEGORY_FORMAT
,
/* Cf */
...
...
@@ -179,7 +179,7 @@ typedef enum
/* http://unicode.org/iso15924/ */
/* http://goo.gl/x9ilM */
typedef
enum
typedef
enum
_hb_script_t
{
/* Unicode-1.1 additions */
HB_SCRIPT_COMMON
=
HB_TAG
(
'Z'
,
'y'
,
'y'
,
'y'
),
...
...
src/hb-ot-layout-common-private.hh
浏览文件 @
c6035cf8
...
...
@@ -271,7 +271,7 @@ typedef RecordListOf<Feature> FeatureList;
struct
LookupFlag
:
USHORT
{
enum
{
enum
Flags
{
RightToLeft
=
0x0001u
,
IgnoreBaseGlyphs
=
0x0002u
,
IgnoreLigatures
=
0x0004u
,
...
...
src/hb-ot-layout-gdef-table.hh
浏览文件 @
c6035cf8
...
...
@@ -327,7 +327,7 @@ struct GDEF
{
static
const
hb_tag_t
Tag
=
HB_OT_TAG_GDEF
;
enum
{
enum
GlyphClasses
{
UnclassifiedGlyph
=
0
,
BaseGlyph
=
1
,
LigatureGlyph
=
2
,
...
...
src/hb-ot-layout-gpos-table.hh
浏览文件 @
c6035cf8
...
...
@@ -46,8 +46,7 @@ typedef Value ValueRecord[VAR];
struct
ValueFormat
:
USHORT
{
enum
{
enum
Flags
{
xPlacement
=
0x0001
,
/* Includes horizontal adjustment for placement */
yPlacement
=
0x0002
,
/* Includes vertical adjustment for placement */
xAdvance
=
0x0004
,
/* Includes horizontal adjustment for advance */
...
...
@@ -1336,7 +1335,7 @@ struct PosLookupSubTable
{
friend
struct
PosLookup
;
enum
{
enum
Type
{
Single
=
1
,
Pair
=
2
,
Cursive
=
3
,
...
...
src/hb-ot-layout-gsub-table.hh
浏览文件 @
c6035cf8
...
...
@@ -678,7 +678,7 @@ struct SubstLookupSubTable
{
friend
struct
SubstLookup
;
enum
{
enum
Type
{
Single
=
1
,
Multiple
=
2
,
Alternate
=
3
,
...
...
src/hb-ot-layout-private.hh
浏览文件 @
c6035cf8
...
...
@@ -44,7 +44,7 @@
#define props_cache() var1.u16[1]
/* glyph_props cache */
/* XXX cleanup */
typedef
enum
{
typedef
enum
_hb_ot_layout_glyph_class_t
{
HB_OT_LAYOUT_GLYPH_CLASS_UNCLASSIFIED
=
0x0001
,
HB_OT_LAYOUT_GLYPH_CLASS_BASE_GLYPH
=
0x0002
,
HB_OT_LAYOUT_GLYPH_CLASS_LIGATURE
=
0x0004
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录