Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
865deeb3
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看板
提交
865deeb3
编写于
12月 21, 2018
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Adjust internal header dependencies
上级
8e5c2bc6
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
17 addition
and
8 deletion
+17
-8
src/hb-array.hh
src/hb-array.hh
+4
-1
src/hb-dsalgs.hh
src/hb-dsalgs.hh
+0
-1
src/hb-iter.hh
src/hb-iter.hh
+1
-0
src/hb-vector.hh
src/hb-vector.hh
+1
-0
src/hb.hh
src/hb.hh
+9
-6
src/test-iter.cc
src/test-iter.cc
+1
-0
src/test-unicode-ranges.cc
src/test-unicode-ranges.cc
+1
-0
未找到文件。
src/hb-array.hh
浏览文件 @
865deeb3
...
@@ -28,13 +28,16 @@
...
@@ -28,13 +28,16 @@
#define HB_ARRAY_HH
#define HB_ARRAY_HH
#include "hb.hh"
#include "hb.hh"
#include "hb-dsalgs.hh"
#include "hb-iter.hh"
#include "hb-null.hh"
template
<
typename
Type
>
template
<
typename
Type
>
struct
hb_sorted_array_t
;
struct
hb_sorted_array_t
;
template
<
typename
Type
>
template
<
typename
Type
>
struct
hb_array_t
struct
hb_array_t
// : hb_iter_t<hb_array_t<Type>, Type>
{
{
typedef
Type
item_t
;
typedef
Type
item_t
;
enum
{
item_size
=
hb_static_size
(
Type
)
};
enum
{
item_size
=
hb_static_size
(
Type
)
};
...
...
src/hb-dsalgs.hh
浏览文件 @
865deeb3
...
@@ -28,7 +28,6 @@
...
@@ -28,7 +28,6 @@
#define HB_DSALGS_HH
#define HB_DSALGS_HH
#include "hb.hh"
#include "hb.hh"
#include "hb-null.hh"
#include "hb-null.hh"
...
...
src/hb-iter.hh
浏览文件 @
865deeb3
...
@@ -28,6 +28,7 @@
...
@@ -28,6 +28,7 @@
#define HB_ITER_HH
#define HB_ITER_HH
#include "hb.hh"
#include "hb.hh"
#include "hb-null.hh"
/* Unified iterator object.
/* Unified iterator object.
...
...
src/hb-vector.hh
浏览文件 @
865deeb3
...
@@ -29,6 +29,7 @@
...
@@ -29,6 +29,7 @@
#include "hb.hh"
#include "hb.hh"
#include "hb-array.hh"
#include "hb-array.hh"
#include "hb-null.hh"
template
<
typename
Type
,
unsigned
int
PreallocedCount
=
8
>
template
<
typename
Type
,
unsigned
int
PreallocedCount
=
8
>
...
...
src/hb.hh
浏览文件 @
865deeb3
...
@@ -545,14 +545,17 @@ template <typename T> struct hb_remove_pointer<T *> { typedef T value; };
...
@@ -545,14 +545,17 @@ template <typename T> struct hb_remove_pointer<T *> { typedef T value; };
#define hb_remove_pointer(T) hb_remove_pointer<T>::value
#define hb_remove_pointer(T) hb_remove_pointer<T>::value
/* Headers we include for everyone. Keep sorted. They express dependency amongst
/* Headers we include for everyone. Keep topologically sorted by dependency.
* themselves, but no other file should include them.*/
* They express dependency amongst themselves, but no other file should include
* them directly.*/
#include "hb-atomic.hh"
#include "hb-atomic.hh"
#include "hb-debug.hh"
#include "hb-dsalgs.hh"
#include "hb-iter.hh"
#include "hb-mutex.hh"
#include "hb-mutex.hh"
#include "hb-null.hh"
#include "hb-null.hh"
#include "hb-object.hh"
#include "hb-dsalgs.hh" // Requires: hb-null
#include "hb-iter.hh" // Requires: hb-null
#include "hb-debug.hh" // Requires: hb-atomic hb-dsalgs
#include "hb-array.hh" // Requires: hb-dsalgs hb-iter hb-null
#include "hb-vector.hh" // Requires: hb-array hb-null
#include "hb-object.hh" // Requires: hb-atomic hb-mutex hb-vector
#endif
/* HB_HH */
#endif
/* HB_HH */
src/test-iter.cc
浏览文件 @
865deeb3
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
* Google Author(s): Behdad Esfahbod
* Google Author(s): Behdad Esfahbod
*/
*/
#include "hb.hh"
#include "hb-iter.hh"
#include "hb-iter.hh"
#include "hb-array.hh"
#include "hb-array.hh"
...
...
src/test-unicode-ranges.cc
浏览文件 @
865deeb3
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
* Google Author(s): Garret Rieger
* Google Author(s): Garret Rieger
*/
*/
#include "hb.hh"
#include "hb-ot-os2-unicode-ranges.hh"
#include "hb-ot-os2-unicode-ranges.hh"
static
void
static
void
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录