mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 21:45:06 +00:00
Use hb_codepoint_pair_t in more places
This commit is contained in:
parent
841e86fd98
commit
ca27925d55
16 changed files with 35 additions and 36 deletions
|
@ -8,8 +8,6 @@ namespace OT {
|
|||
namespace Layout {
|
||||
namespace GSUB_impl {
|
||||
|
||||
typedef hb_pair_t<hb_codepoint_t, hb_codepoint_t> hb_codepoint_pair_t;
|
||||
|
||||
template<typename Iterator>
|
||||
static void SingleSubst_serialize (hb_serialize_context_t *c,
|
||||
Iterator it);
|
||||
|
|
|
@ -16,7 +16,7 @@ template<typename IteratorIn, typename TypeOut,
|
|||
hb_requires (hb_is_source_of (IteratorIn, unsigned int))>
|
||||
static void
|
||||
_write_loca (IteratorIn&& it,
|
||||
const hb_sorted_vector_t<hb_pair_t<hb_codepoint_t, hb_codepoint_t>> new_to_old_gid_list,
|
||||
const hb_sorted_vector_t<hb_codepoint_pair_t> new_to_old_gid_list,
|
||||
bool short_offsets,
|
||||
TypeOut *dest,
|
||||
unsigned num_offsets)
|
||||
|
@ -82,7 +82,7 @@ template<typename Iterator,
|
|||
static bool
|
||||
_add_loca_and_head (hb_subset_plan_t * plan,
|
||||
Iterator padded_offsets,
|
||||
const hb_sorted_vector_t<hb_pair_t<hb_codepoint_t, hb_codepoint_t>> new_to_old_gid_list,
|
||||
const hb_sorted_vector_t<hb_codepoint_pair_t> new_to_old_gid_list,
|
||||
unsigned num_glyphs,
|
||||
bool use_short_loca)
|
||||
{
|
||||
|
|
|
@ -215,7 +215,7 @@ struct PairPosFormat2 : public OT::Layout::GPOS_impl::PairPosFormat2_4<SmallType
|
|||
auto gid_and_class =
|
||||
+ coverage->iter ()
|
||||
| hb_map_retains_sorting ([&] (hb_codepoint_t gid) {
|
||||
return hb_pair_t<hb_codepoint_t, hb_codepoint_t> (gid, class_def_1->get_class (gid));
|
||||
return hb_codepoint_pair_t (gid, class_def_1->get_class (gid));
|
||||
})
|
||||
;
|
||||
class_def_size_estimator_t estimator (gid_and_class);
|
||||
|
@ -386,14 +386,14 @@ struct PairPosFormat2 : public OT::Layout::GPOS_impl::PairPosFormat2_4<SmallType
|
|||
auto klass_map =
|
||||
+ coverage_table->iter ()
|
||||
| hb_map_retains_sorting ([&] (hb_codepoint_t gid) {
|
||||
return hb_pair_t<hb_codepoint_t, hb_codepoint_t> (gid, class_def_1_table->get_class (gid));
|
||||
return hb_codepoint_pair_t (gid, class_def_1_table->get_class (gid));
|
||||
})
|
||||
| hb_filter ([&] (hb_codepoint_t klass) {
|
||||
return klass >= start && klass < end;
|
||||
}, hb_second)
|
||||
| hb_map_retains_sorting ([&] (hb_pair_t<hb_codepoint_t, hb_codepoint_t> gid_and_class) {
|
||||
| hb_map_retains_sorting ([&] (hb_codepoint_pair_t gid_and_class) {
|
||||
// Classes must be from 0...N so subtract start
|
||||
return hb_pair_t<hb_codepoint_t, hb_codepoint_t> (gid_and_class.first, gid_and_class.second - start);
|
||||
return hb_codepoint_pair_t (gid_and_class.first, gid_and_class.second - start);
|
||||
})
|
||||
;
|
||||
|
||||
|
@ -519,7 +519,7 @@ struct PairPosFormat2 : public OT::Layout::GPOS_impl::PairPosFormat2_4<SmallType
|
|||
auto klass_map =
|
||||
+ coverage.table->iter ()
|
||||
| hb_map_retains_sorting ([&] (hb_codepoint_t gid) {
|
||||
return hb_pair_t<hb_codepoint_t, hb_codepoint_t> (gid, class_def_1.table->get_class (gid));
|
||||
return hb_codepoint_pair_t (gid, class_def_1.table->get_class (gid));
|
||||
})
|
||||
| hb_filter ([&] (hb_codepoint_t klass) {
|
||||
return klass < count;
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "gsubgpos-context.hh"
|
||||
#include "classdef-graph.hh"
|
||||
|
||||
typedef hb_pair_t<hb_codepoint_t, hb_codepoint_t> gid_and_class_t;
|
||||
typedef hb_codepoint_pair_t gid_and_class_t;
|
||||
typedef hb_vector_t<gid_and_class_t> gid_and_class_list_t;
|
||||
|
||||
|
||||
|
|
|
@ -662,6 +662,8 @@ struct hb_pair_t
|
|||
template <typename T1, typename T2> static inline hb_pair_t<T1, T2>
|
||||
hb_pair (T1&& a, T2&& b) { return hb_pair_t<T1, T2> (a, b); }
|
||||
|
||||
typedef hb_pair_t<hb_codepoint_t, hb_codepoint_t> hb_codepoint_pair_t;
|
||||
|
||||
struct
|
||||
{
|
||||
template <typename Pair> constexpr typename Pair::first_t
|
||||
|
|
|
@ -136,7 +136,7 @@ struct hb_bit_set_invertible_t
|
|||
/* Sink interface. */
|
||||
hb_bit_set_invertible_t& operator << (hb_codepoint_t v)
|
||||
{ add (v); return *this; }
|
||||
hb_bit_set_invertible_t& operator << (const hb_pair_t<hb_codepoint_t, hb_codepoint_t>& range)
|
||||
hb_bit_set_invertible_t& operator << (const hb_codepoint_pair_t& range)
|
||||
{ add_range (range.first, range.second); return *this; }
|
||||
|
||||
bool intersects (hb_codepoint_t first, hb_codepoint_t last) const
|
||||
|
@ -162,7 +162,7 @@ struct hb_bit_set_invertible_t
|
|||
auto it1 = iter ();
|
||||
auto it2 = other.iter ();
|
||||
return hb_all (+ hb_zip (it1, it2)
|
||||
| hb_map ([](hb_pair_t<hb_codepoint_t, hb_codepoint_t> _) { return _.first == _.second; }));
|
||||
| hb_map ([](hb_codepoint_pair_t _) { return _.first == _.second; }));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -346,7 +346,7 @@ struct hb_bit_set_t
|
|||
/* Sink interface. */
|
||||
hb_bit_set_t& operator << (hb_codepoint_t v)
|
||||
{ add (v); return *this; }
|
||||
hb_bit_set_t& operator << (const hb_pair_t<hb_codepoint_t, hb_codepoint_t>& range)
|
||||
hb_bit_set_t& operator << (const hb_codepoint_pair_t& range)
|
||||
{ add_range (range.first, range.second); return *this; }
|
||||
|
||||
bool intersects (hb_codepoint_t first, hb_codepoint_t last) const
|
||||
|
|
|
@ -509,7 +509,7 @@ struct hb_map_t : hb_hashmap_t<hb_codepoint_t,
|
|||
hb_map_t (hb_map_t &&o) : hashmap (std::move ((hashmap &) o)) {}
|
||||
hb_map_t& operator= (const hb_map_t&) = default;
|
||||
hb_map_t& operator= (hb_map_t&&) = default;
|
||||
hb_map_t (std::initializer_list<hb_pair_t<hb_codepoint_t, hb_codepoint_t>> lst) : hashmap (lst) {}
|
||||
hb_map_t (std::initializer_list<hb_codepoint_pair_t> lst) : hashmap (lst) {}
|
||||
template <typename Iterable,
|
||||
hb_requires (hb_is_iterable (Iterable))>
|
||||
hb_map_t (const Iterable &o) : hashmap (o) {}
|
||||
|
|
|
@ -325,7 +325,7 @@ struct CmapSubtableFormat4
|
|||
{
|
||||
auto format4_iter =
|
||||
+ it
|
||||
| hb_filter ([&] (const hb_pair_t<hb_codepoint_t, hb_codepoint_t> _)
|
||||
| hb_filter ([&] (const hb_codepoint_pair_t _)
|
||||
{ return _.first <= 0xFFFF; })
|
||||
;
|
||||
|
||||
|
@ -335,7 +335,7 @@ struct CmapSubtableFormat4
|
|||
if (unlikely (!c->extend_min (this))) return;
|
||||
this->format = 4;
|
||||
|
||||
hb_vector_t<hb_pair_t<hb_codepoint_t, hb_codepoint_t>> cp_to_gid {
|
||||
hb_vector_t<hb_codepoint_pair_t> cp_to_gid {
|
||||
format4_iter
|
||||
};
|
||||
|
||||
|
@ -1805,7 +1805,7 @@ struct cmap
|
|||
|
||||
auto it =
|
||||
+ c->plan->unicode_to_new_gid_list.iter ()
|
||||
| hb_filter ([&] (const hb_pair_t<hb_codepoint_t, hb_codepoint_t> _)
|
||||
| hb_filter ([&] (const hb_codepoint_pair_t _)
|
||||
{ return (_.second != HB_MAP_VALUE_INVALID); })
|
||||
;
|
||||
|
||||
|
|
|
@ -158,7 +158,7 @@ struct hmtxvmtx
|
|||
hb_requires (hb_is_iterator (Iterator))>
|
||||
void serialize (hb_serialize_context_t *c,
|
||||
Iterator it,
|
||||
const hb_vector_t<hb_pair_t<hb_codepoint_t, hb_codepoint_t>> new_to_old_gid_list,
|
||||
const hb_vector_t<hb_codepoint_pair_t> new_to_old_gid_list,
|
||||
unsigned num_long_metrics,
|
||||
unsigned total_num_metrics)
|
||||
{
|
||||
|
@ -216,7 +216,7 @@ struct hmtxvmtx
|
|||
|
||||
auto it =
|
||||
+ hb_iter (c->plan->new_to_old_gid_list)
|
||||
| hb_map ([c, &_mtx, mtx_map] (hb_pair_t<hb_codepoint_t, hb_codepoint_t> _)
|
||||
| hb_map ([c, &_mtx, mtx_map] (hb_codepoint_pair_t _)
|
||||
{
|
||||
hb_codepoint_t new_gid = _.first;
|
||||
hb_codepoint_t old_gid = _.second;
|
||||
|
|
|
@ -55,7 +55,7 @@ static bool ClassDef_remap_and_serialize (
|
|||
hb_serialize_context_t *c,
|
||||
const hb_set_t &klasses,
|
||||
bool use_class_zero,
|
||||
hb_sorted_vector_t<hb_pair_t<hb_codepoint_t, hb_codepoint_t>> &glyph_and_klass, /* IN/OUT */
|
||||
hb_sorted_vector_t<hb_codepoint_pair_t> &glyph_and_klass, /* IN/OUT */
|
||||
hb_map_t *klass_map /*IN/OUT*/);
|
||||
|
||||
struct hb_collect_feature_substitutes_with_var_context_t
|
||||
|
@ -1485,7 +1485,7 @@ struct LookupOffsetList : List16OfOffsetTo<TLookup, OffsetType>
|
|||
static bool ClassDef_remap_and_serialize (hb_serialize_context_t *c,
|
||||
const hb_set_t &klasses,
|
||||
bool use_class_zero,
|
||||
hb_sorted_vector_t<hb_pair_t<hb_codepoint_t, hb_codepoint_t>> &glyph_and_klass, /* IN/OUT */
|
||||
hb_sorted_vector_t<hb_codepoint_pair_t> &glyph_and_klass, /* IN/OUT */
|
||||
hb_map_t *klass_map /*IN/OUT*/)
|
||||
{
|
||||
if (!klass_map)
|
||||
|
@ -1576,7 +1576,7 @@ struct ClassDefFormat1_3
|
|||
TRACE_SUBSET (this);
|
||||
const hb_map_t &glyph_map = c->plan->glyph_map_gsub;
|
||||
|
||||
hb_sorted_vector_t<hb_pair_t<hb_codepoint_t, hb_codepoint_t>> glyph_and_klass;
|
||||
hb_sorted_vector_t<hb_codepoint_pair_t> glyph_and_klass;
|
||||
hb_set_t orig_klasses;
|
||||
|
||||
hb_codepoint_t start = startGlyph;
|
||||
|
@ -1833,7 +1833,7 @@ struct ClassDefFormat2_4
|
|||
const hb_map_t &glyph_map = c->plan->glyph_map_gsub;
|
||||
const hb_set_t &glyph_set = *c->plan->glyphset_gsub ();
|
||||
|
||||
hb_sorted_vector_t<hb_pair_t<hb_codepoint_t, hb_codepoint_t>> glyph_and_klass;
|
||||
hb_sorted_vector_t<hb_codepoint_pair_t> glyph_and_klass;
|
||||
hb_set_t orig_klasses;
|
||||
|
||||
if (glyph_set.get_population () * hb_bit_storage ((unsigned) rangeRecord.len) / 2
|
||||
|
|
|
@ -115,7 +115,7 @@ struct hb_sparseset_t
|
|||
/* Sink interface. */
|
||||
hb_sparseset_t& operator << (hb_codepoint_t v)
|
||||
{ add (v); return *this; }
|
||||
hb_sparseset_t& operator << (const hb_pair_t<hb_codepoint_t, hb_codepoint_t>& range)
|
||||
hb_sparseset_t& operator << (const hb_codepoint_pair_t& range)
|
||||
{ add_range (range.first, range.second); return *this; }
|
||||
|
||||
bool intersects (hb_codepoint_t first, hb_codepoint_t last) const
|
||||
|
@ -174,7 +174,7 @@ struct hb_set_t : hb_sparseset_t<hb_bit_set_invertible_t>
|
|||
|
||||
hb_set_t& operator << (hb_codepoint_t v)
|
||||
{ sparseset::operator<< (v); return *this; }
|
||||
hb_set_t& operator << (const hb_pair_t<hb_codepoint_t, hb_codepoint_t>& range)
|
||||
hb_set_t& operator << (const hb_codepoint_pair_t& range)
|
||||
{ sparseset::operator<< (range); return *this; }
|
||||
};
|
||||
|
||||
|
|
|
@ -33,9 +33,9 @@
|
|||
|
||||
// For each cp that we'd like to retain maps to the corresponding gid.
|
||||
HB_SUBSET_PLAN_MEMBER (hb_set_t, unicodes)
|
||||
HB_SUBSET_PLAN_MEMBER (hb_sorted_vector_t E(<hb_pair_t<hb_codepoint_t, hb_codepoint_t>>), unicode_to_new_gid_list)
|
||||
HB_SUBSET_PLAN_MEMBER (hb_sorted_vector_t<hb_codepoint_pair_t>, unicode_to_new_gid_list)
|
||||
|
||||
HB_SUBSET_PLAN_MEMBER (hb_sorted_vector_t E(<hb_pair_t<hb_codepoint_t, hb_codepoint_t>>), new_to_old_gid_list)
|
||||
HB_SUBSET_PLAN_MEMBER (hb_sorted_vector_t<hb_codepoint_pair_t>, new_to_old_gid_list)
|
||||
|
||||
// name_ids we would like to retain
|
||||
HB_SUBSET_PLAN_MEMBER (hb_set_t, name_ids)
|
||||
|
|
|
@ -772,8 +772,7 @@ _create_glyph_map_gsub (const hb_set_t* glyph_set_gsub,
|
|||
out->resize (glyph_set_gsub->get_population ());
|
||||
+ hb_iter (glyph_set_gsub)
|
||||
| hb_map ([&] (hb_codepoint_t gid) {
|
||||
return hb_pair_t<hb_codepoint_t, hb_codepoint_t> (gid,
|
||||
glyph_map->get (gid));
|
||||
return hb_codepoint_pair_t (gid, glyph_map->get (gid));
|
||||
})
|
||||
| hb_sink (out)
|
||||
;
|
||||
|
@ -786,7 +785,7 @@ _create_old_gid_to_new_gid_map (const hb_face_t *face,
|
|||
const hb_map_t *requested_glyph_map,
|
||||
hb_map_t *glyph_map, /* OUT */
|
||||
hb_map_t *reverse_glyph_map, /* OUT */
|
||||
hb_sorted_vector_t<hb_pair_t<hb_codepoint_t, hb_codepoint_t>> *new_to_old_gid_list /* OUT */,
|
||||
hb_sorted_vector_t<hb_codepoint_pair_t> *new_to_old_gid_list /* OUT */,
|
||||
unsigned int *num_glyphs /* OUT */)
|
||||
{
|
||||
unsigned pop = all_gids_to_retain->get_population ();
|
||||
|
@ -851,7 +850,7 @@ _create_old_gid_to_new_gid_map (const hb_face_t *face,
|
|||
{
|
||||
+ hb_iter (all_gids_to_retain)
|
||||
| hb_map ([] (hb_codepoint_t _) {
|
||||
return hb_pair_t<hb_codepoint_t, hb_codepoint_t> (_, _);
|
||||
return hb_codepoint_pair_t (_, _);
|
||||
})
|
||||
| hb_sink (new_to_old_gid_list)
|
||||
;
|
||||
|
@ -866,7 +865,7 @@ _create_old_gid_to_new_gid_map (const hb_face_t *face,
|
|||
| hb_sink (reverse_glyph_map)
|
||||
;
|
||||
+ hb_iter (new_to_old_gid_list)
|
||||
| hb_map (&hb_pair_t<hb_codepoint_t, hb_codepoint_t>::reverse)
|
||||
| hb_map (&hb_codepoint_pair_t::reverse)
|
||||
| hb_sink (glyph_map)
|
||||
;
|
||||
|
||||
|
|
|
@ -79,7 +79,7 @@ main (int argc, char **argv)
|
|||
s.set (1, 2);
|
||||
s.set (3, 4);
|
||||
|
||||
hb_vector_t<hb_pair_t<hb_codepoint_t, hb_codepoint_t>> v (s);
|
||||
hb_vector_t<hb_codepoint_pair_t> v (s);
|
||||
hb_map_t v0 (v);
|
||||
hb_map_t v1 (s);
|
||||
hb_map_t v2 (std::move (s));
|
||||
|
@ -112,7 +112,7 @@ main (int argc, char **argv)
|
|||
|
||||
/* Test initializing from initializer list and swapping. */
|
||||
{
|
||||
using pair_t = hb_pair_t<hb_codepoint_t, hb_codepoint_t>;
|
||||
using pair_t = hb_codepoint_pair_t;
|
||||
hb_map_t v1 {pair_t{1,2}, pair_t{4,5}};
|
||||
hb_map_t v2 {pair_t{3,4}};
|
||||
hb_swap (v1, v2);
|
||||
|
@ -149,7 +149,7 @@ main (int argc, char **argv)
|
|||
|
||||
/* Test hashing maps. */
|
||||
{
|
||||
using pair = hb_pair_t<hb_codepoint_t, hb_codepoint_t>;
|
||||
using pair = hb_codepoint_pair_t;
|
||||
|
||||
hb_hashmap_t<hb_map_t, hb_map_t> m1;
|
||||
|
||||
|
|
|
@ -91,7 +91,7 @@ main (int argc, char **argv)
|
|||
s << 12;
|
||||
|
||||
/* Sink a range. */
|
||||
s << hb_pair_t<hb_codepoint_t, hb_codepoint_t> {1, 3};
|
||||
s << hb_codepoint_pair_t {1, 3};
|
||||
|
||||
hb_set_t v (hb_iter (s));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue