Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
3a4e5dd4
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看板
提交
3a4e5dd4
编写于
10月 29, 2018
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Remove a few unnecessary hb_auto_t<>'s
See a85641446c30247c4e948263f0f8c1147ed4efb9
上级
67a22f37
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
24 addition
and
26 deletion
+24
-26
src/hb-coretext.cc
src/hb-coretext.cc
+4
-4
src/hb-ot-cmap-table.hh
src/hb-ot-cmap-table.hh
+2
-4
src/hb-ot-layout-gsub-table.hh
src/hb-ot-layout-gsub-table.hh
+4
-4
src/hb-ot-layout-gsubgpos.hh
src/hb-ot-layout-gsubgpos.hh
+1
-1
src/hb-ot-layout.cc
src/hb-ot-layout.cc
+5
-5
src/hb-subset-plan.cc
src/hb-subset-plan.cc
+1
-1
src/hb-subset.cc
src/hb-subset.cc
+1
-1
src/hb-uniscribe.cc
src/hb-uniscribe.cc
+6
-6
未找到文件。
src/hb-coretext.cc
浏览文件 @
3a4e5dd4
...
...
@@ -474,8 +474,8 @@ _hb_coretext_shape (hb_shape_plan_t *shape_plan,
buffer
->
merge_clusters
(
i
-
1
,
i
+
1
);
}
hb_
auto_t
<
hb_vector_t
<
feature_record_t
>
>
feature_records
;
hb_
auto_t
<
hb_vector_t
<
range_record_t
>
>
range_records
;
hb_
vector_t
<
feature_record_t
>
feature_records
;
hb_
vector_t
<
range_record_t
>
range_records
;
/*
* Set up features.
...
...
@@ -484,7 +484,7 @@ _hb_coretext_shape (hb_shape_plan_t *shape_plan,
if
(
num_features
)
{
/* Sort features by start/end events. */
hb_
auto_t
<
hb_vector_t
<
feature_event_t
>
>
feature_events
;
hb_
vector_t
<
feature_event_t
>
feature_events
;
for
(
unsigned
int
i
=
0
;
i
<
num_features
;
i
++
)
{
const
hb_aat_feature_mapping_t
*
mapping
=
hb_aat_layout_find_feature_mapping
(
features
[
i
].
tag
);
...
...
@@ -523,7 +523,7 @@ _hb_coretext_shape (hb_shape_plan_t *shape_plan,
}
/* Scan events and save features for each range. */
hb_
auto_t
<
hb_vector_t
<
active_feature_t
>
>
active_features
;
hb_
vector_t
<
active_feature_t
>
active_features
;
unsigned
int
last_index
=
0
;
for
(
unsigned
int
i
=
0
;
i
<
feature_events
.
len
;
i
++
)
{
...
...
src/hb-ot-cmap-table.hh
浏览文件 @
3a4e5dd4
...
...
@@ -859,10 +859,8 @@ struct cmap
+
CmapSubtableFormat12
::
get_sub_table_size
(
this
->
format12_groups
);
}
// Format 4
hb_auto_t
<
hb_vector_t
<
CmapSubtableFormat4
::
segment_plan
>
>
format4_segments
;
// Format 12
hb_auto_t
<
hb_vector_t
<
CmapSubtableLongGroup
>
>
format12_groups
;
hb_vector_t
<
CmapSubtableFormat4
::
segment_plan
>
format4_segments
;
hb_vector_t
<
CmapSubtableLongGroup
>
format12_groups
;
};
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
const
...
...
src/hb-ot-layout-gsub-table.hh
浏览文件 @
3a4e5dd4
...
...
@@ -110,8 +110,8 @@ struct SingleSubstFormat1
inline
bool
subset
(
hb_subset_context_t
*
c
)
const
{
TRACE_SUBSET
(
this
);
hb_
auto_t
<
hb_vector_t
<
GlyphID
>
>
from
;
hb_
auto_t
<
hb_vector_t
<
GlyphID
>
>
to
;
hb_
vector_t
<
GlyphID
>
from
;
hb_
vector_t
<
GlyphID
>
to
;
hb_codepoint_t
delta
=
deltaGlyphID
;
for
(
hb_auto_t
<
Coverage
::
Iter
>
iter
(
this
+
coverage
);
iter
.
more
();
iter
.
next
())
{
...
...
@@ -216,8 +216,8 @@ struct SingleSubstFormat2
inline
bool
subset
(
hb_subset_context_t
*
c
)
const
{
TRACE_SUBSET
(
this
);
hb_
auto_t
<
hb_vector_t
<
GlyphID
>
>
from
;
hb_
auto_t
<
hb_vector_t
<
GlyphID
>
>
to
;
hb_
vector_t
<
GlyphID
>
from
;
hb_
vector_t
<
GlyphID
>
to
;
for
(
hb_auto_t
<
Coverage
::
Iter
>
iter
(
this
+
coverage
);
iter
.
more
();
iter
.
next
())
{
if
(
!
c
->
plan
->
glyphset
->
has
(
iter
.
get_glyph
()))
...
...
src/hb-ot-layout-gsubgpos.hh
浏览文件 @
3a4e5dd4
...
...
@@ -93,7 +93,7 @@ struct hb_closure_context_t :
hb_face_t
*
face
;
hb_set_t
*
glyphs
;
hb_
auto_t
<
hb_set_t
>
out
[
1
];
hb_
set_t
out
[
1
];
recurse_func_t
recurse_func
;
unsigned
int
nesting_level_left
;
unsigned
int
debug_depth
;
...
...
src/hb-ot-layout.cc
浏览文件 @
3a4e5dd4
...
...
@@ -708,8 +708,8 @@ struct hb_collect_features_context_t
hb_set_t
*
feature_indexes
;
private:
hb_
auto_t
<
hb_set_t
>
visited_script
;
hb_
auto_t
<
hb_set_t
>
visited_langsys
;
hb_
set_t
visited_script
;
hb_
set_t
visited_langsys
;
};
static
void
...
...
@@ -836,7 +836,7 @@ hb_ot_layout_collect_lookups (hb_face_t *face,
{
const
OT
::
GSUBGPOS
&
g
=
get_gsubgpos_table
(
face
,
table_tag
);
hb_
auto_t
<
hb_set_t
>
feature_indexes
;
hb_
set_t
feature_indexes
;
hb_ot_layout_collect_features
(
face
,
table_tag
,
scripts
,
languages
,
features
,
&
feature_indexes
);
for
(
hb_codepoint_t
feature_index
=
HB_SET_VALUE_INVALID
;
...
...
@@ -974,7 +974,7 @@ hb_ot_layout_lookup_substitute_closure (hb_face_t *face,
unsigned
int
lookup_index
,
hb_set_t
*
glyphs
)
{
hb_
auto_t
<
hb_map_t
>
done_lookups
;
hb_
map_t
done_lookups
;
OT
::
hb_closure_context_t
c
(
face
,
glyphs
,
&
done_lookups
);
const
OT
::
SubstLookup
&
l
=
_get_gsub
(
face
).
get_lookup
(
lookup_index
);
...
...
@@ -995,7 +995,7 @@ hb_ot_layout_lookups_substitute_closure (hb_face_t *face,
const
hb_set_t
*
lookups
,
hb_set_t
*
glyphs
)
{
hb_
auto_t
<
hb_map_t
>
done_lookups
;
hb_
map_t
done_lookups
;
OT
::
hb_closure_context_t
c
(
face
,
glyphs
,
&
done_lookups
);
const
OT
::
GSUB
&
gsub
=
_get_gsub
(
face
);
...
...
src/hb-subset-plan.cc
浏览文件 @
3a4e5dd4
...
...
@@ -55,7 +55,7 @@ _add_gid_and_children (const OT::glyf::accelerator_t &glyf,
static
void
_gsub_closure
(
hb_face_t
*
face
,
hb_set_t
*
gids_to_retain
)
{
hb_
auto_t
<
hb_set_t
>
lookup_indices
;
hb_
set_t
lookup_indices
;
hb_ot_layout_collect_lookups
(
face
,
HB_OT_TAG_GSUB
,
nullptr
,
...
...
src/hb-subset.cc
浏览文件 @
3a4e5dd4
...
...
@@ -68,7 +68,7 @@ _subset2 (hb_subset_plan_t *plan)
hb_bool_t
result
=
false
;
if
(
source_blob
->
data
)
{
hb_
auto_t
<
hb_vector_t
<
char
>
>
buf
;
hb_
vector_t
<
char
>
buf
;
unsigned
int
buf_size
=
_plan_estimate_subset_table_size
(
plan
,
source_blob
->
length
);
DEBUG_MSG
(
SUBSET
,
nullptr
,
"OT::%c%c%c%c initial estimated table size: %u bytes."
,
HB_UNTAG
(
tag
),
buf_size
);
if
(
unlikely
(
!
buf
.
alloc
(
buf_size
)))
...
...
src/hb-uniscribe.cc
浏览文件 @
3a4e5dd4
...
...
@@ -642,12 +642,12 @@ _hb_uniscribe_shape (hb_shape_plan_t *shape_plan,
/*
* Set up features.
*/
hb_
auto_t
<
hb_vector_t
<
OPENTYPE_FEATURE_RECORD
>
>
feature_records
;
hb_
auto_t
<
hb_vector_t
<
range_record_t
>
>
range_records
;
hb_
vector_t
<
OPENTYPE_FEATURE_RECORD
>
feature_records
;
hb_
vector_t
<
range_record_t
>
range_records
;
if
(
num_features
)
{
/* Sort features by start/end events. */
hb_
auto_t
<
hb_vector_t
<
feature_event_t
>
>
feature_events
;
hb_
vector_t
<
feature_event_t
>
feature_events
;
for
(
unsigned
int
i
=
0
;
i
<
num_features
;
i
++
)
{
active_feature_t
feature
;
...
...
@@ -682,7 +682,7 @@ _hb_uniscribe_shape (hb_shape_plan_t *shape_plan,
}
/* Scan events and save features for each range. */
hb_
auto_t
<
hb_vector_t
<
active_feature_t
>
>
active_features
;
hb_
vector_t
<
active_feature_t
>
active_features
;
unsigned
int
last_index
=
0
;
for
(
unsigned
int
i
=
0
;
i
<
feature_events
.
len
;
i
++
)
{
...
...
@@ -854,8 +854,8 @@ retry:
#undef MAX_ITEMS
OPENTYPE_TAG
language_tag
=
hb_uint32_swap
(
hb_ot_tag_from_language
(
buffer
->
props
.
language
));
hb_
auto_t
<
hb_vector_t
<
TEXTRANGE_PROPERTIES
*>
>
range_properties
;
hb_
auto_t
<
hb_vector_t
<
int
>
>
range_char_counts
;
hb_
vector_t
<
TEXTRANGE_PROPERTIES
*
>
range_properties
;
hb_
vector_t
<
int
>
range_char_counts
;
unsigned
int
glyphs_offset
=
0
;
unsigned
int
glyphs_len
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录