Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Vincent Wei
harfbuzz
Commits
6c738f35
Commit
6c738f35
authored
7 years ago
by
Behdad Esfahbod
Browse files
Options
Download
Email Patches
Plain Diff
Make string-array return hb_string_t
parent
e1a37f3d
master
arabic-table-x
bot-check
coverity_scan
decltype
inttype-constructors
iter
metrics
rand
run-tests-stream
rvalue-reference
test-str-literal-constness
typename-outside-template
use-sinhala
var-subset
2.3.1
2.3.0
2.2.0
2.1.3
2.1.2
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
1.9.0
1.8.8
1.8.7
1.8.6
1.8.5
1.8.4
1.8.3
1.8.2
1.8.1
1.8.0
1.7.7
1.7.6
1.7.5
1.7.4
1.7.3
1.7.2
1.7.1
1.7.0
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/hb-ot-post-table.hh
+2
-15
src/hb-ot-post-table.hh
src/hb-string-array.hh
+9
-2
src/hb-string-array.hh
with
11 additions
and
17 deletions
+11
-17
src/hb-ot-post-table.hh
View file @
6c738f35
...
...
@@ -117,7 +117,7 @@ struct post
if
(
glyph
>=
NUM_FORMAT1_NAMES
)
return
hb_string_t
();
return
hb_string_t
(
format1_names
(
glyph
)
,
strlen
(
format1_names
(
glyph
)))
;
return
format1_names
(
glyph
);
}
if
(
version
!=
0x00020000
||
glyph
>=
glyphNameIndex
->
len
)
...
...
@@ -125,7 +125,7 @@ struct post
unsigned
int
index
=
glyphNameIndex
->
array
[
glyph
];
if
(
index
<
NUM_FORMAT1_NAMES
)
return
hb_string_t
(
format1_names
(
index
)
,
strlen
(
format1_names
(
index
)))
;
return
format1_names
(
index
);
index
-=
NUM_FORMAT1_NAMES
;
if
(
index
>=
index_to_offset
.
len
)
...
...
@@ -163,19 +163,6 @@ struct post
if
(
unlikely
(
!
len
))
return
false
;
if
(
version
==
0x00010000
)
{
for
(
int
i
=
0
;
i
<
NUM_FORMAT1_NAMES
;
i
++
)
{
if
(
strncmp
(
name
,
format1_names
(
i
),
len
)
==
0
&&
format1_names
(
i
)[
len
]
==
'\0'
)
{
*
glyph
=
i
;
return
true
;
}
}
return
false
;
}
/* TODO format2 */
return
false
;
}
...
...
This diff is collapsed.
Click to expand it.
src/hb-string-array.hh
View file @
6c738f35
...
...
@@ -40,6 +40,10 @@
static
const
union
HB_STRING_ARRAY_TYPE_NAME
{
struct
{
/* I like to avoid storing the nul-termination byte since we don't need it,
* but C++ does not allow that.
* https://stackoverflow.com/questions/28433862/why-initializer-string-for-array-of-chars-is-too-long-compiles-fine-in-c-not
*/
#define _S(s) char HB_PASTE (str, __LINE__)[sizeof (s)];
#include HB_STRING_ARRAY_LIST
#undef _S
...
...
@@ -59,12 +63,15 @@ static const unsigned int HB_STRING_ARRAY_OFFS_NAME[] =
#define _S(s) offsetof (union HB_STRING_ARRAY_TYPE_NAME, st.HB_PASTE(str, __LINE__)),
#include HB_STRING_ARRAY_LIST
#undef _S
sizeof
(
HB_STRING_ARRAY_TYPE_NAME
)
};
static
inline
const
char
*
static
inline
hb_string_t
HB_STRING_ARRAY_NAME
(
unsigned
int
i
)
{
return
HB_STRING_ARRAY_POOL_NAME
.
str
+
HB_STRING_ARRAY_OFFS_NAME
[
i
];
assert
(
i
<
ARRAY_LENGTH
(
HB_STRING_ARRAY_OFFS_NAME
)
-
1
);
return
hb_string_t
(
HB_STRING_ARRAY_POOL_NAME
.
str
+
HB_STRING_ARRAY_OFFS_NAME
[
i
],
HB_STRING_ARRAY_OFFS_NAME
[
i
+
1
]
-
HB_STRING_ARRAY_OFFS_NAME
[
i
]
-
1
);
}
#undef HB_STRING_ARRAY_TYPE_NAME
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help