Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
cc6d5227
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看板
提交
cc6d5227
编写于
7月 23, 2010
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
De-C++ where possible
Helps with avoiding many "extern C" declarations in source files.
上级
0dd200d2
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
11 addition
and
11 deletion
+11
-11
src/Makefile.am
src/Makefile.am
+2
-2
src/check-header-guards.sh
src/check-header-guards.sh
+1
-1
src/hb-font-private.h
src/hb-font-private.h
+3
-3
src/hb-font.cc
src/hb-font.cc
+1
-1
src/hb-ft.c
src/hb-ft.c
+1
-1
src/hb-graphite.cc
src/hb-graphite.cc
+1
-1
src/hb-ot-layout-gdef-private.hh
src/hb-ot-layout-gdef-private.hh
+1
-1
src/hb-ot-layout-private.hh
src/hb-ot-layout-private.hh
+1
-1
未找到文件。
src/Makefile.am
浏览文件 @
cc6d5227
...
...
@@ -16,7 +16,7 @@ HBSOURCES = \
hb-buffer-private.hh
\
hb-common.c
\
hb-font.cc
\
hb-font-private.h
h
\
hb-font-private.h
\
hb-object-private.h
\
hb-open-file-private.hh
\
hb-open-type-private.hh
\
...
...
@@ -82,7 +82,7 @@ if HAVE_FREETYPE
HBCFLAGS
+=
$(FREETYPE_CFLAGS)
HBLIBS
+=
$(FREETYPE_LIBS)
HBSOURCES
+=
\
hb-ft.c
c
\
hb-ft.c
\
$(NULL)
HBHEADERS
+=
\
hb-ft.h
\
...
...
src/check-header-guards.sh
浏览文件 @
cc6d5227
...
...
@@ -10,7 +10,7 @@ cd "$srcdir"
for
x
in
*
.h
*
.hh
;
do
tag
=
`
echo
"
$x
"
|
tr
'a-z.-'
'A-Z_'
`
lines
=
`
grep
"
$tag
"
"
$x
"
|
wc
-l
`
lines
=
`
grep
"
\<
$tag
\>
"
"
$x
"
|
wc
-l
`
if
test
"x
$lines
"
!=
x3
;
then
echo
"Ouch, header file
$x
does not have correct preprocessor guards"
stat
=
1
...
...
src/hb-font-private.h
h
→
src/hb-font-private.h
浏览文件 @
cc6d5227
...
...
@@ -24,8 +24,8 @@
* Red Hat Author(s): Behdad Esfahbod
*/
#ifndef HB_FONT_PRIVATE_H
H
#define HB_FONT_PRIVATE_H
H
#ifndef HB_FONT_PRIVATE_H
#define HB_FONT_PRIVATE_H
#include "hb-private.h"
...
...
@@ -92,4 +92,4 @@ struct _hb_font_t {
HB_END_DECLS
#endif
/* HB_FONT_PRIVATE_H
H
*/
#endif
/* HB_FONT_PRIVATE_H */
src/hb-font.cc
浏览文件 @
cc6d5227
...
...
@@ -26,7 +26,7 @@
#include "hb-private.h"
#include "hb-font-private.h
h
"
#include "hb-font-private.h"
#include "hb-blob-private.h"
#include "hb-open-file-private.hh"
...
...
src/hb-ft.c
c
→
src/hb-ft.c
浏览文件 @
cc6d5227
...
...
@@ -29,7 +29,7 @@
#include "hb-ft.h"
#include "hb-font-private.h
h
"
#include "hb-font-private.h"
#include FT_TRUETYPE_TABLES_H
...
...
src/hb-graphite.cc
浏览文件 @
cc6d5227
...
...
@@ -29,7 +29,7 @@
#include <graphite/GrConstants.h>
#include <graphite/Segment.h>
#include "hb-buffer-private.hh"
#include "hb-font-private.h
h
"
#include "hb-font-private.h"
#include "hb-graphite.h"
#include <map>
...
...
src/hb-ot-layout-gdef-private.hh
浏览文件 @
cc6d5227
...
...
@@ -29,7 +29,7 @@
#include "hb-ot-layout-common-private.hh"
#include "hb-font-private.h
h
"
#include "hb-font-private.h"
/*
...
...
src/hb-ot-layout-private.hh
浏览文件 @
cc6d5227
...
...
@@ -32,7 +32,7 @@
#include "hb-ot-layout.h"
#include "hb-ot-head-private.hh"
#include "hb-font-private.h
h
"
#include "hb-font-private.h"
#include "hb-buffer-private.hh"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录